- Update to version 1.11:
+ BACKWARDS INCOMPATIBLE Switched to using wheels for the bundled copies of setuptools and pip. Using sdists is no longer supported - users supplying their own versions of pip/setuptools will need to provide wheels. + BACKWARDS INCOMPATIBLE Modified the handling of --extra-search-dirs. This option now works like pip’s --find-links option, in that it adds extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as pip install setuptools. + Upgraded pip to v1.5 + Upgraded setuptools to v1.4 - Fix non-executable script warning, symlink /usr/bin/virtualenv in buildroot (u-a warning) and ghost alternatives link on 12.3 or newer OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=31
This commit is contained in:
parent
f726a712ab
commit
613d38b9ba
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 7 13:38:42 UTC 2014 - speilicke@suse.com
|
||||
|
||||
- Update to version 1.11:
|
||||
+ BACKWARDS INCOMPATIBLE Switched to using wheels for the bundled copies of setuptools and pip. Using sdists is no longer supported - users supplying their own versions of pip/setuptools will need to provide wheels.
|
||||
+ BACKWARDS INCOMPATIBLE Modified the handling of --extra-search-dirs. This option now works like pip’s --find-links option, in that it adds extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as pip install setuptools.
|
||||
+ Upgraded pip to v1.5
|
||||
+ Upgraded setuptools to v1.4
|
||||
- Fix non-executable script warning, symlink /usr/bin/virtualenv in buildroot (u-a warning)
|
||||
and ghost alternatives link on 12.3 or newer
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 11 08:50:45 UTC 2013 - speilicke@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-virtualenv
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python-virtualenv
|
||||
Version: 1.10.1
|
||||
Version: 1.11
|
||||
Release: 0
|
||||
Url: http://www.virtualenv.org/
|
||||
Summary: Virtual Python Environment builder
|
||||
@ -62,6 +62,7 @@ libraries either).
|
||||
|
||||
%prep
|
||||
%setup -q -n virtualenv-%{version}
|
||||
sed -i "/#!.*/d" virtualenv.py # Fix non-executable script warning
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
@ -69,6 +70,9 @@ python setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
# Remove script copy and replace with symlink to please u-a:
|
||||
rm %{buildroot}%{_bindir}/virtualenv
|
||||
ln -s %{_bindir}/virtualenv-%{py_ver} %{buildroot}%{_bindir}/virtualenv
|
||||
|
||||
%pre
|
||||
# Since /usr/bin/virtualenv became ghosted to be used with update-alternatives, we have to
|
||||
@ -91,5 +95,8 @@ fi
|
||||
%ghost %{_bindir}/virtualenv
|
||||
%{_bindir}/virtualenv-%{py_ver}
|
||||
%{python_sitelib}/virtualenv*
|
||||
%if 0%{?suse_version} >= 1230
|
||||
%ghost %{_sysconfdir}/alternatives/virtualenv
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:857449d69b9ec7d058dcc2e37c53d3895432300881aa61fd2ade178a807b0aa7
|
||||
size 1325303
|
3
virtualenv-1.11.tar.gz
Normal file
3
virtualenv-1.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2cdd26de719760508ff1c440adbb058fce25a35b334a80e917d951d8f45aef6
|
||||
size 1559703
|
Loading…
Reference in New Issue
Block a user