r19514 - in /trunk/libconfig-std-perl/debian: changelog rules
dmn at users.alioth.debian.org
dmn at users.alioth.debian.org
Tue May 6 14:05:32 UTC 2008
Author: dmn
Date: Tue May 6 14:05:22 2008
New Revision: 19514
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19514
Log:
* refresh debian/rules with current dh-make-perl template
+ stop installing packlists and redundant README
Modified:
trunk/libconfig-std-perl/debian/changelog
trunk/libconfig-std-perl/debian/rules
Modified: trunk/libconfig-std-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/changelog?rev=19514&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/changelog (original)
+++ trunk/libconfig-std-perl/debian/changelog Tue May 6 14:05:22 2008
@@ -9,6 +9,8 @@
debian at 420.am>)
* debian/watch: use dist-based URL.
* add myself to Uploaders
+ * refresh debian/rules with current dh-make-perl template
+ + stop installing packlists and redundant README
-- Damyan Ivanov <dmn at debian.org> Tue, 06 May 2008 16:57:46 +0300
Modified: trunk/libconfig-std-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/rules?rev=19514&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/rules (original)
+++ trunk/libconfig-std-perl/debian/rules Tue May 6 14:05:22 2008
@@ -14,59 +14,44 @@
# always return the default without waiting for user input.
export PERL_MM_USE_DEFAULT=1
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP =$(CURDIR)/debian/$(PACKAGE)
+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
- OPTIMIZE="-Wall -O2 -g" $(PERL) Build
-
- touch build-stamp
+ $(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
- # Add commands to clean up after the build process here
- [ ! -f Build ] || $(PERL) Build distclean
-
- dh_clean build-stamp install-stamp
-
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
dh_testdir
dh_testroot
dh_clean -k
-
- # Add commands to install the package into debian/$PACKAGE_NAME here
- $(PERL) Build test
- $(PERL) Build install destdir=$(TMP)
-
- touch install-stamp
+ # 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 by default.
+# We have nothing to do here for an architecture-independent package
binary-indep: build install
dh_testdir
dh_testroot
-# dh_installcron
-# dh_installmenu
-# dh_installexamples
- dh_installdocs README
+ dh_installdocs
dh_installchangelogs Changes
dh_perl
- dh_link
- dh_strip
dh_compress
dh_fixperms
dh_installdeb
@@ -74,8 +59,5 @@
dh_md5sums
dh_builddeb
-source diff:
- @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+.PHONY: build clean binary-indep binary-arch binary install
More information about the Pkg-perl-cvs-commits
mailing list