r13646 - in /trunk/libvorbis-perl: copyright debian/copyright debian/repack.pl

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sat Jan 26 20:56:39 UTC 2008


Author: dmn
Date: Sat Jan 26 20:56:39 2008
New Revision: 13646

URL: http://svn.debian.org/wsvn/?sc=1&rev=13646
Log:
Move */debian/copyright to */copyright when reackaging so that the only source of copyright information is not lost

Added:
    trunk/libvorbis-perl/copyright
Modified:
    trunk/libvorbis-perl/debian/copyright
    trunk/libvorbis-perl/debian/repack.pl

Added: trunk/libvorbis-perl/copyright
URL: http://svn.debian.org/wsvn/trunk/libvorbis-perl/copyright?rev=13646&op=file
==============================================================================
--- trunk/libvorbis-perl/copyright (added)
+++ trunk/libvorbis-perl/copyright Sat Jan 26 20:56:39 2008
@@ -1,0 +1,15 @@
+This package was debianized by Alex Shinn <foof at synthcode.com> on
+Tue, 24 Oct 2000 01:35:40 -0400.
+
+It was downloaded from http://synthcode.com/code/vorbis/
+
+Upstream Author(s): Alex Shinn <foof at synthcode.com>
+
+Copyright:
+
+This library is Free Software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either the GPLv2 or the
+Artistic License.
+
+On Debian systems both of these licenses can be found in
+/usr/share/common-licenses/.

Modified: trunk/libvorbis-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libvorbis-perl/debian/copyright?rev=13646&op=diff
==============================================================================
--- trunk/libvorbis-perl/debian/copyright (original)
+++ trunk/libvorbis-perl/debian/copyright Sat Jan 26 20:56:39 2008
@@ -3,14 +3,16 @@
 
 It was downloaded from http://search.cpan.org/dist/libvorbis-perl/
 
-Upstream Author: Alex Shinn <foof at debian.org>
+From copyrygit (debian/copyright before re-packaging)
 
-Copyright:
+    Upstream Author: Alex Shinn <foof at debian.org>
 
-This library is Free Software; you can redistribute it and/or modify
-it under the same terms as Perl itself, either the GPLv2 or the
-Artistic License.
+    Copyright:
 
-On Debian systems both of these licenses can be found in
-/usr/share/common-licenses/.
+    This library is Free Software; you can redistribute it and/or modify
+    it under the same terms as Perl itself, either the GPLv2 or the
+    Artistic License.
 
+On Debian systems GNU General Public License version2 can be found in
+/usr/share/common-licenses/GPL-2, and Artistic license - in
+/usr/share/common-licenses/Artistic

Modified: trunk/libvorbis-perl/debian/repack.pl
URL: http://svn.debian.org/wsvn/trunk/libvorbis-perl/debian/repack.pl?rev=13646&op=diff
==============================================================================
--- trunk/libvorbis-perl/debian/repack.pl (original)
+++ trunk/libvorbis-perl/debian/repack.pl Sat Jan 26 20:56:39 2008
@@ -33,6 +33,13 @@
 
 my $found;
 for ($tar->list_files) {
+    # move debian/copyright to copyright (i.e., outside of debian/)
+    if (m{/debian/copyright$}) {
+        my $new_name = $_;
+        $new_name =~ s{/debian/}{.orig/};
+        $tar->rename($_, $new_name)
+    }
+
     if (m{^libvorbis-perl-(?:\d[\d._]*)/(?:debian/|configure-stamp|build-stamp)}) {
         $tar->remove($_);
         $found++;




More information about the Pkg-perl-cvs-commits mailing list