r70374 - in /trunk/libboulder-perl/debian: changelog compat control docs examples rules

rra at users.alioth.debian.org rra at users.alioth.debian.org
Sat Mar 5 05:24:29 UTC 2011


Author: rra
Date: Sat Mar  5 05:23:37 2011
New Revision: 70374

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70374
Log:
Update debhelper to V8, use rule minimization

* Update debhelper compatibility level to V8.
  - Use debhelper rule minimization with the quilt module.

Added:
    trunk/libboulder-perl/debian/docs
    trunk/libboulder-perl/debian/examples
Modified:
    trunk/libboulder-perl/debian/changelog
    trunk/libboulder-perl/debian/compat
    trunk/libboulder-perl/debian/control
    trunk/libboulder-perl/debian/rules

Modified: trunk/libboulder-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/changelog?rev=70374&op=diff
==============================================================================
--- trunk/libboulder-perl/debian/changelog (original)
+++ trunk/libboulder-perl/debian/changelog Sat Mar  5 05:23:37 2011
@@ -16,6 +16,8 @@
 
   [ Russ Allbery ]
   * Remove myself from Uploaders.
+  * Update debhelper compatibility level to V8.
+    - Use debhelper rule minimization with the quilt module.
 
  -- gregor herrmann <gregoa at debian.org>  Sat, 07 Jun 2008 03:34:28 +0200
 

Modified: trunk/libboulder-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/compat?rev=70374&op=diff
==============================================================================
--- trunk/libboulder-perl/debian/compat (original)
+++ trunk/libboulder-perl/debian/compat Sat Mar  5 05:23:37 2011
@@ -1,1 +1,1 @@
-5
+8

Modified: trunk/libboulder-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/control?rev=70374&op=diff
==============================================================================
--- trunk/libboulder-perl/debian/control (original)
+++ trunk/libboulder-perl/debian/control Sat Mar  5 05:23:37 2011
@@ -1,19 +1,19 @@
 Source: libboulder-perl
 Section: perl
 Priority: optional
+Build-Depends: debhelper (>= 8), quilt (>= 0.46-7)
+Build-Depends-Indep: libxml-parser-perl, perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Daniel Ruoso <daniel at ruoso.com>
-Build-Depends: debhelper (>= 5), quilt (>= 0.40)
-Build-Depends-Indep: libxml-parser-perl
 Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/Boulder/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libboulder-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libboulder-perl/
 
 Package: libboulder-perl
+Architecture: all
 Section: perl
 Priority: optional
-Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libxml-parser-perl
 Description: Perl module for hierarchical tag/value structures
  Boulder provides a simple stream-oriented format for transmitting data

Added: trunk/libboulder-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/docs?rev=70374&op=file
==============================================================================
--- trunk/libboulder-perl/debian/docs (added)
+++ trunk/libboulder-perl/debian/docs Sat Mar  5 05:23:37 2011
@@ -1,0 +1,2 @@
+README
+docs/*

Added: trunk/libboulder-perl/debian/examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/examples?rev=70374&op=file
==============================================================================
--- trunk/libboulder-perl/debian/examples (added)
+++ trunk/libboulder-perl/debian/examples Sat Mar  5 05:23:37 2011
@@ -1,0 +1,1 @@
+eg/*

Modified: trunk/libboulder-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libboulder-perl/debian/rules?rev=70374&op=diff
==============================================================================
--- trunk/libboulder-perl/debian/rules (original)
+++ trunk/libboulder-perl/debian/rules Sat Mar  5 05:23:37 2011
@@ -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.
 
-# 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
-
-include /usr/share/quilt/quilt.make
-
-PERL   ?= /usr/bin/perl
-PACKAGE = $(shell dh_listpackages)
-TMP     = $(CURDIR)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || $(MAKE) realclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/lib/perl5
-	touch $@
-
-binary-arch:
-# We have nothing to do here for an architecture-independent package
-
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installexamples eg/*
-	dh_installdocs README docs/*
-	dh_installchangelogs ChangeLog
-	dh_perl
-	dh_compress -Xexamples
-	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 --with=quilt $@




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