[Python-modules-commits] r24279 - in packages/python-virtualenv/trunk/debian (6 files)

stefanor at users.alioth.debian.org stefanor at users.alioth.debian.org
Fri May 10 01:28:11 UTC 2013


    Date: Friday, May 10, 2013 @ 01:28:09
  Author: stefanor
Revision: 24279

* New upstream release.
  - debian/patches/multiarch.patch: Removed; applied upstream.
* Upload to unstable.
* Bump Standards-Version to 3.9.4.
  - Bump debhelper dependency to 8.1 for build-{arch,indep} support.
* Drop pycentral cleanup in preinst, we haven't used pycentral since before
  oldstable.

Modified:
  packages/python-virtualenv/trunk/debian/changelog
  packages/python-virtualenv/trunk/debian/compat
  packages/python-virtualenv/trunk/debian/control
  packages/python-virtualenv/trunk/debian/patches/series
Deleted:
  packages/python-virtualenv/trunk/debian/patches/multiarch.patch
  packages/python-virtualenv/trunk/debian/python-virtualenv.preinst

Modified: packages/python-virtualenv/trunk/debian/changelog
===================================================================
--- packages/python-virtualenv/trunk/debian/changelog	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/changelog	2013-05-10 01:28:09 UTC (rev 24279)
@@ -1,9 +1,19 @@
-python-virtualenv (1.8.4-3) UNRELEASED; urgency=low
+python-virtualenv (1.9.1-1) unstable; urgency=low
 
+  [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 
- -- Jakub Wilk <jwilk at debian.org>  Sun, 05 May 2013 16:03:39 +0200
+  [ Stefano Rivera ]
+  * New upstream release.
+    - debian/patches/multiarch.patch: Removed; applied upstream.
+  * Upload to unstable.
+  * Bump Standards-Version to 3.9.4.
+    - Bump debhelper dependency to 8.1 for build-{arch,indep} support.
+  * Drop pycentral cleanup in preinst, we haven't used pycentral since before
+    oldstable.
 
+ -- Stefano Rivera <stefanor at debian.org>  Fri, 10 May 2013 02:49:37 +0200
+
 python-virtualenv (1.8.4-2) experimental; urgency=low
 
   * Team upload.

Modified: packages/python-virtualenv/trunk/debian/compat
===================================================================
--- packages/python-virtualenv/trunk/debian/compat	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/compat	2013-05-10 01:28:09 UTC (rev 24279)
@@ -1 +1 @@
-7
+8

Modified: packages/python-virtualenv/trunk/debian/control
===================================================================
--- packages/python-virtualenv/trunk/debian/control	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/control	2013-05-10 01:28:09 UTC (rev 24279)
@@ -10,9 +10,9 @@
 Homepage: http://pypi.python.org/pypi/virtualenv
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-virtualenv/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-virtualenv/trunk/
-Build-Depends: debhelper (>= 7.0.50~), python (>= 2.6.6-3)
+Build-Depends: debhelper (>= 8.1), python (>= 2.6.6-3)
 Build-Depends-Indep: python-setuptools
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 
 Package: python-virtualenv
 Architecture: all

Deleted: packages/python-virtualenv/trunk/debian/patches/multiarch.patch
===================================================================
--- packages/python-virtualenv/trunk/debian/patches/multiarch.patch	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/patches/multiarch.patch	2013-05-10 01:28:09 UTC (rev 24279)
@@ -1,31 +0,0 @@
-Description: Adjust the platform sys.path entry to include the full
- multiarch triplet.  Fallback to the old way for non-multiarch aware Pythons.
-Author: Barry Warsaw <barry at python.org>
-Forwarded: https://github.com/pypa/virtualenv/pull/379
-Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695707
-
---- a/virtualenv_embedded/site.py
-+++ b/virtualenv_embedded/site.py
-@@ -584,9 +584,19 @@
-                 paths.insert(0, lib64_path)
-             else:
-                 paths.append(lib64_path)
--        # This is hardcoded in the Python executable, but relative to sys.prefix:
--        plat_path = os.path.join(sys.real_prefix, 'lib', 'python'+sys.version[:3],
--                                 'plat-%s' % sys.platform)
-+        # This is hardcoded in the Python executable, but relative to
-+        # sys.prefix.  Debian change: we need to add the multiarch triplet
-+        # here, which is where the real stuff lives.  As per PEP 421, in
-+        # Python 3.3+, this lives in sys.implementation, while in Python 2.7
-+        # it lives in sys.
-+        try:
-+            arch = getattr(sys, 'implementation', sys)._multiarch
-+        except AttributeError:
-+            # This is a non-multiarch aware Python.  Fallback to the old way.
-+            arch = sys.platform
-+        plat_path = os.path.join(sys.real_prefix, 'lib', 
-+                                 'python'+sys.version[:3],
-+                                 'plat-%s' % arch)
-         if os.path.exists(plat_path):
-             paths.append(plat_path)
-     # This is hardcoded in the Python executable, but

Modified: packages/python-virtualenv/trunk/debian/patches/series
===================================================================
--- packages/python-virtualenv/trunk/debian/patches/series	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/patches/series	2013-05-10 01:28:09 UTC (rev 24279)
@@ -2,4 +2,3 @@
 use_distribute.patch
 system-python.patch
 entry-points.patch
-multiarch.patch

Deleted: packages/python-virtualenv/trunk/debian/python-virtualenv.preinst
===================================================================
--- packages/python-virtualenv/trunk/debian/python-virtualenv.preinst	2013-05-10 01:23:03 UTC (rev 24278)
+++ packages/python-virtualenv/trunk/debian/python-virtualenv.preinst	2013-05-10 01:28:09 UTC (rev 24279)
@@ -1,18 +0,0 @@
-#!/bin/sh
-set -e
-
-if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 1.4.3-1; then
-        pycentral pkgremove python-virtualenv
-
-       for pyversion in 2.4 2.5; do
-           if [ -d /usr/lib/python$pyversion/site-packages/virtualenv-* ]; then
-               rm -rf /usr/lib/python$pyversion/site-packages/virtualenv-*
-           fi
-       done
-fi
-
-
-#DEBHELPER#
-
-exit 0
-




More information about the Python-modules-commits mailing list