8f740c
# python2X and python3X are built form the same module, so we need a conditional
8f740c
# for python[23] bits the state of the conditional is not important in the spec,
8f740c
# it is set in modulemd
8f740c
%bcond_without python2
8f740c
%bcond_without python3
8f740c
%bcond_with python36_module
8f740c
8f740c
Name:           python-virtualenv
8f740c
Version:        15.1.0
f46d0a
Release:        22%{?dist}
8f740c
Summary:        Tool to create isolated Python environments
8f740c
8f740c
Group:          Development/Languages
8f740c
License:        MIT
8f740c
URL:            http://pypi.python.org/pypi/virtualenv
8f740c
Source0:        http://pypi.python.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
8f740c
8f740c
# virtualenv -p "/usr/bin/python3" venv fails if there are not packages installed
8f740c
# under /usr/local/lib/pythonX.Y/site-packages. Check if exec_dir exists before
8f740c
# listing it's content.
8f740c
Patch0: check-exec_dir.patch
8f740c
8f740c
# Don't fail on missing certifi's cert
8f740c
# https://github.com/pypa/virtualenv/pull/1252
8f740c
Patch1: dont-fail-on-missing-certifi-cert.patch
8f740c
8f740c
# Changes related to RPM wheels:
8f740c
# 1. Drop support for Python 2.6 because we don't have it in RHEL 8 and we don't want to
8f740c
#    bundle prehistoric wheels
8f740c
# 2. Use wheels from /usr/share/python{2,3,38,39,...}-wheels
8f740c
# 3. Add support for pip 19.3-ish by importing pip.main() from different locations
8f740c
# 4. Use the importlib module rather than deprecated imp on Python 3
8f740c
Patch2: rpm-wheels.patch
8f740c
f46d0a
# Fixes for Python 3.10+
f46d0a
# Backports from upstream virtualenv 16.7:
f46d0a
#
f46d0a
#  Adjusts the code to accept Python minor versions with two (or more) digits
f46d0a
#   https://github.com/pypa/virtualenv/commit/311a909c10
f46d0a
#
f46d0a
#  Use sysconfig.get_default_scheme() where available (added in Python 3.10)
f46d0a
#   https://github.com/pypa/virtualenv/commit/b4aef0a53b
f46d0a
#
f46d0a
#  Remove universal newline flag (removed in Python 3.11)
f46d0a
#   https://github.com/pypa/virtualenv/commit/8b23c8296f
f46d0a
#
f46d0a
# Backports re-created from scratch, due to changes in formatting.
f46d0a
#
f46d0a
# Run bin/rebuild-script.py in %%build to regenerate the base64 embedded files!
f46d0a
Patch3: python3.10.patch
f46d0a
f46d0a
# The way virtualenv < 20 creates virtual environments
f46d0a
# is not compatible with Python 3.11+ "frozen standard library modules"
f46d0a
# https://docs.python.org/3.11/whatsnew/3.11.html#frozen-imports-static-code-objects
f46d0a
#
f46d0a
# This patch makes virtualenv explicitly error and suggest venv instead.
f46d0a
# See https://bugzilla.redhat.com/show_bug.cgi?id=2165702
f46d0a
Patch4: python3.11-error.patch
f46d0a
8f740c
BuildArch:      noarch
8f740c
8f740c
%if %{with python2}
8f740c
BuildRequires:  python2-devel
8f740c
BuildRequires:  python2-setuptools
8f740c
8f740c
# RPM installed wheels
8f740c
BuildRequires:  python2-pip-wheel
8f740c
BuildRequires:  python2-setuptools-wheel
8f740c
BuildRequires:  python2-wheel-wheel
8f740c
%endif # with python2
8f740c
8f740c
%if %{with python3}
8f740c
BuildRequires:  python3-sphinx
8f740c
BuildRequires:  python3-setuptools
8f740c
8f740c
# RPM installed wheels
8f740c
BuildRequires:  python3-pip-wheel
8f740c
BuildRequires:  python3-setuptools-wheel
8f740c
BuildRequires:  python3-wheel-wheel
8f740c
8f740c
%if %{with python36_module}
8f740c
BuildRequires:  python36-devel
8f740c
BuildRequires:  python36-rpm-macros
8f740c
%else
8f740c
BuildRequires:  python3-devel
8f740c
%endif
8f740c
%endif # with python3
8f740c
8f740c
%description
8f740c
virtualenv is a tool to create isolated Python environments. virtualenv
8f740c
is a successor to workingenv, and an extension of virtual-python. It is
8f740c
written by Ian Bicking, and sponsored by the Open Planning Project. It is
8f740c
licensed under an MIT-style permissive license.
8f740c
8f740c
8f740c
%if %{with python2}
8f740c
%package -n     python2-virtualenv
8f740c
Summary:        Tool to create isolated Python environments
8f740c
8f740c
Requires:       python2-setuptools
8f740c
Requires:       python2-devel
8f740c
8f740c
# RPM installed wheels
8f740c
Requires:       python2-pip-wheel
8f740c
Requires:       python2-setuptools-wheel
8f740c
Requires:       python2-wheel-wheel
8f740c
Requires:       (python3-wheel-wheel if python36)
8f740c
Requires:       (python38-wheel-wheel if python38)
8f740c
Requires:       (python39-wheel-wheel if python39)
8f740c
8f740c
%{?python_provide:%python_provide python2-virtualenv}
8f740c
8f740c
%description -n python2-virtualenv
8f740c
virtualenv is a tool to create isolated Python environments. virtualenv
8f740c
is a successor to workingenv, and an extension of virtual-python. It is
8f740c
written by Ian Bicking, and sponsored by the Open Planning Project. It is
8f740c
licensed under an MIT-style permissive license
8f740c
%endif
8f740c
8f740c
8f740c
%if %{with python3}
8f740c
%package -n     python-virtualenv-doc
8f740c
Summary:        Documentation for python virtualenv
8f740c
8f740c
%description -n python-virtualenv-doc
8f740c
Documentation for python virtualenv.
8f740c
8f740c
%package -n     python3-virtualenv
8f740c
Summary:        Tool to create isolated Python environments
8f740c
8f740c
Requires:       python3-setuptools
8f740c
8f740c
# RPM installed wheels
8f740c
Requires:       python3-pip-wheel
8f740c
Requires:       python3-setuptools-wheel
8f740c
Requires:       python3-wheel-wheel
8f740c
Requires:       (python2-wheel-wheel if python2)
8f740c
Requires:       (python38-wheel-wheel if python38)
8f740c
Requires:       (python39-wheel-wheel if python39)
8f740c
4a311f
# Require alternatives version that implements the --keep-foreign flag
4a311f
Requires(postun): alternatives >= 1.19.1-1
8f740c
# For alternatives
8f740c
Requires:       python36
8f740c
Requires(post): python36
8f740c
Requires(postun): python36
4a311f
8f740c
%if %{with python36_module}
8f740c
Requires:       python36-devel
8f740c
%else
8f740c
Requires:       python3-devel
8f740c
%endif
8f740c
%{?python_provide:%python_provide python3-virtualenv}
8f740c
Provides:       virtualenv = %{version}-%{release}
8f740c
8f740c
%description -n python3-virtualenv
8f740c
virtualenv is a tool to create isolated Python environments. virtualenv
8f740c
is a successor to workingenv, and an extension of virtual-python. It is
8f740c
written by Ian Bicking, and sponsored by the Open Planning Project. It is
8f740c
licensed under an MIT-style permissive license
8f740c
%endif # with python3
8f740c
8f740c
8f740c
%prep
8f740c
%setup -q -n virtualenv-%{version}
8f740c
%{__sed} -i -e "1s|#!/usr/bin/env python||" virtualenv.py 
8f740c
8f740c
%patch0 -p1
8f740c
%patch1 -p1
8f740c
%patch2 -p1
f46d0a
%patch3 -p1
f46d0a
%patch4 -p1
8f740c
8f740c
# Remove the wheels provided by RPM packages and argparse as it's only required for python 2.6
8f740c
rm virtualenv_support/pip-*
8f740c
rm virtualenv_support/setuptools-*
8f740c
rm virtualenv_support/wheel-*
8f740c
rm virtualenv_support/argparse-*
8f740c
8f740c
%build
f46d0a
# Regenerate base64 embedded files
f46d0a
%{?with_python2:%{__python2} bin/rebuild-script.py}
f46d0a
%{?with_python3:%{__python3} bin/rebuild-script.py}
f46d0a
8f740c
# Build code
8f740c
%{?with_python2:%{py2_build}}
8f740c
8f740c
# Build docs on Fedora
8f740c
%if %{with python3}
8f740c
%{__python3} setup.py build_sphinx
8f740c
rm -f build/sphinx/html/.buildinfo
8f740c
8f740c
%{py3_build}
8f740c
8f740c
# Build docs on Fedora
8f740c
%{__python3} setup.py build_sphinx
8f740c
rm -f build/sphinx/html/.buildinfo
8f740c
%endif # with python3
8f740c
8f740c
%install
8f740c
%if %{with python3}
8f740c
%{py3_install}
8f740c
# rename binaries to use python3
8f740c
mv %{buildroot}/%{_bindir}/virtualenv %{buildroot}/%{_bindir}/py3-virtualenv
8f740c
# The versioned 3.x script was removed from upstream. Add it back.
8f740c
cp %{buildroot}/%{_bindir}/py3-virtualenv %{buildroot}/%{_bindir}/virtualenv-%{python3_version}
8f740c
# For alternatives
8f740c
touch %{buildroot}/%{_bindir}/virtualenv-3
8f740c
touch %{buildroot}/%{_bindir}/virtualenv
8f740c
%endif # with python3
8f740c
8f740c
%if %{with python2}
8f740c
%{py2_install}
8f740c
# The versioned 2.x script was removed from upstream. Add it back.
8f740c
cp %{buildroot}/%{_bindir}/virtualenv %{buildroot}/%{_bindir}/virtualenv-%{python2_version}
8f740c
mv %{buildroot}/%{_bindir}/virtualenv %{buildroot}/%{_bindir}/virtualenv-2
8f740c
%endif
8f740c
8f740c
8f740c
%if %{with python3}
8f740c
%post -n python3-virtualenv
8f740c
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
8f740c
    %{_bindir}/virtualenv-3 \
