r16655 - in /trunk/libmodule-scandeps-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Thu Mar 6 18:07:59 UTC 2008


Author: gregoa-guest
Date: Thu Mar  6 18:07:58 2008
New Revision: 16655

URL: http://svn.debian.org/wsvn/?sc=1&rev=16655
Log:
TODO: renaming /usr/bin/scandeps.pl and its manpage is nice, but there are
      tons of references to scandeps.pl ...

* debian/rules:
  - update with dh-make-perl's help
  - rename /usr/bin/scandeps.pl to /usr/bin/scandeps as per policy; also
    rename corresponding manpage

Modified:
    trunk/libmodule-scandeps-perl/debian/changelog
    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=16655&op=diff
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/changelog (original)
+++ trunk/libmodule-scandeps-perl/debian/changelog Thu Mar  6 18:07:58 2008
@@ -1,5 +1,8 @@
 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 ...
+  
   * Strip unneeded libmodule-install-perl from build dependencies (closes:
     #467008).
   * Add libtest-pod-perl, libmodule-pluggable-perl to build dependencies to
@@ -9,8 +12,12 @@
   * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467888).
   * debian/copyright: add upstream source location.
   * debian/watch: extend regexp for matching upstream releases.
+  * debian/rules:
+    - update with dh-make-perl's help
+    - 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 18:46:16 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 06 Mar 2008 19:06:44 +0100
 
 libmodule-scandeps-perl (0.82-2) unstable; urgency=low
 

Modified: trunk/libmodule-scandeps-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmodule-scandeps-perl/debian/rules?rev=16655&op=diff
==============================================================================
--- trunk/libmodule-scandeps-perl/debian/rules (original)
+++ trunk/libmodule-scandeps-perl/debian/rules Thu Mar  6 18:07:58 2008
@@ -1,5 +1,14 @@
 #!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
 
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
 PACKAGE=$(shell dh_listpackages)
@@ -13,28 +22,38 @@
 build: build-stamp
 build-stamp:
 	dh_testdir
+
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
-	touch build-stamp
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
+
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	$(MAKE) test
+
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# no extensions in PATH
+	[ ! -f $(TMP)/usr/bin/scandeps.pl ] || mv $(TMP)/usr/bin/scandeps.pl $(TMP)/usr/bin/scandeps
+	[ ! -f $(TMP)/usr/share/man/man1/scandeps.pl.1p ] || mv $(TMP)/usr/share/man/man1/scandeps.pl.1p $(TMP)/usr/share/man/man1/scandeps.1p
+
 	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
-	touch install-stamp
+
+	touch $@
 
 binary-arch:
-# We have nothing to do by default.
+# We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
 	dh_testdir
@@ -49,7 +68,7 @@
 	dh_md5sums
 	dh_builddeb
 
-source diff:                                                                  
+source diff:
 	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
 binary: binary-indep binary-arch




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