r12916 - in /trunk/libfile-next-perl/debian: changelog control rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Fri Jan 18 08:29:41 UTC 2008


Author: dmn
Date: Fri Jan 18 08:29:41 2008
New Revision: 12916

URL: http://svn.debian.org/wsvn/?sc=1&rev=12916
Log:
* debian/rules: converted deom cdbs to plain debhelper

Modified:
    trunk/libfile-next-perl/debian/changelog
    trunk/libfile-next-perl/debian/control
    trunk/libfile-next-perl/debian/rules

Modified: trunk/libfile-next-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libfile-next-perl/debian/changelog?rev=12916&op=diff
==============================================================================
--- trunk/libfile-next-perl/debian/changelog (original)
+++ trunk/libfile-next-perl/debian/changelog Fri Jan 18 08:29:41 2008
@@ -3,6 +3,7 @@
   * (NOT RELEASED YET) New upstream release
   * debian/copyright: updated copyright years; converted to machine-readable
     format
+  * debian/rules: converted deom cdbs to plain debhelper
 
  -- Damyan Ivanov <dmn at debian.org>  Fri, 18 Jan 2008 09:58:14 +0200
 

Modified: trunk/libfile-next-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libfile-next-perl/debian/control?rev=12916&op=diff
==============================================================================
--- trunk/libfile-next-perl/debian/control (original)
+++ trunk/libfile-next-perl/debian/control Fri Jan 18 08:29:41 2008
@@ -1,7 +1,7 @@
 Source: libfile-next-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0), cdbs, perl (>= 5.8.8-7)
+Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Peter Makholm <peter at makholm.net>
 Standards-Version: 3.7.2

Modified: trunk/libfile-next-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libfile-next-perl/debian/rules?rev=12916&op=diff
==============================================================================
--- trunk/libfile-next-perl/debian/rules (original)
+++ trunk/libfile-next-perl/debian/rules Fri Jan 18 08:29:41 2008
@@ -1,8 +1,75 @@
 #!/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.
 
-export LC_ALL=C
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
 
-# Put perlmodule.mk last to dh_clean temporary files not in MANIFEST
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/perlmodule.mk
+# 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
 
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into $(TMP) here
+	$(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_installdocs
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	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




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