r17150 - in /trunk/libmodule-scandeps-perl/debian: changelog control patches/ patches/fix_references_to_renamed_executable patches/series rules

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Mon Mar 10 16:52:53 UTC 2008


Author: gwolf
Date: Mon Mar 10 16:52:53 2008
New Revision: 17150

URL: http://svn.debian.org/wsvn/?sc=1&rev=17150
Log:
Fixed references to renamed executable scandeps.pl => scandeps

Added:
    trunk/libmodule-scandeps-perl/debian/patches/
    trunk/libmodule-scandeps-perl/debian/patches/fix_references_to_renamed_executable
    trunk/libmodule-scandeps-perl/debian/patches/series
Modified:
    trunk/libmodule-scandeps-perl/debian/changelog
    trunk/libmodule-scandeps-perl/debian/control
    trunk/libmodule-scandeps-perl/debian/rules

Modified: trunk/libmodule-scandeps-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/changelog?rev=17150&op=diff
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/changelog (original)
+++ trunk/libmodule-scandeps-perl/debian/changelog Mon Mar 10 16:52:53 2008
@@ -1,8 +1,6 @@
-libmodule-scandeps-perl (0.82-3) UNRELEASED; urgency=low
-
-  TODO: renaming /usr/bin/scandeps.pl and its manpage is nice, but there are
-        tons of references to scandeps.pl ...
+libmodule-scandeps-perl (0.82-3) unstable; urgency=low
   
+  [ gregor herrmann ]
   * debian/control:
     - strip unneeded libmodule-install-perl from build dependencies
       (closes: #467008)
@@ -18,7 +16,13 @@
     - rename /usr/bin/scandeps.pl to /usr/bin/scandeps as per policy; also
       rename corresponding manpage
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 06 Mar 2008 19:08:52 +0100
+  [ Gunnar Wolf ]
+  * Added quilt as a build-dependency
+  * Fixed references to scandeps.pl so they refer to scandeps (renamed
+    in this same upload, following Debian policy)
+  * Added myself as an uploader
+
+ -- Gunnar Wolf <gwolf at debian.org>  Mon, 10 Mar 2008 10:40:40 -0600
 
 libmodule-scandeps-perl (0.82-2) unstable; urgency=low
 

Modified: trunk/libmodule-scandeps-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/control?rev=17150&op=diff
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/control (original)
+++ trunk/libmodule-scandeps-perl/debian/control Mon Mar 10 16:52:53 2008
@@ -1,10 +1,10 @@
 Source: libmodule-scandeps-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 5), quilt
 Build-Depends-Indep: perl (>= 5.8.0-7), libmodule-build-perl (>= 0.28),
  libversion-perl, libtest-pod-perl, libmodule-pluggable-perl
-Uploaders: Florian Ragwitz <rafl at debian.org>, 
+Uploaders: Florian Ragwitz <rafl at debian.org>, Gunnar Wolf <gwolf at debian.org>,
  Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Homepage: http://search.cpan.org/dist/Module::ScanDeps/

Added: trunk/libmodule-scandeps-perl/debian/patches/fix_references_to_renamed_executable
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/patches/fix_references_to_renamed_executable?rev=17150&op=file
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/patches/fix_references_to_renamed_executable (added)
+++ trunk/libmodule-scandeps-perl/debian/patches/fix_references_to_renamed_executable Mon Mar 10 16:52:53 2008
@@ -1,0 +1,60 @@
+Index: libmodule-scandeps-perl/lib/Module/ScanDeps.pm
+===================================================================
+--- libmodule-scandeps-perl.orig/lib/Module/ScanDeps.pm	2008-03-10 10:35:23.000000000 -0600
++++ libmodule-scandeps-perl/lib/Module/ScanDeps.pm	2008-03-10 10:35:50.000000000 -0600
+@@ -41,12 +41,12 @@
+ 
+ =head1 SYNOPSIS
+ 
+-Via the command-line program L<scandeps.pl>:
++Via the command-line program L<scandeps>:
+ 
+-    % scandeps.pl *.pm          # Print PREREQ_PM section for *.pm
+-    % scandeps.pl -e "use utf8" # Read script from command line
+-    % scandeps.pl -B *.pm       # Include core modules
+-    % scandeps.pl -V *.pm       # Show autoload/shared/data files
++    % scandeps *.pm          # Print PREREQ_PM section for *.pm
++    % scandeps -e "use utf8" # Read script from command line
++    % scandeps -B *.pm       # Include core modules
++    % scandeps -V *.pm       # Show autoload/shared/data files
+ 
+ Used in a program;
+ 
+@@ -1274,7 +1274,7 @@
+ 
+ =head1 SEE ALSO
+ 
+-L<scandeps.pl> is a bundled utility that writes C<PREREQ_PM> section
++L<scandeps> is a bundled utility that writes C<PREREQ_PM> section
+ for a number of files.
+ 
+ An application of B<Module::ScanDeps> is to generate executables from
+Index: libmodule-scandeps-perl/script/scandeps.pl
+===================================================================
+--- libmodule-scandeps-perl.orig/script/scandeps.pl	2008-03-10 10:35:23.000000000 -0600
++++ libmodule-scandeps-perl/script/scandeps.pl	2008-03-10 10:35:36.000000000 -0600
+@@ -135,18 +135,18 @@
+ 
+ =head1 NAME
+ 
+-scandeps.pl - Scan file prerequisites
++scandeps - Scan file prerequisites
+ 
+ =head1 SYNOPSIS
+ 
+-    % scandeps.pl *.pm		# Print PREREQ_PM section for *.pm
+-    % scandeps.pl -e 'STRING'	# Scan an one-liner
+-    % scandeps.pl -B *.pm	# Include core modules
+-    % scandeps.pl -V *.pm	# Show autoload/shared/data files
++    % scandeps *.pm		# Print PREREQ_PM section for *.pm
++    % scandeps -e 'STRING'	# Scan an one-liner
++    % scandeps -B *.pm	# Include core modules
++    % scandeps -V *.pm	# Show autoload/shared/data files
+ 
+ =head1 DESCRIPTION
+ 
+-F<scandeps.pl> is a simple-minded utility that prints out the
++F<scandeps> is a simple-minded utility that prints out the
+ C<PREREQ_PM> section needed by modules.
+ 
+ If you have B<CPANPLUS> installed, modules that are part of an

Added: trunk/libmodule-scandeps-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/patches/series?rev=17150&op=file
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/patches/series (added)
+++ trunk/libmodule-scandeps-perl/debian/patches/series Mon Mar 10 16:52:53 2008
@@ -1,0 +1,1 @@
+fix_references_to_renamed_executable

Modified: trunk/libmodule-scandeps-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/rules?rev=17150&op=diff
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/rules (original)
+++ trunk/libmodule-scandeps-perl/debian/rules Mon Mar 10 16:52:53 2008
@@ -19,8 +19,10 @@
 
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
+include /usr/share/quilt/quilt.make
+
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
@@ -29,7 +31,7 @@
 
 	touch $@
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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