r19628 - in /trunk/libdate-manip-perl/debian: changelog control rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Wed May 7 18:41:05 UTC 2008


Author: gregoa
Date: Wed May  7 18:41:04 2008
New Revision: 19628

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19628
Log:
* Refresh debian/rules, no functional changes.
* debian/control: change my email address and wrap long line.

Modified:
    trunk/libdate-manip-perl/debian/changelog
    trunk/libdate-manip-perl/debian/control
    trunk/libdate-manip-perl/debian/rules

Modified: trunk/libdate-manip-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdate-manip-perl/debian/changelog?rev=19628&op=diff
==============================================================================
--- trunk/libdate-manip-perl/debian/changelog (original)
+++ trunk/libdate-manip-perl/debian/changelog Wed May  7 18:41:04 2008
@@ -1,5 +1,6 @@
 libdate-manip-perl (5.50-1) unstable; urgency=low
 
+  [ Rene Mayorga ]
   * New upstream release
   * remove 03_manip_arst_tz.diff, 02_manip_omst_tz.diff,
     04_manip_yekt_tz.diff, these patches are included by upstream
@@ -9,6 +10,10 @@
     - Add myself to uploaders
   * debian/rules - don't install README file
   * debian/copyright - refresh Copyright year
+
+  [ gregor herrmann ]
+  * Refresh debian/rules, no functional changes.
+  * debian/control: change my email address and wrap long line.
 
  -- Rene Mayorga <rmayorga at debian.org.sv>  Wed, 07 May 2008 00:23:01 -0600
 

Modified: trunk/libdate-manip-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdate-manip-perl/debian/control?rev=19628&op=diff
==============================================================================
--- trunk/libdate-manip-perl/debian/control (original)
+++ trunk/libdate-manip-perl/debian/control Wed May  7 18:41:04 2008
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>,
- Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>, Rene Mayorga <rmayorga at debian.org.sv>
+ Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregoa at debian.org>,
+ Rene Mayorga <rmayorga at debian.org.sv>
 Build-Depends: debhelper (>= 6), quilt
 Build-Depends-Indep: perl (>= 5.6.0-17), libtest-pod-perl, 
  libtest-pod-coverage-perl

Modified: trunk/libdate-manip-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdate-manip-perl/debian/rules?rev=19628&op=diff
==============================================================================
--- trunk/libdate-manip-perl/debian/rules (original)
+++ trunk/libdate-manip-perl/debian/rules Wed May  7 18:41:04 2008
@@ -1,29 +1,26 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
+# 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
 
 include /usr/share/quilt/quilt.make
 
-# Define the perl interpreter
+# 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
 
-PERL = /usr/bin/perl
-
-PACKAGE = `dh_listpackages`
-
-TMP = $(CURDIR)/debian/$(PACKAGE)
-
-configure: configure-stamp
-configure-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-	$(PERL) Makefile.PL verbose INSTALLDIRS=vendor
-	touch $@
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp: configure-stamp
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
 	$(MAKE)
 	$(MAKE) test
 	touch $@
@@ -31,8 +28,8 @@
 clean: unpatch
 	dh_testdir
 	dh_testroot
-	dh_clean build-stamp configure-stamp install-stamp
-	[ ! -e Makefile ] || $(MAKE) distclean
+	dh_clean build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
 
 install: install-stamp
 install-stamp: build-stamp
@@ -40,22 +37,21 @@
 	dh_testroot
 	dh_clean -k
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	# Remove any empty directories
-	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
 	touch $@
 
-# Build architecture-dependent files here.
-binary-arch: build install
-# We have nothing to do by default.
+binary-arch:
+# We have nothing to do here for an architecture-independent package
 
-# Build architecture-independent files here.
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-	dh_perl
+	dh_installexamples DateManip.cnf
 	dh_installdocs TODO
 	dh_installchangelogs -k HISTORY
-	dh_installexamples DateManip.cnf
+	dh_perl
 	dh_compress
 	dh_fixperms
 	dh_installdeb
@@ -64,4 +60,4 @@
 	dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build clean binary-indep binary-arch binary install




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