[Python-modules-commits] r23753 - in packages/pytest/trunk/debian (4 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Fri Mar 22 09:59:40 UTC 2013


    Date: Friday, March 22, 2013 @ 09:59:39
  Author: laarmen-guest
Revision: 23753

* Adjust the shebang replacement regexp in postinst and rtinstall.
  Thanks to Roderich Schupp.
* Remove the doc build directory in the clean target (Closes: #702117)

Modified:
  packages/pytest/trunk/debian/changelog
  packages/pytest/trunk/debian/python-pytest.rtinstall
  packages/pytest/trunk/debian/python3-pytest.rtinstall
  packages/pytest/trunk/debian/rules

Modified: packages/pytest/trunk/debian/changelog
===================================================================
--- packages/pytest/trunk/debian/changelog	2013-03-21 23:19:46 UTC (rev 23752)
+++ packages/pytest/trunk/debian/changelog	2013-03-22 09:59:39 UTC (rev 23753)
@@ -1,7 +1,9 @@
 pytest (2.3.4-1~exp2) UNRELEASED; urgency=low
 
   * Fix the version detection regexp to be less inclusive (Closes: #703351)
-  * Adjust the shebang replacement regexp in postinst. Thanks to Roderich Schupp.
+  * Adjust the shebang replacement regexp in postinst and rtinstall.
+    Thanks to Roderich Schupp.
+  * Remove the doc build directory in the clean target (Closes: #702117)
 
  -- Simon Chopin <chopin.simon at gmail.com>  Wed, 20 Mar 2013 12:49:01 +0100
 

Modified: packages/pytest/trunk/debian/python-pytest.rtinstall
===================================================================
--- packages/pytest/trunk/debian/python-pytest.rtinstall	2013-03-21 23:19:46 UTC (rev 23752)
+++ packages/pytest/trunk/debian/python-pytest.rtinstall	2013-03-22 09:59:39 UTC (rev 23753)
@@ -3,5 +3,5 @@
 PYVERSION="${2##*python}"
 if [ ! -e "/usr/bin/py.test-$PYVERSION" ]; then
     cp /usr/bin/py.test /usr/bin/py.test-$PYVERSION
-    sed -i "s,#!/usr/bin/python,#!/usr/bin/$2," /usr/bin/py.test-$PYVERSION
+    sed -i "s,#! */usr/bin/python,#! */usr/bin/$2," /usr/bin/py.test-$PYVERSION
 fi

Modified: packages/pytest/trunk/debian/python3-pytest.rtinstall
===================================================================
--- packages/pytest/trunk/debian/python3-pytest.rtinstall	2013-03-21 23:19:46 UTC (rev 23752)
+++ packages/pytest/trunk/debian/python3-pytest.rtinstall	2013-03-22 09:59:39 UTC (rev 23753)
@@ -3,5 +3,5 @@
 PYVERSION="${2##*python}"
 if [ ! -e "/usr/bin/py.test-$PYVERSION" ]; then
     cp /usr/bin/py.test-3 /usr/bin/py.test-$PYVERSION
-    sed -i "s,#!/usr/bin/python3,#!/usr/bin/$2," /usr/bin/py.test-$PYVERSION
+    sed -i "s,#! */usr/bin/python3,#! */usr/bin/$2," /usr/bin/py.test-$PYVERSION
 fi

Modified: packages/pytest/trunk/debian/rules
===================================================================
--- packages/pytest/trunk/debian/rules	2013-03-21 23:19:46 UTC (rev 23752)
+++ packages/pytest/trunk/debian/rules	2013-03-22 09:59:39 UTC (rev 23753)
@@ -48,7 +48,7 @@
 	dh_install
 
 override_dh_auto_clean:
-	rm -rf doc/_build build pytest.egg-info
+	rm -rf doc/en/_build build pytest.egg-info
 	find . \( -name '*.py[oc]' -o -name __pycache__ \) -delete
 	dh_auto_clean
 




More information about the Python-modules-commits mailing list