8f740c
    virtualenv-3 \
8f740c
    %{_bindir}/virtualenv-%{python3_version}
8f740c
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
8f740c
    %{_bindir}/virtualenv \
8f740c
    virtualenv \
8f740c
    %{_bindir}/virtualenv-3
8f740c
8f740c
%postun -n python3-virtualenv
8f740c
# Do this only during uninstall process (not during update)
8f740c
if [ $1 -eq 0 ]; then
4a311f
    alternatives --keep-foreign --remove-slave python3 %{_bindir}/python%{python3_version} \
8f740c
        virtualenv-3
4a311f
    alternatives --keep-foreign --remove-slave python3 %{_bindir}/python%{python3_version} \
8f740c
        virtualenv
8f740c
fi
8f740c
%endif
8f740c
8f740c
8f740c
%if %{with python2}
8f740c
%files -n python2-virtualenv
8f740c
%license LICENSE.txt
8f740c
%doc docs/*rst PKG-INFO AUTHORS.txt
8f740c
8f740c
%{python2_sitelib}/*
8f740c
%{_bindir}/virtualenv-2
8f740c
%{_bindir}/virtualenv-%{python2_version}
8f740c
%endif
8f740c
8f740c
%if %{with python3}
8f740c
# Include sphinx docs on Fedora
8f740c
%files -n python-virtualenv-doc
8f740c
%doc build/sphinx/*
8f740c
8f740c
%files -n python3-virtualenv
8f740c
%license LICENSE.txt
8f740c
%doc docs/*rst PKG-INFO AUTHORS.txt
8f740c
%{_bindir}/py3-virtualenv
8f740c
%ghost %{_bindir}/virtualenv
8f740c
%ghost %{_bindir}/virtualenv-3
8f740c
%{_bindir}/virtualenv-%{python3_version}
8f740c
%{python3_sitelib}/virtualenv.py
8f740c
%{python3_sitelib}/virtualenv_support/
8f740c
%{python3_sitelib}/virtualenv-*.egg-info/
8f740c
%{python3_sitelib}/__pycache__/*
8f740c
%endif  # with python3
8f740c
8f740c
8f740c
8f740c
%changelog
f46d0a
* Wed Feb 01 2023 Miro Hrončok <mhroncok@redhat.com> - 15.1.0-22
f46d0a
- Add a custom error message when users attempt to create Python 3.11+ virtual environments
f46d0a
- Resolves: rhbz#2165702
f46d0a
4a311f
* Wed Jul 28 2021 Tomas Orsava <torsava@redhat.com> - 15.1.0-21
4a311f
- Adjusted the postun scriptlets to enable upgrading to RHEL 9
4a311f
- Resolves: rhbz#1933055
4a311f
8f740c
* Thu Mar 18 2021 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-20
8f740c
- Use python-version-specific wheels from Python modules
8f740c
Resolves: rhbz#1917971
8f740c
8f740c
* Fri Jun 21 2019 Miro Hrončok <mhroncok@redhat.com> - 15.1.0-19
8f740c
- Use wheels from RPM packages (rhbz#1659550) (rhbz#1659551)
8f740c
- Fail with a warning on Python versions < 2.7
8f740c
8f740c
* Thu Apr 25 2019 Tomas Orsava <torsava@redhat.com> - 15.1.0-18
8f740c
- Bumping due to problems with modular RPM upgrade path
8f740c
- Resolves: rhbz#1695587
8f740c
8f740c
* Fri Dec 14 2018 Miro Hrončok <mhroncok@redhat.com> - 15.1.0-17
8f740c
- Don't fail on missing certifi's cert bundle
8f740c
- Resolves: rhbz#1659440
8f740c
8f740c
* Wed Nov 28 2018 Tomas Orsava <torsava@redhat.com> - 15.1.0-16
8f740c
- Provide the package name `virtualenv` and the /usr/bin/virtualenv binary
8f740c
- Resolves: rhbz#1649958
8f740c
8f740c
* Thu Oct 04 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-15
8f740c
- Fix alternatives - post and postun sections only with python3
8f740c
- Resolves: rhbz#1633534
8f740c
8f740c
* Mon Oct 01 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-14
8f740c
- Add alternatives for virtualenv-3
8f740c
- Resolves: rhbz#1633534
8f740c
8f740c
* Wed Aug 15 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-13
8f740c
- Remove virtualenv-3 executable. This will be provided by python3 module.
8f740c
- Resolves: rhbz#1615727
8f740c
8f740c
* Wed Aug 08 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-12
8f740c
- Remove unversioned binaries from python2 subpackage
8f740c
- Resolves: rhbz#1613343
8f740c
8f740c
* Sat Aug 04 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-11
8f740c
- Fixed conditions
8f740c
8f740c
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 15.1.0-10
8f740c
- Switch python3 coditions to bcond
8f740c
8f740c
* Tue Jul 17 2018 Tomas Orsava <torsava@redhat.com> - 15.1.0-9
8f740c
- BuildRequire also python36-rpm-macros as part of the python36 module build
8f740c
8f740c
* Wed Jul 04 2018 Miro Hrončok <mhroncok@redhat.com> - 15.1.0-8
8f740c
- Add a bcond for python2
8f740c
8f740c
* Thu Jun 14 2018 Tomas Orsava <torsava@redhat.com> - 15.1.0-7
8f740c
- Switch to using Python 3 version of sphinx
8f740c
8f740c
* Mon Apr 30 2018 Tomas Orsava <torsava@redhat.com> - 15.1.0-6
8f740c
- Require the python36-devel package when building for the python36 module
8f740c
8f740c
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 15.1.0-5
8f740c
- Update Python 2 dependency declarations to new packaging standards
8f740c
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
8f740c
8f740c
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-4
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8f740c
8f740c
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 15.1.0-3
8f740c
- Cleanup spec file conditionals
8f740c
8f740c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8f740c
8f740c
* Mon Jun 12 2017 Steve Milner <smilner@redhat.com> - 15.1.0-1
8f740c
- Update to 15.1.0 per https://bugzilla.redhat.com/show_bug.cgi?id=1454962
8f740c
8f740c
* Fri Feb 17 2017 Michal Cyprian <mcyprian@redhat.com> - 15.0.3-6
8f740c
- Check if exec_dir exists before listing it's content during venv create process
8f740c
8f740c
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.0.3-5
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8f740c
8f740c
* Wed Jan  4 2017 Steve Milner <smilner@redhat.com> - 15.0.3-4
8f740c
- Updated version binaries per discussion at bz#1385240.
8f740c
8f740c
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 15.0.3-3
8f740c
- Rebuild for Python 3.6
8f740c
8f740c
* Mon Oct 17 2016 Steve Milner <smilner@redhat.com> - 15.0.3-2
8f740c
- Added MAJOR symlinks per bz#1385240.
8f740c
8f740c
* Mon Aug  8 2016 Steve Milner <smilner@redhat.com> - 15.0.3-1
8f740c
- Update for upstream release.
8f740c
8f740c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.0.6-2
8f740c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
8f740c
8f740c
* Sun Feb 21 2016 Orion Poplawski <orion@cora.nwra.com> - 14.0.6-1
8f740c
- Update to 14.0.6
8f740c
8f740c
* Tue Feb 2 2016 Orion Poplawski <orion@cora.nwra.com> - 13.1.2-4
8f740c
- Modernize spec
8f740c
- Fix python3 package file ownership
8f740c
8f740c
* Wed Dec 2 2015 Orion Poplawski <orion@cora.nwra.com> - 13.1.2-3
8f740c
- Move documentation to separate package (bug #1219139)
8f740c
8f740c
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 13.1.2-2
8f740c
- Rebuilt for Python3.5 rebuild
8f740c
8f740c
* Mon Aug 24 2015 Steve Milner <smilner@redhat.com> - 13.1.2-1
8f740c
- Update for upstream release.
8f740c
8f740c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12.0.7-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8f740c
8f740c
* Mon Mar 16 2015 Matej Stuchlik <mstuchli@redhat.com> - 12.0.7-1
8f740c
- Update to 12.0.7
8f740c
8f740c
* Thu Jan 15 2015 Matthias Runge <mrunge@redhat.com> - 1.11.6-2
8f740c
- add a python3-package, thanks to Matej Stuchlik (rhbz#1179150)
8f740c
8f740c
* Wed Jul 09 2014 Matthias Runge <mrunge@redhat.com> - 1.11.6-1
8f740c
- update to 1.11.6:
8f740c
  Upstream updated setuptools to 3.6, updated pip to 1.5.6
8f740c
8f740c
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.1-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8f740c
8f740c
* Thu Aug 15 2013 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.10.1-1
8f740c
- Upstream upgraded pip to v1.4.1
8f740c
- Upstream upgraded setuptools to v0.9.8 (fixes CVE-2013-1633)
8f740c
8f740c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8f740c
8f740c
* Tue May 14 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.1-1
8f740c
- Update to upstream 1.9.1 because of security issues with the bundled
8f740c
  python-pip in older releases.  This is just a quick fix until a
8f740c
  python-virtualenv maintainer can unbundle the python-pip package
8f740c
  see: https://bugzilla.redhat.com/show_bug.cgi?id=749378
8f740c
8f740c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.2-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8f740c
8f740c
* Tue Aug 14 2012 Steve Milner <me@stevemilner.org> - 1.7.2-1
8f740c
- Update for upstream bug fixes.
8f740c
- Added path for versioned binary.
8f740c
- Patch no longer required.
8f740c
8f740c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1.2-3
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8f740c
8f740c
* Wed Mar 14 2012 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.7.1.2-1
8f740c
- Update for upstream bug fixes.
8f740c
- Added patch for sphinx building
8f740c
8f740c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8f740c
8f740c
* Tue Dec 20 2011 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.7-1
8f740c
- Update for https://bugzilla.redhat.com/show_bug.cgi?id=769067
8f740c
8f740c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8f740c
8f740c
* Sat Oct 16 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.5.1-1
8f740c
- Added _weakrefset requirement for Python 2.7.1.
8f740c
- Add support for PyPy.
8f740c
- Uses a proper temporary dir when installing environment requirements.
8f740c
- Add --prompt option to be able to override the default prompt prefix.
8f740c
- Add fish and csh activate scripts.
8f740c
8f740c
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.8-4
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8f740c
8f740c
* Wed Jul  7 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-3
8f740c
- Fixed EPEL installation issue from BZ#611536
8f740c
8f740c
* Wed Jun  9 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-2
8f740c
- Only replace the python shebang on the first line (Robert Buchholz)
8f740c
8f740c
* Wed Apr 28 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-1
8f740c
- update pip to 0.7
8f740c
- move regen-docs into bin/
8f740c
- Fix #31, make activate_this.py work on Windows (use Lib/site-packages)
8f740c
unset PYTHONHOME envioronment variable -- first step towards fixing the PYTHONHOME issue; see e.g. https://bugs.launchpad.net/virtualenv/+bug/290844
8f740c
- unset PYTHONHOME in the (Unix) activate script (and reset it in deactivate())
8f740c
- use the activate.sh in virtualenv.py via running bin/rebuild-script.py
8f740c
- add warning message if PYTHONHOME is set
8f740c
8f740c
* Fri Apr 2 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.6-1
8f740c
- allow script creation without setuptools
8f740c
- fix problem with --relocate when bin/ has subdirs (fixes #12)
8f740c
- Allow more flexible .pth file fixup
8f740c
- make nt a required module, along with posix. it may not be a builtin module on jython
8f740c
- don't mess with PEP 302-supplied __file__, from CPython, and merge in a small startup optimization for Jython, from Jython
8f740c
8f740c
* Tue Dec 22 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.3-1
8f740c
- Updated for upstream release.
8f740c
8f740c
* Thu Nov 12 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.2-1
8f740c
- Updated for upstream release.
8f740c
8f740c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8f740c
8f740c
* Tue Apr 28 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.3-1
8f740c
- Updated for upstream release.
8f740c
8f740c
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-2
8f740c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8f740c
8f740c
* Thu Dec 25 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.2-1
8f740c
- Updated for upstream release.
8f740c
8f740c
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.1-4
8f740c
- Rebuild for Python 2.6
8f740c
8f740c
* Mon Dec  1 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-3
8f740c
- Added missing dependencies.
8f740c
8f740c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.1-2
8f740c
- Rebuild for Python 2.6
8f740c
8f740c
* Fri Nov 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-1
8f740c
- Updated for upstream release
8f740c
8f740c
* Sun Sep 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3-1
8f740c
- Updated for upstream release
8f740c
8f740c
* Sat Aug 30 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.2-1
8f740c
- Updated for upstream release
8f740c
8f740c
* Fri Aug 29 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-3
8f740c
- Updated from review notes
8f740c
8f740c
* Thu Aug 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-2
8f740c
- Updated from review notes
8f740c
8f740c
* Tue Aug 26 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-1
8f740c
- Initial Version