r24662 - in /trunk/libuniversal-isa-perl/debian: changelog compat control rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Aug 27 12:22:57 UTC 2008


Author: dmn
Date: Wed Aug 27 12:22:55 2008
New Revision: 24662

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=24662
Log:
* debian/rules: rewrite with debhelper 7; bump compat and dependency
  - do not install redundant README

Modified:
    trunk/libuniversal-isa-perl/debian/changelog
    trunk/libuniversal-isa-perl/debian/compat
    trunk/libuniversal-isa-perl/debian/control
    trunk/libuniversal-isa-perl/debian/rules

Modified: trunk/libuniversal-isa-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-isa-perl/debian/changelog?rev=24662&op=diff
==============================================================================
--- trunk/libuniversal-isa-perl/debian/changelog (original)
+++ trunk/libuniversal-isa-perl/debian/changelog Wed Aug 27 12:22:55 2008
@@ -16,6 +16,8 @@
   * New upstream release
   * now uses Artistic 2.0 license only. Update debian/copyright; While there,
     refresh the years of copyright too
+  * debian/rules: rewrite with debhelper 7; bump compat and dependency
+    - do not install redundant README
 
  -- Damyan Ivanov <dmn at debian.org>  Wed, 27 Aug 2008 14:46:18 +0300
 

Modified: trunk/libuniversal-isa-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-isa-perl/debian/compat?rev=24662&op=diff
==============================================================================
--- trunk/libuniversal-isa-perl/debian/compat (original)
+++ trunk/libuniversal-isa-perl/debian/compat Wed Aug 27 12:22:55 2008
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libuniversal-isa-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-isa-perl/debian/control?rev=24662&op=diff
==============================================================================
--- trunk/libuniversal-isa-perl/debian/control (original)
+++ trunk/libuniversal-isa-perl/debian/control Wed Aug 27 12:22:55 2008
@@ -1,7 +1,7 @@
 Source: libuniversal-isa-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0), libmodule-build-perl
+Build-Depends: debhelper (>= 7.0), libmodule-build-perl
 Build-Depends-Indep: perl (>= 5.8.0-7)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>

Modified: trunk/libuniversal-isa-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-isa-perl/debian/rules?rev=24662&op=diff
==============================================================================
--- trunk/libuniversal-isa-perl/debian/rules (original)
+++ trunk/libuniversal-isa-perl/debian/rules Wed Aug 27 12:22:55 2008
@@ -1,60 +1,19 @@
 #!/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
-	$(PERL) Build.PL installdirs=vendor
-	$(PERL) Build
-	$(PERL) Build test
-	touch $@
+build:
+	dh $@
 
 clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
+	dh $@
+	#[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
 
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(PERL) Build install destdir=$(TMP) create_packlist=0
-	touch $@
+install: build
+	dh $@
 
 binary-arch:
 # We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs README
-	dh_installchangelogs Changes
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
+	dh $@
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install




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