[Python-modules-commits] r8687 - in packages/pyopenssl/trunk/debian (changelog control rules)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Tue Jun 2 22:55:14 UTC 2009


    Date: Tuesday, June 2, 2009 @ 22:55:13
  Author: morph
Revision: 8687

  - bump minimum version for python packages to call install-layout=deb
  - call setup.py --install with --install-layout=deb (patch from Ubuntu)

Modified:
  packages/pyopenssl/trunk/debian/changelog
  packages/pyopenssl/trunk/debian/control
  packages/pyopenssl/trunk/debian/rules

Modified: packages/pyopenssl/trunk/debian/changelog
===================================================================
--- packages/pyopenssl/trunk/debian/changelog	2009-06-02 22:44:22 UTC (rev 8686)
+++ packages/pyopenssl/trunk/debian/changelog	2009-06-02 22:55:13 UTC (rev 8687)
@@ -11,14 +11,16 @@
     - bump Standards-Version to 3.8.1 (no changes needed)
     - fixed section for -dbg package to 'debug'
     - removed transitional packages
+    - bump minimum version for python packages to call install-layout=deb
   * debian/copyright
     - updated copyright years for upstream work
   * debian/rules
     - running tests at build time, still experimental support
     - refactored to use supported python version (and not python executables
       names) during loops
+    - call setup.py --install with --install-layout=deb (patch from Ubuntu)
 
- -- Sandro Tosi <morph at debian.org>  Wed, 03 Jun 2009 00:37:59 +0200
+ -- Sandro Tosi <morph at debian.org>  Wed, 03 Jun 2009 00:54:12 +0200
 
 pyopenssl (0.8-1) unstable; urgency=low
 

Modified: packages/pyopenssl/trunk/debian/control
===================================================================
--- packages/pyopenssl/trunk/debian/control	2009-06-02 22:44:22 UTC (rev 8686)
+++ packages/pyopenssl/trunk/debian/control	2009-06-02 22:55:13 UTC (rev 8687)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Sandro Tosi <morph at debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-all-dbg (>= 2.4.4-6), python-support (>= 0.6.4), libssl-dev (>= 0.9.8), dpatch, tex4ht, w3m, texlive-latex-base, texlive-latex-recommended
+Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.5.4-1~), python-all-dbg (>= 2.5.4-1~), python-support (>= 0.6.4), libssl-dev (>= 0.9.8), dpatch, tex4ht, w3m, texlive-latex-base, texlive-latex-recommended
 Standards-Version: 3.8.1
 Homepage: http://pyopenssl.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyopenssl/trunk/

Modified: packages/pyopenssl/trunk/debian/rules
===================================================================
--- packages/pyopenssl/trunk/debian/rules	2009-06-02 22:44:22 UTC (rev 8686)
+++ packages/pyopenssl/trunk/debian/rules	2009-06-02 22:55:13 UTC (rev 8687)
@@ -56,9 +56,9 @@
 	set -e; \
 	for py in $(PYVERS); do \
 	    echo "installing for python$$py ..."; \
- 	    python$$py setup.py install --root=$(CURDIR)/debian/python-openssl; \
+ 	    python$$py setup.py install --root=$(CURDIR)/debian/python-openssl --install-layout=deb; \
 	    echo "installing for python$$py-dbg ..."; \
-	    python$$py-dbg setup.py install --root=$(CURDIR)/debian/python-openssl-dbg; \
+	    python$$py-dbg setup.py install --root=$(CURDIR)/debian/python-openssl-dbg --install-layout=deb; \
  	done
 	find debian/python-openssl-dbg ! -type d ! -name '*_d.so' | xargs rm -f
 	find debian/python-openssl-dbg -depth -empty -exec rmdir {} \;




More information about the Python-modules-commits mailing list