From 66853c9693ae4946e3d821820319e10efd6255856becc99f10b8f2bcc698f020 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Sat, 1 Sep 2012 23:26:13 +0000 Subject: [PATCH 1/3] - Update to 1.8: - Dropped support for Python 2.4 The minimum supported Python version is now Python 2.5. - Fix --relocatable on systems that use lib64. Fixes #78. Thanks Branden Rolston. - Symlink some additional modules under Python 3. Fixes #194. Thanks Vinay Sajip, Ian Clelland, and Stefan Holek for the report. - Fix --relocatable when a script uses __future__ imports. Thanks Branden Rolston. - Fix a bug in the config option parser that prevented setting negative options with environemnt variables. Thanks Ralf Schmitt. - Allow setting --no-site-packages from the config file. - Use /usr/bin/multiarch-platform if available to figure out the include directory. Thanks for the patch, Mika Laitio. - Fix install_name_tool replacement to work on Python 3.X. - Handle paths of users' site-packages on Mac OS X correctly when changing the prefix. - Updated the embedded version of distribute to 0.6.28 and pip to 1.2. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=16 --- python-virtualenv.changes | 23 +++++++++++++++++++++++ python-virtualenv.spec | 2 +- virtualenv-1.7.2.tar.bz2 | 3 --- virtualenv-1.8.tar.bz2 | 3 +++ 4 files changed, 27 insertions(+), 4 deletions(-) delete mode 100644 virtualenv-1.7.2.tar.bz2 create mode 100644 virtualenv-1.8.tar.bz2 diff --git a/python-virtualenv.changes b/python-virtualenv.changes index 058285b..5d7f197 100644 --- a/python-virtualenv.changes +++ b/python-virtualenv.changes @@ -1,3 +1,26 @@ +------------------------------------------------------------------- +Sat Sep 1 23:23:40 UTC 2012 - alexandre@exatati.com.br + +- Update to 1.8: + - Dropped support for Python 2.4 The minimum supported Python + version is now Python 2.5. + - Fix --relocatable on systems that use lib64. Fixes #78. Thanks + Branden Rolston. + - Symlink some additional modules under Python 3. Fixes #194. + Thanks Vinay Sajip, Ian Clelland, and Stefan Holek for the report. + - Fix --relocatable when a script uses __future__ imports. Thanks + Branden Rolston. + - Fix a bug in the config option parser that prevented setting + negative options with environemnt variables. Thanks Ralf Schmitt. + - Allow setting --no-site-packages from the config file. + - Use /usr/bin/multiarch-platform if available to figure out the + include directory. Thanks for the patch, Mika Laitio. + - Fix install_name_tool replacement to work on Python 3.X. + - Handle paths of users' site-packages on Mac OS X correctly + when changing the prefix. + - Updated the embedded version of distribute to 0.6.28 and pip + to 1.2. + ------------------------------------------------------------------- Fri Jun 22 22:33:28 UTC 2012 - alexandre@exatati.com.br diff --git a/python-virtualenv.spec b/python-virtualenv.spec index 3cb55db..daed6e4 100644 --- a/python-virtualenv.spec +++ b/python-virtualenv.spec @@ -20,7 +20,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-virtualenv -Version: 1.7.2 +Version: 1.8 Release: 0 Url: http://www.virtualenv.org/ Summary: Virtual Python Environment builder diff --git a/virtualenv-1.7.2.tar.bz2 b/virtualenv-1.7.2.tar.bz2 deleted file mode 100644 index 189d24a..0000000 --- a/virtualenv-1.7.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f125d714ff3e202b2c3e2c3d388a1bf4a158b6c16f38bcd2d8936909b0716ab -size 1994225 diff --git a/virtualenv-1.8.tar.bz2 b/virtualenv-1.8.tar.bz2 new file mode 100644 index 0000000..9bd377a --- /dev/null +++ b/virtualenv-1.8.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872b1eed375d71d7101a736dd7eea5f8e25779204f0a06c18682d2d16de30fc1 +size 1997708 From 02d01812414b876393d88dea1308bcc208873b60f7230c2ddb8c7fe72635567d Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Mon, 3 Sep 2012 13:03:41 +0000 Subject: [PATCH 2/3] - Update to 1.8.1: * Fixed distribute version used with --never-download. Thanks michr for report and patch. * Fix creating Python 3.3 based virtualenvs by unsetting the __PYVENV_LAUNCHER__ environment variable in subprocesses. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=17 --- python-virtualenv.changes | 9 +++++++++ python-virtualenv.spec | 2 +- virtualenv-1.8.1.tar.bz2 | 3 +++ virtualenv-1.8.tar.bz2 | 3 --- 4 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 virtualenv-1.8.1.tar.bz2 delete mode 100644 virtualenv-1.8.tar.bz2 diff --git a/python-virtualenv.changes b/python-virtualenv.changes index 5d7f197..2d77081 100644 --- a/python-virtualenv.changes +++ b/python-virtualenv.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Mon Sep 3 12:55:40 UTC 2012 - alexandre@exatati.com.br + +- Update to 1.8.1: + * Fixed distribute version used with --never-download. Thanks + michr for report and patch. + * Fix creating Python 3.3 based virtualenvs by unsetting the + __PYVENV_LAUNCHER__ environment variable in subprocesses. + ------------------------------------------------------------------- Sat Sep 1 23:23:40 UTC 2012 - alexandre@exatati.com.br diff --git a/python-virtualenv.spec b/python-virtualenv.spec index daed6e4..cd8fc1a 100644 --- a/python-virtualenv.spec +++ b/python-virtualenv.spec @@ -20,7 +20,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-virtualenv -Version: 1.8 +Version: 1.8.1 Release: 0 Url: http://www.virtualenv.org/ Summary: Virtual Python Environment builder diff --git a/virtualenv-1.8.1.tar.bz2 b/virtualenv-1.8.1.tar.bz2 new file mode 100644 index 0000000..7842dd3 --- /dev/null +++ b/virtualenv-1.8.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c8e98ffd9ab29838fb97188db388738886f8ed8141408d41ca4197f24633f0 +size 1997978 diff --git a/virtualenv-1.8.tar.bz2 b/virtualenv-1.8.tar.bz2 deleted file mode 100644 index 9bd377a..0000000 --- a/virtualenv-1.8.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:872b1eed375d71d7101a736dd7eea5f8e25779204f0a06c18682d2d16de30fc1 -size 1997708 From 0423888ede84be02240f11cc92e6cc69c23649f324fa39b528ec900a293f330b Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 6 Sep 2012 11:55:57 +0000 Subject: [PATCH 3/3] - Update to 1.8.2: * Updated the included pip version to 1.2.1 to fix regressions introduced there in 1.2. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=18 --- python-virtualenv.changes | 7 +++++++ python-virtualenv.spec | 2 +- virtualenv-1.8.1.tar.bz2 | 3 --- virtualenv-1.8.2.tar.bz2 | 3 +++ 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 virtualenv-1.8.1.tar.bz2 create mode 100644 virtualenv-1.8.2.tar.bz2 diff --git a/python-virtualenv.changes b/python-virtualenv.changes index 2d77081..7250499 100644 --- a/python-virtualenv.changes +++ b/python-virtualenv.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Sep 6 11:52:11 UTC 2012 - alexandre@exatati.com.br + +- Update to 1.8.2: + * Updated the included pip version to 1.2.1 to fix regressions + introduced there in 1.2. + ------------------------------------------------------------------- Mon Sep 3 12:55:40 UTC 2012 - alexandre@exatati.com.br diff --git a/python-virtualenv.spec b/python-virtualenv.spec index cd8fc1a..087308b 100644 --- a/python-virtualenv.spec +++ b/python-virtualenv.spec @@ -20,7 +20,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-virtualenv -Version: 1.8.1 +Version: 1.8.2 Release: 0 Url: http://www.virtualenv.org/ Summary: Virtual Python Environment builder diff --git a/virtualenv-1.8.1.tar.bz2 b/virtualenv-1.8.1.tar.bz2 deleted file mode 100644 index 7842dd3..0000000 --- a/virtualenv-1.8.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5c8e98ffd9ab29838fb97188db388738886f8ed8141408d41ca4197f24633f0 -size 1997978 diff --git a/virtualenv-1.8.2.tar.bz2 b/virtualenv-1.8.2.tar.bz2 new file mode 100644 index 0000000..6d55d43 --- /dev/null +++ b/virtualenv-1.8.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f5618ec34feb96502717641bfcc6a63a15de18f15bcd41782f6df5cbfc2a5b +size 2006709