r44243 - in /trunk/libembperl-perl/debian: changelog rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Sep 18 16:31:53 UTC 2009


Author: gregoa
Date: Fri Sep 18 16:31:48 2009
New Revision: 44243

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=44243
Log:
debian/rules: clean up a bit; call make mit "-j1", the upstream build
system is not parallel-build safe.

Modified:
    trunk/libembperl-perl/debian/changelog
    trunk/libembperl-perl/debian/rules

Modified: trunk/libembperl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libembperl-perl/debian/changelog?rev=44243&op=diff
==============================================================================
--- trunk/libembperl-perl/debian/changelog (original)
+++ trunk/libembperl-perl/debian/changelog Fri Sep 18 16:31:48 2009
@@ -28,6 +28,8 @@
   * Add patch cgi_pm.patch by Niko Tyni to avoid FTBFS if a newer CGI.pm is
     present at test time (closes: #521971).
   * Update debian/copyright.
+  * debian/rules: clean up a bit; call make mit "-j1", the upstream build
+    system is not parallel-build safe.
 
  -- Ryan Niebur <ryanryan52 at gmail.com>  Tue, 01 Sep 2009 21:18:46 -0700
 

Modified: trunk/libembperl-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libembperl-perl/debian/rules?rev=44243&op=diff
==============================================================================
--- trunk/libembperl-perl/debian/rules (original)
+++ trunk/libembperl-perl/debian/rules Fri Sep 18 16:31:48 2009
@@ -5,9 +5,6 @@
 # Some lines taken from debmake, by Christoph Lameter.
 
 include /usr/share/quilt/quilt.make
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
 
 # Ignore arch (tla) meta directories
 export DH_ALWAYS_EXCLUDE = ++pristine-trees:\\\\{arch\\\\}:.arch-ids:.arch-inventory:,,\\*
@@ -36,9 +33,6 @@
 
 APXS=apxs2
 
-# extra files required for builds from CVS
-#CVSEXTRAS = xs/Makefile.PL Config.pod
-
 POD2TEXT = Changes Config Faq Features FeaturesD \
    Intro IntroEmbperlObject SVN TipsAndTricks
 
@@ -50,7 +44,7 @@
 	pod2text < $< > $@
 
 config: config-stamp
-config-stamp: $(CVSEXTRAS)
+config-stamp:
 	FORCEMP=0
 	dh_testdir
 	APACHE_HDR=$(APACHE_HDR) \
@@ -62,8 +56,8 @@
 build: build-stamp
 build-stamp: $(POD2TEXT) config-stamp $(QUILT_STAMPFN)
 	dh_testdir
-	$(MAKE) OPTIMIZE="$(OPTIMIZE)" LD_RUN_PATH=""
-	$(MAKE) TESTARGS="$(TESTARGS)" test
+	$(MAKE) -j1 OPTIMIZE="$(OPTIMIZE)" LD_RUN_PATH=""
+	$(MAKE) -j1 TESTARGS="$(TESTARGS)" test
 	touch $@
 
 install: build
@@ -113,20 +107,13 @@
 	dh_testroot
 	dh_installdocs
 	dh_installexamples
-#	dh_installmenu
-#	dh_installemacsen
-#	dh_installinit
-#	dh_installcron
 	dh_installman
-#	dh_undocumented
 	dh_installchangelogs Changes
-	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_makeshlibs
 	dh_installdeb
-	dh_perl 
+	dh_perl
 	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
@@ -145,8 +132,5 @@
 	$(PERL) podsrc/s2pod.pl < $< > $@
 
 
-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