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