r13759 - in /trunk/libemail-simple-perl/debian: changelog compat control rules watch

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Mon Jan 28 05:28:18 UTC 2008


Author: rmayorga-guest
Date: Mon Jan 28 05:28:18 2008
New Revision: 13759

URL: http://svn.debian.org/wsvn/?sc=1&rev=13759
Log:
* Make package ready for Perl 5.10 update
* debian/rules
  + wrap uploaders field
  + set debhelper version to 6
  + remove perl-modules from B-D-I
  + Set standards-version to 3.7.3 ( no changes needed )
* debian/watch improved
* debian/rules
  + use dh_listpackages instead of hardcode package name
  + remove OPTIMIZE var, we are not compiling anything
  + move tests suites from install target to build target
  + use $@ when touching -stamp files
  + remove un-ussed dh_calls
  + Add install-stamp target and make install depends on it

Modified:
    trunk/libemail-simple-perl/debian/changelog
    trunk/libemail-simple-perl/debian/compat
    trunk/libemail-simple-perl/debian/control
    trunk/libemail-simple-perl/debian/rules
    trunk/libemail-simple-perl/debian/watch

Modified: trunk/libemail-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/changelog?rev=13759&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/changelog (original)
+++ trunk/libemail-simple-perl/debian/changelog Mon Jan 28 05:28:18 2008
@@ -1,11 +1,28 @@
-libemail-simple-perl (2.003-2) UNRELEASED; urgency=low
+libemail-simple-perl (2.003-2) unstable; urgency=low
 
+  [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed:
     Homepage pseudo-field (Description); XS-Vcs-Svn fields.
   * debian/rules: delete /usr/lib/perl5 only if it exists.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:29:11 +0200
+  [ Rene Mayorga ]
+  * Make package ready for Perl 5.10 update
+  * debian/rules
+    + wrap uploaders field
+    + set debhelper version to 6
+    + remove perl-modules from B-D-I
+    + Set standards-version to 3.7.3 ( no changes needed )
+  * debian/watch improved
+  * debian/rules
+    + use dh_listpackages instead of hardcode package name
+    + remove OPTIMIZE var, we are not compiling anything
+    + move tests suites from install target to build target
+    + use $@ when touching -stamp files
+    + remove un-ussed dh_calls
+    + Add install-stamp target and make install depends on it
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Sun, 27 Jan 2008 23:09:10 -0600
 
 libemail-simple-perl (2.003-1) unstable; urgency=low
 

Modified: trunk/libemail-simple-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/compat?rev=13759&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/compat (original)
+++ trunk/libemail-simple-perl/debian/compat Mon Jan 28 05:28:18 2008
@@ -1,1 +1,1 @@
-5
+6

Modified: trunk/libemail-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/control?rev=13759&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/control (original)
+++ trunk/libemail-simple-perl/debian/control Mon Jan 28 05:28:18 2008
@@ -2,10 +2,14 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>, Carlo Segre <segre at debian.org>, Niko Tyni <ntyni at iki.fi>, Jeremiah Foster <jeremiah at jeremiahfoster.com>
-Build-Depends: debhelper (>= 5.0.0)
-Build-Depends-Indep: perl (>= 5.6.0-16), perl-modules, libtest-pod-perl, libtest-pod-coverage-perl
-Standards-Version: 3.7.2
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, 
+ gregor herrmann <gregor+debian at comodo.priv.at>, 
+ Carlo Segre <segre at debian.org>, Niko Tyni <ntyni at iki.fi>, 
+ Jeremiah Foster <jeremiah at jeremiahfoster.com>
+Build-Depends: debhelper (>= 6)
+Build-Depends-Indep: perl (>= 5.6.0-16), libtest-pod-perl, 
+ libtest-pod-coverage-perl
+Standards-Version: 3.7.3
 Homepage: http://emailproject.perl.org/wiki/Email::Simple
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libemail-simple-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-simple-perl/

Modified: trunk/libemail-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/rules?rev=13759&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/rules (original)
+++ trunk/libemail-simple-perl/debian/rules Mon Jan 28 05:28:18 2008
@@ -9,38 +9,35 @@
 	PERL = /usr/bin/perl
 endif
 
-package = libemail-simple-perl
+PACKAGE=$(shell dh_listpackages)
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
 
 build: build-stamp
 build-stamp:
 	dh_testdir
-
 	perl Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-O2 -g -Wall"
-
-	touch build-stamp
+	$(MAKE)
+	$(MAKE) test
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp
-
+	rm -f build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-
 	dh_clean
 
-install: build
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	dh_installdirs
-	$(MAKE) test
-	$(MAKE) install PREFIX=$(CURDIR)/debian/$(package)/usr
-
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 	#As this is a architecture independent package, we are not supposed to install
 	#stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
-	[ ! -d debian/$(package)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose debian/$(package)/usr/lib/perl5
-
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+	touch $@
 binary-arch: build install
 
 binary-indep: build install
@@ -48,7 +45,6 @@
 	dh_testroot
 	dh_installdocs
 	dh_installchangelogs Changes
-	dh_link
 	dh_compress
 	dh_fixperms
 	dh_installdeb

Modified: trunk/libemail-simple-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/watch?rev=13759&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/watch (original)
+++ trunk/libemail-simple-perl/debian/watch Mon Jan 28 05:28:18 2008
@@ -1,2 +1,2 @@
 version=3
-http://www.cpan.org/modules/by-module/Email/Email-Simple-([\d\.]+).tar.gz
+http://search.cpan.org/dist/Email-Simple/	.+/Email-Simple-v??(\d[\d._]*)\.(?:tar\.gz|tar\.bz2|tgz|\.zip)




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