r16458 - in /trunk/soap-lite/debian: changelog control rules

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Tue Mar 4 05:30:45 UTC 2008


Author: tincho-guest
Date: Tue Mar  4 05:30:45 2008
New Revision: 16458

URL: http://svn.debian.org/wsvn/?sc=1&rev=16458
Log:
* 0.70_07 fixed the test failures under perl 5.10, confirmed by my perl10
  chroot (Closes: #467320).
* debian/control: add libtest-mockobject-perl to B-D-I, to improve tests;
  libtest-pod-coverage-perl is not added, as the tests fail.
* debian/rules: cleaned a little; touch Makefile before clean, because the
  patching/unpatching dance makes it unhappy.

Modified:
    trunk/soap-lite/debian/changelog
    trunk/soap-lite/debian/control
    trunk/soap-lite/debian/rules

Modified: trunk/soap-lite/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/soap-lite/debian/changelog?rev=16458&op=diff
==============================================================================
--- trunk/soap-lite/debian/changelog (original)
+++ trunk/soap-lite/debian/changelog Tue Mar  4 05:30:45 2008
@@ -1,4 +1,4 @@
-soap-lite (0.71-1) UNRELEASED; urgency=low
+soap-lite (0.71-1) unstable; urgency=low
 
   [ gregor herrmann ]
   * debian/watch: make regexp for upstream versions more strict, we don't
@@ -8,8 +8,14 @@
   * New upstream release.
   * debian/patches: updated patches to apply cleanly, disable patch included
     in new release.
-
- -- Martín Ferrari <martin.ferrari at gmail.com>  Thu, 28 Feb 2008 22:23:45 -0200
+  * 0.70_07 fixed the test failures under perl 5.10, confirmed by my perl10
+    chroot (Closes: #467320).
+  * debian/control: add libtest-mockobject-perl to B-D-I, to improve tests;
+    libtest-pod-coverage-perl is not added, as the tests fail.
+  * debian/rules: cleaned a little; touch Makefile before clean, because the
+    patching/unpatching dance makes it unhappy.
+
+ -- Martín Ferrari <martin.ferrari at gmail.com>  Tue, 04 Mar 2008 03:30:09 -0200
 
 soap-lite (0.70.04-4) unstable; urgency=medium
 

Modified: trunk/soap-lite/debian/control
URL: http://svn.debian.org/wsvn/trunk/soap-lite/debian/control?rev=16458&op=diff
==============================================================================
--- trunk/soap-lite/debian/control (original)
+++ trunk/soap-lite/debian/control Tue Mar  4 05:30:45 2008
@@ -5,7 +5,8 @@
 Build-Depends-Indep: perl, libossp-uuid-perl, libxml-parser-perl, 
  libwww-perl, libcrypt-ssleay-perl, liburi-perl, libmime-lite-perl, 
  libfcgi-perl, libmime-perl, libnet-jabber-perl, libio-socket-ssl-perl, 
- libcompress-zlib-perl, libio-stringy-perl, nullmailer | mail-transport-agent
+ libcompress-zlib-perl, libio-stringy-perl, libtest-mockobject-perl,
+ nullmailer | mail-transport-agent
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Ezra Pagel <ezra at cpan.org>, 
  Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, Niko Tyni <ntyni at iki.fi>,

Modified: trunk/soap-lite/debian/rules
URL: http://svn.debian.org/wsvn/trunk/soap-lite/debian/rules?rev=16458&op=diff
==============================================================================
--- trunk/soap-lite/debian/rules (original)
+++ trunk/soap-lite/debian/rules Tue Mar  4 05:30:45 2008
@@ -1,8 +1,6 @@
 #!/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.
+
+include /usr/share/quilt/quilt.make
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
@@ -11,24 +9,16 @@
 # always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
-include /usr/share/quilt/quilt.make
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
+PACKAGE = $(shell dh_listpackages)
+PERL   ?= /usr/bin/perl
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp: fix-scripts-stamp $(QUILT_STAMPFN)
 	dh_testdir
-
-	# Add commands to compile the package here
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
 	$(MAKE)
-	
+	$(MAKE) test
 	touch $@
 
 # remove the .pl from script names and fix their shebang lines
@@ -46,30 +36,23 @@
 clean: unpatch
 	dh_testdir
 	dh_testroot
-
 	dh_clean build-stamp install-stamp fix-scripts-stamp
 	$(RM) -f $(SCRIPTS)
-
-	# Add commands to clean up after the build process here
-	[ ! -f Makefile ] || $(MAKE) distclean
+	[ ! -f Makefile ] || (touch Makefile && $(MAKE) distclean)
 
 install: install-stamp
 install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-
-	$(MAKE) test
 	$(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 $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
-
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents \
+		$(TMP)/usr/lib/perl5
 	touch $@
 
 binary-arch:
-
+# We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
 	dh_testdir
@@ -86,8 +69,7 @@
 	dh_md5sums
 	dh_builddeb
 
-
-source diff:                                                                  
+source diff:
 	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
 binary: binary-indep binary-arch




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