r50292 - in /trunk/libdigest-sha-perl/debian: changelog compat control libdigest-sha-perl.examples rules

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Tue Jan 5 19:02:40 UTC 2010


Author: carnil-guest
Date: Tue Jan  5 19:02:22 2010
New Revision: 50292

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50292
Log:
* Bump compatibility level debhelper to 7
* debian/rules: simplify rules Makefile to a tiny file.
* debian/control:
  - Re-arrange Build-Depends and Build-Depends-Indep.
  - Bump versioned dependency on debhelper to (>= 7). 

Added:
    trunk/libdigest-sha-perl/debian/libdigest-sha-perl.examples
Modified:
    trunk/libdigest-sha-perl/debian/changelog
    trunk/libdigest-sha-perl/debian/compat
    trunk/libdigest-sha-perl/debian/control
    trunk/libdigest-sha-perl/debian/rules

Modified: trunk/libdigest-sha-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha-perl/debian/changelog?rev=50292&op=diff
==============================================================================
--- trunk/libdigest-sha-perl/debian/changelog (original)
+++ trunk/libdigest-sha-perl/debian/changelog Tue Jan  5 19:02:22 2010
@@ -15,8 +15,13 @@
   * Add myself to Uploaders 
   * Referesh debian/copyright following revision 135 of DEP5's
     Format-Specification for machine-readable copyright information.
+  * Bump compatibility level debhelper to 7
+  * debian/rules: simplify rules Makefile to a tiny file.
+  * debian/control:
+    - Re-arrange Build-Depends and Build-Depends-Indep.
+    - Bump versioned dependency on debhelper to (>= 7). 
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Tue, 05 Jan 2010 19:49:59 +0100
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Tue, 05 Jan 2010 19:59:12 +0100
 
 libdigest-sha-perl (5.47-1) unstable; urgency=low
 

Modified: trunk/libdigest-sha-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha-perl/debian/compat?rev=50292&op=diff
==============================================================================
--- trunk/libdigest-sha-perl/debian/compat (original)
+++ trunk/libdigest-sha-perl/debian/compat Tue Jan  5 19:02:22 2010
@@ -1,1 +1,1 @@
-6
+7

Modified: trunk/libdigest-sha-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha-perl/debian/control?rev=50292&op=diff
==============================================================================
--- trunk/libdigest-sha-perl/debian/control (original)
+++ trunk/libdigest-sha-perl/debian/control Tue Jan  5 19:02:22 2010
@@ -1,7 +1,9 @@
 Source: libdigest-sha-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 6.0.0), perl (>= 5.8), libtest-pod-perl,
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl,
+ libtest-pod-perl,
  libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Allard Hoeve <allard at byte.nl>, Gunnar Wolf <gwolf at debian.org>,

Added: trunk/libdigest-sha-perl/debian/libdigest-sha-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha-perl/debian/libdigest-sha-perl.examples?rev=50292&op=file
==============================================================================
--- trunk/libdigest-sha-perl/debian/libdigest-sha-perl.examples (added)
+++ trunk/libdigest-sha-perl/debian/libdigest-sha-perl.examples Tue Jan  5 19:02:22 2010
@@ -1,0 +1,1 @@
+examples/*

Modified: trunk/libdigest-sha-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha-perl/debian/rules?rev=50292&op=diff
==============================================================================
--- trunk/libdigest-sha-perl/debian/rules (original)
+++ trunk/libdigest-sha-perl/debian/rules Tue Jan  5 19:02:22 2010
@@ -1,77 +1,7 @@
 #!/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
-
-PERL   ?= /usr/bin/perl
 PACKAGE = $(shell dh_listpackages)
 TMP     = $(CURDIR)/debian/$(PACKAGE)
 
-# Allow disabling build optimisation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-        CFLAGS += -O0
-else
-        CFLAGS += -O2
-endif
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
-	$(MAKE) test
-	touch $@
-
-clean:
-	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/share/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/share/perl5
-	# lintian override for a long line with a URL.
-	dh_installdirs /usr/share/lintian/overrides/
-	install -m 644 $(CURDIR)/debian/lintian-overrides $(TMP)/usr/share/lintian/overrides/$(PACKAGE)
-	touch $@
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do here for an architecture-dependent package
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installexamples examples/*
-	dh_installdocs README
-	dh_installchangelogs Changes
-	dh_shlibdeps
-	dh_strip
-	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 $@




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