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