r23795 - in /trunk/libdatetime-format-mail-perl/debian: changelog control copyright rules watch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Aug 5 04:25:46 UTC 2008


Author: gregoa
Date: Tue Aug  5 04:25:43 2008
New Revision: 23795

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=23795
Log:
* Refresh debian/rules, no functional changes, except: don't create
  .packlist file any more.
* debian/control: change my email address.
* Set Standards-Version to 3.8.0 (no changes).
* debian/watch: use dist-based URL.
* Convert debian/copyright to UTF-8.

Modified:
    trunk/libdatetime-format-mail-perl/debian/changelog
    trunk/libdatetime-format-mail-perl/debian/control
    trunk/libdatetime-format-mail-perl/debian/copyright
    trunk/libdatetime-format-mail-perl/debian/rules
    trunk/libdatetime-format-mail-perl/debian/watch

Modified: trunk/libdatetime-format-mail-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/debian/changelog?rev=23795&op=diff
==============================================================================
--- trunk/libdatetime-format-mail-perl/debian/changelog (original)
+++ trunk/libdatetime-format-mail-perl/debian/changelog Tue Aug  5 04:25:43 2008
@@ -3,6 +3,12 @@
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
+  * Refresh debian/rules, no functional changes, except: don't create
+    .packlist file any more.
+  * debian/control: change my email address.
+  * Set Standards-Version to 3.8.0 (no changes).
+  * debian/watch: use dist-based URL.
+  * Convert debian/copyright to UTF-8.
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:28:42 +0200
 

Modified: trunk/libdatetime-format-mail-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/debian/control?rev=23795&op=diff
==============================================================================
--- trunk/libdatetime-format-mail-perl/debian/control (original)
+++ trunk/libdatetime-format-mail-perl/debian/control Tue Aug  5 04:25:43 2008
@@ -5,9 +5,9 @@
 Build-Depends-Indep: perl (>= 5.8.0-7), libdatetime-perl, libfile-find-rule-perl, libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>,
- gregor herrmann <gregor+debian at comodo.priv.at>, Carlo Segre <segre at debian.org>,
+ gregor herrmann <gregoa at debian.org>, Carlo Segre <segre at debian.org>,
  Damyan Ivanov <dmn at debian.org>
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/DateTime-Format-Mail/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdatetime-format-mail-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/

Modified: trunk/libdatetime-format-mail-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/debian/copyright?rev=23795&op=diff
==============================================================================
--- trunk/libdatetime-format-mail-perl/debian/copyright (original)
+++ trunk/libdatetime-format-mail-perl/debian/copyright Tue Aug  5 04:25:43 2008
@@ -12,7 +12,7 @@
 Maintained by Dave Rolsky <autarch at urth.org>..
 LICENCE FOR DateTime::Format::Mail
 
-Copyright © Iain Truskett, 2003. All rights reserved.
+Copyright © Iain Truskett, 2003. All rights reserved.
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Modified: trunk/libdatetime-format-mail-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/debian/rules?rev=23795&op=diff
==============================================================================
--- trunk/libdatetime-format-mail-perl/debian/rules (original)
+++ trunk/libdatetime-format-mail-perl/debian/rules Tue Aug  5 04:25:43 2008
@@ -14,52 +14,38 @@
 # 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
 	$(PERL) Build
 	$(PERL) Build test
-
-	touch build-stamp
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
+	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
 
-	dh_clean build-stamp install-stamp
-
-	# Add commands to clean up after the build process here
-	[ ! -f Build ] || $(PERL) Build distclean
-
-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 install destdir=$(TMP)
-
-	touch install-stamp
+	$(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_installexamples
 	dh_installdocs README
 	dh_installchangelogs Changes
 	dh_perl
@@ -70,8 +56,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

Modified: trunk/libdatetime-format-mail-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-format-mail-perl/debian/watch?rev=23795&op=diff
==============================================================================
--- trunk/libdatetime-format-mail-perl/debian/watch (original)
+++ trunk/libdatetime-format-mail-perl/debian/watch Tue Aug  5 04:25:43 2008
@@ -4,4 +4,4 @@
 # Also, 0.30 upstream will be 0.3000 in Debian to keep version numbers in
 # order.
 opts=dversionmangle=s/\+dfsg$//,uversionmangle=s/^(\d\.\d\d)$/${1}00/ \
-http://www.cpan.org/modules/by-module/DateTime/DateTime-Format-Mail-([\d\.]+)\.tar\.gz
+http://search.cpan.org/dist/DateTime-Format-Mail/   .*/DateTime-Format-Mail-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




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