[Pkg-haskell-commits] r1228 - in /packages/haskell-uulib/trunk/debian: changelog rules

arjan at users.alioth.debian.org arjan at users.alioth.debian.org
Wed May 7 15:15:20 UTC 2008


Author: arjan
Date: Wed May  7 15:15:20 2008
New Revision: 1228

URL: http://svn.debian.org/wsvn/pkg-haskell/?sc=1&rev=1228
Log:
 r192 at reddwarf:  arjan | 2008-05-01 19:35:27 +0200
 * debian/rules:
   - split-objs was not enabled in the previous upload as it breaks the
     profiling build
   - Split build-stamp target in a build-arch-stamp and a
     build-indep-stamp so the build daemons do not try to build the
     architecture independent stuff. (Closes: #478899)

Modified:
    packages/haskell-uulib/trunk/debian/changelog
    packages/haskell-uulib/trunk/debian/rules

Modified: packages/haskell-uulib/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-uulib/trunk/debian/changelog?rev=1228&op=diff
==============================================================================
--- packages/haskell-uulib/trunk/debian/changelog (original)
+++ packages/haskell-uulib/trunk/debian/changelog Wed May  7 15:15:20 2008
@@ -1,3 +1,14 @@
+haskell-uulib (0.9.5-3~pre1) unstable; urgency=low
+
+  * debian/rules:
+    - split-objs was not enabled in the previous upload as it breaks the
+      profiling build
+    - Split build-stamp target in a build-arch-stamp and a
+      build-indep-stamp so the build daemons do not try to build the
+      architecture independent stuff. (Closes: #478899)
+
+ -- Arjan Oosting <arjan at debian.org>  Thu, 01 May 2008 19:29:41 +0200
+
 haskell-uulib (0.9.5-2) unstable; urgency=low
 
   * configure: removed this cruft.

Modified: packages/haskell-uulib/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-uulib/trunk/debian/rules?rev=1228&op=diff
==============================================================================
--- packages/haskell-uulib/trunk/debian/rules (original)
+++ packages/haskell-uulib/trunk/debian/rules Wed May  7 15:15:20 2008
@@ -47,9 +47,15 @@
 	dh_haskell_configure $(CONFIGURE_FLAGS)
 	touch $@
 
-build: build-stamp
-build-stamp: configure-stamp
-	dh_haskell_build
+build: build-arch
+build-arch: build-arch-stamp
+build-arch-stamp: configure-stamp
+	dh_haskell_build -s
+	touch $@
+
+build-indep: build-indep-stamp
+build-indep-stamp: configure-stamp
+	dh_haskell_build -i
 	touch $@
 
 clean: clean-patched unpatch
@@ -63,7 +69,7 @@
 	dh_clean setup Setup.hi Setup.o .*config* config.log config.status
 
 install: install-arch install-indep
-install-arch: build-stamp
+install-arch: build-arch-stamp
 	dh_testdir 
 	dh_testroot
 	dh_clean -k -s -Xdebian/tmp
@@ -71,7 +77,7 @@
 	dh_haskell_install -s
 	dh_install -s
 
-install-indep: build-stamp
+install-indep: build-indep-stamp
 	dh_testdir 
 	dh_testroot
 	dh_clean -k -i -Xdebian/tmp
@@ -105,4 +111,4 @@
 	$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
 
 binary: binary-arch binary-indep
-.PHONY: binary binary-arch binary-indep build clean clean-patched configure install install-arch install-indep 
+.PHONY: binary binary-arch binary-indep build build-arch build-indep clean clean-patched configure install install-arch install-indep 




More information about the Pkg-haskell-commits mailing list