0c63f5
Name:           python-virtualenv
a53777
Version:        20.4.4
a53777
Release:        1%{?dist}
0c63f5
Summary:        Tool to create isolated Python environments
0c63f5
0c63f5
License:        MIT
a53777
URL:            http://pypi.python.org/pypi/virtualenv
a53777
Source0:        %{pypi_source virtualenv}
a53777
a53777
# Add /usr/share/python-wheels to extra_search_dir
a53777
Patch1: rpm-wheels.patch
0c63f5
0c63f5
BuildArch:      noarch
0c63f5
a53777
BuildRequires:  python3-appdirs
a53777
BuildRequires:  python3-devel
a53777
BuildRequires:  python3-distlib
a53777
BuildRequires:  python3-filelock
a53777
BuildRequires:  python3-setuptools
a53777
BuildRequires:  python3-setuptools_scm
a53777
BuildRequires:  python3-six
a53777
a53777
# docs need sphinx >= 3
a53777
# docs need towncrier and that is not yet available when bootstrapping Python
a53777
%bcond_with docs
a53777
%if %{with docs}
a53777
BuildRequires:  python3-sphinx
a53777
BuildRequires:  python3-sphinx_rtd_theme
a53777
BuildRequires:  python3-towncrier
a53777
%endif
5dfcf4
a53777
%bcond_with tests
a53777
%if %{with tests}
a53777
BuildRequires:  fish
a53777
BuildRequires:  gcc
a53777
BuildRequires:  python3-flaky
a53777
BuildRequires:  python3-packaging
a53777
BuildRequires:  python3-pytest
a53777
BuildRequires:  python3-pytest-mock
a53777
BuildRequires:  python3-pytest-randomly
a53777
BuildRequires:  python3-pytest-timeout
a53777
BuildRequires:  xonsh
0c63f5
%endif
0c63f5
a53777
# RPM installed wheels
a53777
BuildRequires:  python-pip-wheel
a53777
BuildRequires:  python-setuptools-wheel
a53777
BuildRequires:  python-wheel-wheel
0c63f5
0c63f5
%description
0c63f5
virtualenv is a tool to create isolated Python environments. virtualenv
0c63f5
is a successor to workingenv, and an extension of virtual-python. It is
0c63f5
written by Ian Bicking, and sponsored by the Open Planning Project. It is
0c63f5
licensed under an MIT-style permissive license.
0c63f5
0c63f5
a53777
%package -n     python3-virtualenv
a53777
Summary:        Tool to create isolated Python environments
0c63f5
a53777
Requires:       python3-appdirs
a53777
Requires:       python3-distlib
a53777
Requires:       python3-filelock
a53777
Requires:       python3-setuptools
a53777
Requires:       python3-six
a53777
Obsoletes:      python3-virtualenv-python26 < 16.6
a53777
%{?python_provide:%python_provide python3-virtualenv}
a53777
a53777
# Provide "virtualenv" for convenience
a53777
Provides:       virtualenv = %{version}-%{release}
a53777
a53777
# RPM installed wheels
a53777
Requires:       python-pip-wheel
a53777
Requires:       python-setuptools-wheel
a53777
Requires:       python-wheel-wheel
a53777
a53777
%description -n python3-virtualenv
a53777
virtualenv is a tool to create isolated Python environments. virtualenv
a53777
is a successor to workingenv, and an extension of virtual-python. It is
a53777
written by Ian Bicking, and sponsored by the Open Planning Project. It is
a53777
licensed under an MIT-style permissive license
a53777
a53777
a53777
%if %{with docs}
a53777
%package -n     python-virtualenv-doc
a53777
Summary:        Documentation for python virtualenv
0c63f5
a53777
%description -n python-virtualenv-doc
a53777
Documentation for python virtualenv.
0c63f5
%endif
0c63f5
0c63f5
a53777
%prep
a53777
%autosetup -p1 -n virtualenv-%{version}
a53777
%{__sed} -i -e "1s|#!/usr/bin/env python||" tasks/update_embedded.py
a53777
a53777
# Remove the wheels provided by RPM packages
a53777
rm src/virtualenv/seed/wheels/embed/pip-*
a53777
rm src/virtualenv/seed/wheels/embed/setuptools-*
a53777
rm src/virtualenv/seed/wheels/embed/wheel-*
a53777
a53777
test ! -f src/virtualenv/seed/embed/wheels/*.whl
0c63f5
a53777
%build
a53777
# Build code
a53777
%{py3_build}
5dfcf4
a53777
# Build docs
a53777
%if %{with docs}
a53777
PYTHONPATH=src %{python3} setup.py build_sphinx
a53777
rm -f build/sphinx/html/.buildinfo
a53777
%endif
0c63f5
a53777
%install
a53777
%{py3_install}
a53777
a53777
%if %{with tests}
a53777
%check
a53777
mkdir tmp_path
a53777
ln -s $(realpath %{__python3}) tmp_path/python
a53777
export PATH="$(pwd)/tmp_path:$PATH"
a53777
unset SOURCE_DATE_EPOCH
a53777
a53777
# Skip tests which requires internet or some extra dependencies
a53777
# Requires internet:
a53777
# - test_download_*
a53777
# Uses disabled functionalities around bundled wheels:
a53777
# - test_wheel_*
a53777
# - test_seed_link_via_app_data
a53777
# - test_base_bootstrap_via_pip_invoke
a53777
# - test_acquire_find_wheel.py (whole file)
a53777
# Uses disabled functionalities around automatic updates:
a53777
# - test_periodic_update.py (whole file)
a53777
PIP_CERT=/etc/pki/tls/certs/ca-bundle.crt \
a53777
%pytest -vv -k "not test_acquire_find_wheel and not test_periodic_update and not test_wheel_ and not test_download_ and not test_base_bootstrap_via_pip_invoke and not test_seed_link_via_app_data"
a53777
a53777
rm -r tmp_path
a53777
%endif
0c63f5
a53777
%files -n python3-virtualenv
a53777
%license LICENSE
a53777
%doc docs/*rst README.md
a53777
%{_bindir}/virtualenv
a53777
%{python3_sitelib}/virtualenv/
a53777
%{python3_sitelib}/virtualenv-*.egg-info/
0c63f5
a53777
%if %{with docs}
a53777
%files -n python-virtualenv-doc
0c63f5
%doc build/sphinx/*
0c63f5
%endif
0c63f5
0c63f5
0c63f5
%changelog
a53777
* Wed Apr 21 2021 Lumír Balhar <lbalhar@redhat.com> - 20.4.4-1
a53777
- Update to 20.4.4
a53777
  Resolves: rhbz#1951515
a53777
a53777
* Wed Mar 17 2021 Lumír Balhar <lbalhar@redhat.com> - 20.4.3-1
a53777
- Update to 20.4.3
a53777
Resolves: rhbz#1939428
a53777
a53777
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.4.0-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a53777
a53777
* Tue Jan 19 2021 Lumír Balhar <lbalhar@redhat.com> - 20.4.0-1
a53777
- Update to 20.4.0 (#1915682)
a53777
a53777
* Tue Jan 12 2021 Lumír Balhar <lbalhar@redhat.com> - 20.3.0-1
a53777
- Update to 20.3.0 (#1914641)
a53777
a53777
* Mon Nov 23 2020 Lumír Balhar <lbalhar@redhat.com> - 20.2.1-1
a53777
- Update to 20.2.1 (#1900253)
a53777
a53777
* Wed Nov 18 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1.0-1
a53777
- Update to 20.1.0 (#1891297)
a53777
a53777
* Fri Oct 02 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.32-1
a53777
- Update to 20.0.32 (#1884449)
a53777
a53777
* Thu Sep 03 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.31-1
a53777
- Update to 20.0.31 (#1869352)
a53777
a53777
* Thu Aug 06 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.30-1
a53777
- Update to 20.0.30 (#1862562)
a53777
a53777
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.0.28-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a53777
a53777
* Fri Jul 24 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.28-1
a53777
- Update to 20.0.28
a53777
- Fixes rhbz#1860272
a53777
a53777
* Thu Jul 23 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.27-1
a53777
- Update to 20.0.27 (#1854551)
a53777
a53777
* Tue Jun 23 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.25-1
a53777
- Update to 20.0.25
a53777
a53777
* Mon Jun 15 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0.23-1
a53777
- Update to 20.0.23 (#1742034)
a53777
a53777
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 16.7.10-2
a53777
- Rebuilt for Python 3.9
a53777
a53777
* Tue Feb 25 2020 Miro Hrončok <mhroncok@redhat.com> - 16.7.10-1
a53777
- Update to 16.7.10
a53777
- Explicitly require setuptools < 44 with Python 3.4
a53777
a53777
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 16.7.3-3
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a53777
a53777
* Tue Sep 03 2019 Miro Hrončok <mhroncok@redhat.com> - 16.7.3-2
a53777
- Prefer wheels bundled in Python's ensurepip module over the RPM built ones
a53777
- This allows continuing support for Python 3.4 in Fedora 32+
a53777
a53777
* Wed Aug 21 2019 Charalampos Stratakis <cstratak@redhat.com> - 16.7.3-1
a53777
- Update to 16.7.3 (#1742034)
a53777
a53777
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 16.6.1-3
a53777
- Rebuilt for Python 3.8
a53777
a53777
* Mon Jul 29 2019 Miro Hrončok <mhroncok@redhat.com> - 16.6.1-2
a53777
- Drop python2-virtualenv
a53777
a53777
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 16.6.1-1
a53777
- Update to 16.6.1 (#1699031)
a53777
- No more Python 2.6 or Jython support
a53777
- Drop runtime dependency on pythonX-devel
a53777
a53777
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.0-7
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a53777
a53777
* Thu Dec 13 2018 Miro Hrončok <mhroncok@redhat.com> - 16.0.0-6
a53777
- Don't fail on missing certifi's cert bundle (#1655253)
a53777
a53777
* Wed Aug 15 2018 Miro Hrončok <mhroncok@redhat.com> - 16.0.0-5
a53777
- Use wheels from RPM packages
a53777
- Put wheels needed for Python 2.6 into a subpackage
a53777
- Only have one /usr/bin/virtualenv (#1599422)
a53777
- Provide "virtualenv" (#1502670)
a53777
a53777
* Wed Jul 18 2018 Miro Hrončok <mhroncok@redhat.com> - 16.0.0-4
a53777
- Reintroduce support for Python 2.6 (#1602347)
a53777
- Add missing bundled provides
a53777
a53777
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.0-3
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a53777
a53777
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 16.0.0-2
a53777
- Rebuilt for Python 3.7
a53777
a53777
* Thu May 17 2018 Steve Milner <smilner@redhat.com> - 16.0.0-1
a53777
- Updated for upstream release.
a53777
a53777
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 15.1.0-5
a53777
- Update Python 2 dependency declarations to new packaging standards
a53777
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
a53777
a53777
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-4
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a53777
a53777
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 15.1.0-3
a53777
- Cleanup spec file conditionals
a53777
a53777
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a53777
a53777
* Mon Jun 12 2017 Steve Milner <smilner@redhat.com> - 15.1.0-1
a53777
- Update to 15.1.0 per https://bugzilla.redhat.com/show_bug.cgi?id=1454962
a53777
a53777
* Fri Feb 17 2017 Michal Cyprian <mcyprian@redhat.com> - 15.0.3-6
a53777
- Check if exec_dir exists before listing it's content during venv create process
a53777
a53777
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.0.3-5
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a53777
a53777
* Wed Jan  4 2017 Steve Milner <smilner@redhat.com> - 15.0.3-4
a53777
- Updated version binaries per discussion at bz#1385240.
a53777
a53777
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 15.0.3-3
a53777
- Rebuild for Python 3.6
a53777
a53777
* Mon Oct 17 2016 Steve Milner <smilner@redhat.com> - 15.0.3-2
a53777
- Added MAJOR symlinks per bz#1385240.
a53777
a53777
* Mon Aug  8 2016 Steve Milner <smilner@redhat.com> - 15.0.3-1
a53777
- Update for upstream release.
a53777
a53777
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.0.6-2
a53777
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a53777
a53777
* Sun Feb 21 2016 Orion Poplawski <orion@cora.nwra.com> - 14.0.6-1
a53777
- Update to 14.0.6
a53777
a53777
* Tue Feb 2 2016 Orion Poplawski <orion@cora.nwra.com> - 13.1.2-4
a53777
- Modernize spec
a53777
- Fix python3 package file ownership
a53777
a53777
* Wed Dec 2 2015 Orion Poplawski <orion@cora.nwra.com> - 13.1.2-3
a53777
- Move documentation to separate package (bug #1219139)
a53777
a53777
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 13.1.2-2
a53777
- Rebuilt for Python3.5 rebuild
a53777
a53777
* Mon Aug 24 2015 Steve Milner <smilner@redhat.com> - 13.1.2-1
a53777
- Update for upstream release.
a53777
a53777
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12.0.7-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a53777
a53777
* Mon Mar 16 2015 Matej Stuchlik <mstuchli@redhat.com> - 12.0.7-1
a53777
- Update to 12.0.7
a53777
a53777
* Thu Jan 15 2015 Matthias Runge <mrunge@redhat.com> - 1.11.6-2
a53777
- add a python3-package, thanks to Matej Stuchlik (rhbz#1179150)
a53777
a53777
* Wed Jul 09 2014 Matthias Runge <mrunge@redhat.com> - 1.11.6-1
a53777
- update to 1.11.6:
a53777
  Upstream updated setuptools to 3.6, updated pip to 1.5.6
a53777
a53777
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.1-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a53777
a53777
* Thu Aug 15 2013 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.10.1-1
a53777
- Upstream upgraded pip to v1.4.1
a53777
- Upstream upgraded setuptools to v0.9.8 (fixes CVE-2013-1633)
a53777
a53777
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-2
a53777
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0c63f5
0c63f5
* Tue May 14 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.1-1
0c63f5
- Update to upstream 1.9.1 because of security issues with the bundled
0c63f5
  python-pip in older releases.  This is just a quick fix until a
0c63f5
  python-virtualenv maintainer can unbundle the python-pip package
0c63f5
  see: https://bugzilla.redhat.com/show_bug.cgi?id=749378
0c63f5
0c63f5
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.2-2
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0c63f5
0c63f5
* Tue Aug 14 2012 Steve Milner <me@stevemilner.org> - 1.7.2-1
0c63f5
- Update for upstream bug fixes.
0c63f5
- Added path for versioned binary.
0c63f5
- Patch no longer required.
0c63f5
0c63f5
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1.2-3
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0c63f5
0c63f5
* Wed Mar 14 2012 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.7.1.2-1
0c63f5
- Update for upstream bug fixes.
0c63f5
- Added patch for sphinx building
0c63f5
0c63f5
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0c63f5
0c63f5
* Tue Dec 20 2011 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.7-1
0c63f5
- Update for https://bugzilla.redhat.com/show_bug.cgi?id=769067
0c63f5
0c63f5
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0c63f5
0c63f5
* Sat Oct 16 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.5.1-1
0c63f5
- Added _weakrefset requirement for Python 2.7.1.
0c63f5
- Add support for PyPy.
0c63f5
- Uses a proper temporary dir when installing environment requirements.
0c63f5
- Add --prompt option to be able to override the default prompt prefix.
0c63f5
- Add fish and csh activate scripts.
0c63f5
0c63f5
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.8-4
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
0c63f5
a53777
* Wed Jul  7 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-3
0c63f5
- Fixed EPEL installation issue from BZ#611536
0c63f5
a53777
* Wed Jun  9 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-2
0c63f5
- Only replace the python shebang on the first line (Robert Buchholz)
0c63f5
a53777
* Wed Apr 28 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.8-1
0c63f5
- update pip to 0.7
0c63f5
- move regen-docs into bin/
0c63f5
- Fix #31, make activate_this.py work on Windows (use Lib/site-packages)
0c63f5
unset PYTHONHOME envioronment variable -- first step towards fixing the PYTHONHOME issue; see e.g. https://bugs.launchpad.net/virtualenv/+bug/290844
0c63f5
- unset PYTHONHOME in the (Unix) activate script (and reset it in deactivate())
0c63f5
- use the activate.sh in virtualenv.py via running bin/rebuild-script.py
0c63f5
- add warning message if PYTHONHOME is set
0c63f5
0c63f5
* Fri Apr 2 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.6-1
0c63f5
- allow script creation without setuptools
0c63f5
- fix problem with --relocate when bin/ has subdirs (fixes #12)
0c63f5
- Allow more flexible .pth file fixup
0c63f5
- make nt a required module, along with posix. it may not be a builtin module on jython
0c63f5
- don't mess with PEP 302-supplied __file__, from CPython, and merge in a small startup optimization for Jython, from Jython
0c63f5
0c63f5
* Tue Dec 22 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.3-1
0c63f5
- Updated for upstream release.
0c63f5
0c63f5
* Thu Nov 12 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.4.2-1
0c63f5
- Updated for upstream release.
0c63f5
0c63f5
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-2
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0c63f5
0c63f5
* Tue Apr 28 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.3-1
0c63f5
- Updated for upstream release.
0c63f5
0c63f5
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-2
0c63f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0c63f5
0c63f5
* Thu Dec 25 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.2-1
0c63f5
- Updated for upstream release.
0c63f5
0c63f5
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.1-4
0c63f5
- Rebuild for Python 2.6
0c63f5
0c63f5
* Mon Dec  1 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-3
0c63f5
- Added missing dependencies.
0c63f5
0c63f5
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.1-2
0c63f5
- Rebuild for Python 2.6
0c63f5
0c63f5
* Fri Nov 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-1
0c63f5
- Updated for upstream release
0c63f5
0c63f5
* Sun Sep 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3-1
0c63f5
- Updated for upstream release
0c63f5
0c63f5
* Sat Aug 30 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.2-1
0c63f5
- Updated for upstream release
0c63f5
0c63f5
* Fri Aug 29 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-3
0c63f5
- Updated from review notes
0c63f5
0c63f5
* Thu Aug 28 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-2
0c63f5
- Updated from review notes
0c63f5
0c63f5
* Tue Aug 26 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1-1
0c63f5
- Initial Version