[Python-modules-commits] r26629 - in packages/plainbox/trunk/debian (rules)

zyga-guest at users.alioth.debian.org zyga-guest at users.alioth.debian.org
Sun Dec 1 19:39:08 UTC 2013


    Date: Sunday, December 1, 2013 @ 19:39:07
  Author: zyga-guest
Revision: 26629

Remove set -e; ...

Modified:
  packages/plainbox/trunk/debian/rules

Modified: packages/plainbox/trunk/debian/rules
===================================================================
--- packages/plainbox/trunk/debian/rules	2013-12-01 19:34:49 UTC (rev 26628)
+++ packages/plainbox/trunk/debian/rules	2013-12-01 19:39:07 UTC (rev 26629)
@@ -7,25 +7,23 @@
 # Build sphinx html documentation. Generate manual pages for plainbox and
 # plainbox-trusted-launcher-1 using help2man
 override_dh_auto_build:
-	set -e; \
-		dh_auto_build --buildsystem=pybuild; \
-		python3 setup.py build_sphinx; \
-		help2man \
-			--name="swiss army knife development tool for functional test developers" \
-			--section=1 \
-			--source=Debian \
-			--no-discard-stderr \
-			--no-info \
-			--output plainbox.1 \
-			"python3 -m plainbox"; \
-		help2man \
-			--name="trusted launcher plainbox v1 job providers" \
-			--section=1 \
-			--source=Debian \
-			--no-discard-stderr \
-			--no-info \
-			--output plainbox-trusted-launcher-1.1 \
-			"python3 -m plainbox.impl.secure.launcher1";
+	python3 setup.py build_sphinx
+	help2man \
+		--name="swiss army knife development tool for functional test developers" \
+		--section=1 \
+		--source=Debian \
+		--no-discard-stderr \
+		--no-info \
+		--output plainbox.1 \
+		"python3 -m plainbox"
+	help2man \
+		--name="trusted launcher plainbox v1 job providers" \
+		--section=1 \
+		--source=Debian \
+		--no-discard-stderr \
+		--no-info \
+		--output plainbox-trusted-launcher-1.1 \
+		"python3 -m plainbox.impl.secure.launcher1"
 
 # Remove the generated man pages and any compiled python3 modules.
 # Remove the plainbox.vendor.funcsigs module (this works in tandem with the
@@ -38,10 +36,9 @@
 # Override dh_install to ensure that /usr/bin/plainbox is in the 
 # plainbox package and not in the python3-plainbox package.
 override_dh_install:
-	set -e; \
-		dh_install; \
-		mkdir -p debian/plainbox/usr/bin; \
-		mv debian/python3-plainbox/usr/bin/plainbox debian/plainbox/usr/bin/
+	dh_install
+	mkdir -p debian/plainbox/usr/bin
+	mv debian/python3-plainbox/usr/bin/plainbox debian/plainbox/usr/bin/
 
 # Disable testing while the bug mentioned below is unfixed.
 override_dh_auto_test:




More information about the Python-modules-commits mailing list