r50697 - in /trunk/libdatetime-format-iso8601-perl/debian: changelog compat control rules

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Mon Jan 11 08:01:06 UTC 2010


Author: carnil-guest
Date: Mon Jan 11 08:00:54 2010
New Revision: 50697

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50697
Log:
* Bump debhelper compat level to 7.
* debian/control: Bump versioned dependency on debhelper to debhelper 
  (>= 7).
* Simplify debian/rules to a tiny 3-liner makefile.

Modified:
    trunk/libdatetime-format-iso8601-perl/debian/changelog
    trunk/libdatetime-format-iso8601-perl/debian/compat
    trunk/libdatetime-format-iso8601-perl/debian/control
    trunk/libdatetime-format-iso8601-perl/debian/rules

Modified: trunk/libdatetime-format-iso8601-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-iso8601-perl/debian/changelog?rev=50697&op=diff
==============================================================================
--- trunk/libdatetime-format-iso8601-perl/debian/changelog (original)
+++ trunk/libdatetime-format-iso8601-perl/debian/changelog Mon Jan 11 08:00:54 2010
@@ -12,8 +12,12 @@
   * Add 564411-fix_1_digit_year.patch patch to fix FTBFS due to failed tests
     testing one digit years formats (Closes: #564411).
   * Add myself to Uploaders. 
+  * Bump debhelper compat level to 7.
+  * debian/control: Bump versioned dependency on debhelper to debhelper 
+    (>= 7).
+  * Simplify debian/rules to a tiny 3-liner makefile.
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Mon, 11 Jan 2010 08:55:28 +0100
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Mon, 11 Jan 2010 08:59:51 +0100
 
 libdatetime-format-iso8601-perl (0.06-1) unstable; urgency=low
 

Modified: trunk/libdatetime-format-iso8601-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-iso8601-perl/debian/compat?rev=50697&op=diff
==============================================================================
--- trunk/libdatetime-format-iso8601-perl/debian/compat (original)
+++ trunk/libdatetime-format-iso8601-perl/debian/compat Mon Jan 11 08:00:54 2010
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libdatetime-format-iso8601-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-iso8601-perl/debian/control?rev=50697&op=diff
==============================================================================
--- trunk/libdatetime-format-iso8601-perl/debian/control (original)
+++ trunk/libdatetime-format-iso8601-perl/debian/control Mon Jan 11 08:00:54 2010
@@ -1,7 +1,7 @@
 Source: libdatetime-format-iso8601-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5), libmodule-build-perl, libdatetime-perl (>= 0.18), libdatetime-format-builder-perl (>= 0.77), libfile-find-rule-perl, libtest-distribution-perl, libtest-pod-perl
+Build-Depends: debhelper (>= 7), libmodule-build-perl, libdatetime-perl (>= 0.18), libdatetime-format-builder-perl (>= 0.77), libfile-find-rule-perl, libtest-distribution-perl, libtest-pod-perl
 Build-Depends-Indep: perl (>= 5.6.10-12)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: AGOSTINI Yves <agostini at univ-metz.fr>, Jaldhar H. Vyas <jaldhar at debian.org>,

Modified: trunk/libdatetime-format-iso8601-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-iso8601-perl/debian/rules?rev=50697&op=diff
==============================================================================
--- trunk/libdatetime-format-iso8601-perl/debian/rules (original)
+++ trunk/libdatetime-format-iso8601-perl/debian/rules Mon Jan 11 08:00:54 2010
@@ -1,63 +1,4 @@
 #!/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.
-#
-# It was later modified by Jason Kohles <email at jasonkohles.com>
-# http://www.jasonkohles.com/ to support Module::Build installed modules
 
-# 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
-
-PERL   ?= /usr/bin/perl
-PACKAGE = $(shell dh_listpackages)
-TMP     = $(CURDIR)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-	# Add commands to compile the package here
-	$(PERL) Build.PL installdirs=vendor
-	$(PERL) Build
-	$(PERL) Build test
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	# Add commands to clean up after the build process here
-	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	# Add commands to install the package into $(TMP) here
-	$(PERL) Build install destdir=$(TMP) create_packlist=0
-	touch $@
-
-binary-arch:
-# We have nothing to do here for an architecture-independent package
-
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs README Todo
-	dh_installchangelogs Changes
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+%:
+	dh $@




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