2013-07-03 16:56:40 +00:00
|
|
|
%if 0%{?fedora}
|
2010-02-04 22:26:35 +00:00
|
|
|
%global with_python3 1
|
2010-01-29 03:51:36 +00:00
|
|
|
%else
|
2009-11-03 05:28:45 +00:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
2010-01-29 03:51:36 +00:00
|
|
|
%endif
|
2009-10-13 03:36:23 +00:00
|
|
|
|
2013-07-03 16:56:40 +00:00
|
|
|
%global srcname setuptools
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
Name: python-setuptools
|
2013-11-18 19:25:47 +00:00
|
|
|
Version: 1.4
|
2013-10-26 15:37:02 +00:00
|
|
|
Release: 1%{?dist}
|
2008-11-23 19:41:34 +00:00
|
|
|
Summary: Easily build and distribute Python packages
|
2005-12-27 11:38:56 +00:00
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
Group: Applications/System
|
|
|
|
License: Python or ZPLv2.0
|
2009-10-13 03:36:23 +00:00
|
|
|
URL: http://pypi.python.org/pypi/%{srcname}
|
2013-07-03 16:56:40 +00:00
|
|
|
Source0: http://pypi.python.org/packages/source/s/%{srcname}/%{srcname}-%{version}.tar.gz
|
2006-09-12 13:50:51 +00:00
|
|
|
Source1: psfl.txt
|
|
|
|
Source2: zpl.txt
|
2012-06-08 19:49:50 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2013-10-28 19:11:47 +00:00
|
|
|
# Require this so that we use a system copy of the match_hostname() function
|
|
|
|
Requires: python-backports-ssl_match_hostname
|
|
|
|
BuildRequires: python-backports-ssl_match_hostname
|
2010-06-10 22:57:40 +00:00
|
|
|
BuildRequires: python2-devel
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
%endif # if with_python3
|
2013-11-04 19:59:43 +00:00
|
|
|
# For unittests
|
|
|
|
BuildRequires: subversion
|
2005-12-27 11:38:56 +00:00
|
|
|
|
2009-11-03 05:28:45 +00:00
|
|
|
# Legacy: We removed this subpackage once easy_install no longer depended on
|
|
|
|
# python-devel
|
2013-11-04 19:59:43 +00:00
|
|
|
# Planning on removing for F21
|
|
|
|
# https://lists.fedoraproject.org/pipermail/devel/2013-November/191344.html
|
2009-11-03 05:28:45 +00:00
|
|
|
Provides: python-setuptools-devel = %{version}-%{release}
|
2009-11-03 21:03:20 +00:00
|
|
|
Obsoletes: python-setuptools-devel < 0.6.7-1
|
2009-11-03 05:28:45 +00:00
|
|
|
|
2013-07-03 16:56:40 +00:00
|
|
|
# We're now back to setuptools as the package.
|
|
|
|
# Keep the python-distribute name active for a few releases. Eventually we'll
|
|
|
|
# want to get rid of the Provides and just keep the Obsoletes
|
2010-07-03 18:58:02 +00:00
|
|
|
Provides: python-distribute = %{version}-%{release}
|
2013-07-03 16:56:40 +00:00
|
|
|
Obsoletes: python-distribute < 0.6.36-2
|
2010-07-03 18:58:02 +00:00
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
%description
|
2008-11-23 19:41:34 +00:00
|
|
|
Setuptools is a collection of enhancements to the Python distutils that allow
|
2007-08-27 23:26:53 +00:00
|
|
|
you to more easily build and distribute Python packages, especially ones that
|
|
|
|
have dependencies on other packages.
|
|
|
|
|
2013-11-04 19:59:43 +00:00
|
|
|
This package also contains the runtime components of setuptools, necessary to
|
2007-08-27 23:26:53 +00:00
|
|
|
execute the software that requires pkg_resources.py.
|
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
%package -n python3-setuptools
|
|
|
|
Summary: Easily build and distribute Python 3 packages
|
|
|
|
Group: Applications/System
|
|
|
|
|
2013-10-28 19:11:47 +00:00
|
|
|
# Note: Do not need to Require python3-backports-ssl_match_hostname because it
|
|
|
|
# has been present since python3-3.2. We do not ship python3-3.0 or
|
|
|
|
# python3-3.1 anywhere
|
|
|
|
|
2010-01-29 03:51:36 +00:00
|
|
|
%description -n python3-setuptools
|
|
|
|
Setuptools is a collection of enhancements to the Python 3 distutils that allow
|
|
|
|
you to more easily build and distribute Python 3 packages, especially ones that
|
|
|
|
have dependencies on other packages.
|
|
|
|
|
2013-11-04 19:59:43 +00:00
|
|
|
This package also contains the runtime components of setuptools, necessary to
|
2010-01-29 03:51:36 +00:00
|
|
|
execute the software that requires pkg_resources.py.
|
2010-08-10 17:26:57 +00:00
|
|
|
|
2010-01-29 03:51:36 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
%prep
|
2009-10-13 03:36:23 +00:00
|
|
|
%setup -q -n %{srcname}-%{version}
|
2010-06-10 23:53:37 +00:00
|
|
|
|
2013-07-03 16:56:40 +00:00
|
|
|
find -name '*.txt' -exec chmod -x \{\} \;
|
2010-07-03 18:58:02 +00:00
|
|
|
find . -name '*.orig' -exec rm \{\} \;
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-08-11 16:20:31 +00:00
|
|
|
rm -rf %{py3dir}
|
2010-01-29 03:51:36 +00:00
|
|
|
cp -a . %{py3dir}
|
2012-06-11 15:19:49 +00:00
|
|
|
pushd %{py3dir}
|
2013-07-03 16:56:40 +00:00
|
|
|
for file in setuptools/command/easy_install.py ; do
|
2012-05-15 15:41:21 +00:00
|
|
|
sed -i '1s|^#!python|#!%{__python3}|' $file
|
|
|
|
done
|
2012-06-11 15:19:49 +00:00
|
|
|
popd
|
2010-01-29 03:51:36 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2013-07-03 16:56:40 +00:00
|
|
|
for file in setuptools/command/easy_install.py ; do
|
2012-05-15 15:33:58 +00:00
|
|
|
sed -i '1s|^#!python|#!%{__python}|' $file
|
|
|
|
done
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%build
|
2011-10-27 00:49:04 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
pushd %{py3dir}
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2010-01-29 03:51:36 +00:00
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2007-08-27 23:26:53 +00:00
|
|
|
|
2010-01-29 03:51:36 +00:00
|
|
|
# Must do the python3 install first because the scripts in /usr/bin are
|
|
|
|
# overwritten with every setup.py install (and we want the python2 version
|
|
|
|
# to be the default for now).
|
2013-11-04 19:59:43 +00:00
|
|
|
# Change to defaulting to python3 version in F22
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
pushd %{py3dir}
|
2010-06-10 22:57:40 +00:00
|
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
2010-01-29 03:51:36 +00:00
|
|
|
|
|
|
|
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
|
|
|
|
|
|
|
|
install -p -m 0644 %{SOURCE1} %{SOURCE2} %{py3dir}
|
|
|
|
find %{buildroot}%{python3_sitelib} -name '*.exe' | xargs rm -f
|
|
|
|
chmod +x %{buildroot}%{python3_sitelib}/setuptools/command/easy_install.py
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2007-08-27 23:26:53 +00:00
|
|
|
|
2010-06-10 22:57:40 +00:00
|
|
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
2007-08-27 23:26:53 +00:00
|
|
|
|
2010-06-11 00:21:47 +00:00
|
|
|
rm -rf %{buildroot}%{python_sitelib}/setuptools/tests
|
2007-08-27 23:26:53 +00:00
|
|
|
|
2006-07-31 16:26:45 +00:00
|
|
|
install -p -m 0644 %{SOURCE1} %{SOURCE2} .
|
2010-01-29 03:51:36 +00:00
|
|
|
find %{buildroot}%{python_sitelib} -name '*.exe' | xargs rm -f
|
|
|
|
chmod +x %{buildroot}%{python_sitelib}/setuptools/command/easy_install.py
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__python} setup.py test
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py test
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%clean
|
2010-06-11 00:21:47 +00:00
|
|
|
rm -rf %{buildroot}
|
2005-12-27 11:38:56 +00:00
|
|
|
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2010-07-03 18:58:02 +00:00
|
|
|
%doc *.txt docs
|
2007-09-14 19:48:23 +00:00
|
|
|
%{python_sitelib}/*
|
2010-01-29 03:51:36 +00:00
|
|
|
%{_bindir}/easy_install
|
2010-07-21 23:06:30 +00:00
|
|
|
%{_bindir}/easy_install-2.*
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-01-29 03:51:36 +00:00
|
|
|
%files -n python3-setuptools
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc psfl.txt zpl.txt docs
|
|
|
|
%{python3_sitelib}/*
|
2010-07-21 23:06:30 +00:00
|
|
|
%{_bindir}/easy_install-3.*
|
2010-01-29 03:51:36 +00:00
|
|
|
%endif # with_python3
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-11-18 19:25:47 +00:00
|
|
|
* Mon Nov 18 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
|
|
|
|
- Update to 1.4 that gives easy_install pypi credential handling
|
|
|
|
|
2013-11-07 20:21:46 +00:00
|
|
|
* Thu Nov 7 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
|
|
|
|
- Minor upstream update to reign in overzealous warnings
|
|
|
|
|
2013-11-04 19:59:43 +00:00
|
|
|
* Mon Nov 4 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-1
|
|
|
|
- Upstream update that pulls in our security patches
|
|
|
|
|
2013-10-28 19:11:47 +00:00
|
|
|
* Mon Oct 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.7-1
|
|
|
|
- Update to newer upstream release that has our patch to the unittests
|
|
|
|
- Fix for http://bugs.python.org/issue17997#msg194950 which affects us since
|
|
|
|
setuptools copies that code. Changed to use
|
|
|
|
python-backports-ssl_match_hostname so that future issues can be fixed in
|
|
|
|
that package.
|
|
|
|
|
2013-10-26 15:37:02 +00:00
|
|
|
* Sat Oct 26 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.6-1
|
|
|
|
- Update to newer upstream release. Some minor incompatibilities listed but
|
|
|
|
they should affect few, if any consumers.
|
|
|
|
|
2013-08-04 09:42:59 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-23 19:09:10 +00:00
|
|
|
* Tue Jul 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.6-1
|
|
|
|
- Upstream update -- just fixes python-2.4 compat
|
|
|
|
|
2013-07-16 18:46:30 +00:00
|
|
|
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.5-1
|
|
|
|
- Update to 0.9.5
|
|
|
|
- package_index can handle hashes other than md5
|
|
|
|
- Fix security vulnerability in SSL certificate validation
|
|
|
|
- https://bugzilla.redhat.com/show_bug.cgi?id=963260
|
|
|
|
|
2013-07-05 20:47:52 +00:00
|
|
|
* Fri Jul 5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8-1
|
|
|
|
- Update to upstream 0.8 release. Codebase now runs on anything from
|
|
|
|
python-2.4 to python-3.3 without having to be translated by 2to3.
|
|
|
|
|
2013-07-03 16:56:40 +00:00
|
|
|
* Wed Jul 3 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.7-1
|
|
|
|
- Update to 0.7.7 upstream release
|
|
|
|
|
|
|
|
* Mon Jun 10 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-2
|
|
|
|
- Update to the setuptools-0.7 branch that merges distribute and setuptools
|
|
|
|
|
2013-04-12 01:09:47 +00:00
|
|
|
* Thu Apr 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.36-1
|
|
|
|
- Update to upstream 0.6.36. Many bugfixes
|
|
|
|
|
2013-02-14 20:21:19 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.28-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-04 00:15:33 +00:00
|
|
|
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-3
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 16:28:59 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-2
|
|
|
|
- remove rhel logic from with_python3 conditional
|
2013-04-12 01:09:47 +00:00
|
|
|
|
2012-07-23 14:57:30 +00:00
|
|
|
* Mon Jul 23 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.28-1
|
|
|
|
- New upstream release:
|
|
|
|
- python-3.3 fixes
|
|
|
|
- honor umask when setuptools is used to install other modules
|
|
|
|
|
2012-07-21 08:54:06 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.27-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-11 15:19:49 +00:00
|
|
|
* Mon Jun 11 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-2
|
|
|
|
- Fix easy_install.py having a python3 shebang in the python2 package
|
|
|
|
|
2012-06-08 19:49:50 +00:00
|
|
|
* Thu Jun 7 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-1
|
|
|
|
- Upstream bugfix
|
|
|
|
|
2012-05-15 15:20:22 +00:00
|
|
|
* Tue May 15 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-2
|
|
|
|
- Upstream bugfix
|
|
|
|
|
2012-01-14 02:06:46 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.24-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-10-27 00:49:04 +00:00
|
|
|
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-1
|
|
|
|
- Upstream bugfix
|
|
|
|
- Compile the win32 launcher binary using mingw
|
|
|
|
|
|
|
|
* Sun Aug 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.21-1
|
2011-08-21 15:21:36 +00:00
|
|
|
- Upstream bugfix release
|
|
|
|
|
2011-10-27 00:49:04 +00:00
|
|
|
* Thu Jul 14 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.19-1
|
2011-07-14 16:09:48 +00:00
|
|
|
- Upstream bugfix release
|
|
|
|
|
2011-02-22 23:56:32 +00:00
|
|
|
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-7
|
|
|
|
- Switch to patch that I got in to upstream
|
|
|
|
|
2011-02-22 18:49:12 +00:00
|
|
|
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-6
|
2011-02-22 18:41:00 +00:00
|
|
|
- Fix build on python-3.2
|
|
|
|
|
2011-02-09 06:19:24 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-08-22 11:55:47 +00:00
|
|
|
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-4
|
|
|
|
- rebuild with python3.2
|
|
|
|
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
|
|
|
|
2010-08-10 17:26:57 +00:00
|
|
|
* Tue Aug 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-3
|
|
|
|
- Update description to mention this is distribute
|
|
|
|
|
2010-07-22 12:35:39 +00:00
|
|
|
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-2
|
|
|
|
- bump for building against python 2.7
|
|
|
|
|
2010-07-22 12:20:03 +00:00
|
|
|
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-1
|
|
|
|
- update to new version
|
|
|
|
- all patches are upsteam
|
|
|
|
|
2010-07-21 23:06:30 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-7
|
|
|
|
- generalize path of easy_install-2.6 and -3.1 to -2.* and -3.*
|
|
|
|
|
2010-07-21 22:56:49 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-03 18:58:02 +00:00
|
|
|
* Sat Jul 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-5
|
|
|
|
- Upstream patch for compatibility problem with setuptools
|
|
|
|
- Minor spec cleanups
|
|
|
|
- Provide python-distribute for those who see an import distribute and need
|
|
|
|
to get the proper package.
|
|
|
|
|
2010-06-11 03:52:18 +00:00
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-4
|
|
|
|
- Fix race condition in unittests under the python-2.6.x on F-14.
|
|
|
|
|
2010-06-11 00:21:47 +00:00
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-3
|
|
|
|
- Fix few more buildroot macros
|
|
|
|
|
2010-06-10 23:53:37 +00:00
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-2
|
|
|
|
- Include data that's needed for running tests
|
|
|
|
|
2010-06-10 22:57:40 +00:00
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-1
|
|
|
|
- Update to upstream 0.6.13
|
|
|
|
- Minor specfile formatting fixes
|
|
|
|
|
2010-02-04 22:25:56 +00:00
|
|
|
* Thu Feb 04 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-3
|
|
|
|
- First build with python3 support enabled.
|
|
|
|
|
2013-10-28 19:11:47 +00:00
|
|
|
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
|
2010-01-29 03:59:49 +00:00
|
|
|
- Really disable the python3 portion
|
|
|
|
|
2013-10-28 19:11:47 +00:00
|
|
|
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
|
2010-01-29 03:51:36 +00:00
|
|
|
- Update the python3 portions but disable for now.
|
|
|
|
- Update to 0.6.10
|
|
|
|
- Remove %%pre scriptlet as the file has a different name than the old
|
|
|
|
package's directory
|
|
|
|
|
|
|
|
* Tue Jan 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-4
|
|
|
|
- Fix install to make /usr/bin/easy_install the py2 version
|
|
|
|
- Don't need python3-tools since the library is now in the python3 package
|
|
|
|
- Few other changes to cleanup style
|
|
|
|
|
2013-10-28 19:11:47 +00:00
|
|
|
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
|
2010-01-29 03:51:36 +00:00
|
|
|
- add python3 subpackage
|
|
|
|
|
2009-12-15 17:52:32 +00:00
|
|
|
* Mon Dec 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-1
|
|
|
|
- New upstream bugfix release.
|
|
|
|
|
2009-12-14 05:44:12 +00:00
|
|
|
* Sun Dec 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-2
|
|
|
|
- Test rebuild
|
|
|
|
|
2009-11-16 17:48:49 +00:00
|
|
|
* Mon Nov 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-1
|
|
|
|
- Update to 0.6.8.
|
|
|
|
- Fix directory => file transition when updating from setuptools-0.6c9.
|
|
|
|
|
2009-11-03 21:03:20 +00:00
|
|
|
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-2
|
|
|
|
- Fix duplicate inclusion of files.
|
|
|
|
- Only Obsolete old versions of python-setuptools-devel
|
|
|
|
|
2009-11-03 05:28:45 +00:00
|
|
|
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-1
|
|
|
|
- Move easy_install back into the main package as the needed files have been
|
|
|
|
moved from python-devel to the main python package.
|
|
|
|
- Update to 0.6.7 bugfix.
|
|
|
|
|
2009-10-18 05:32:38 +00:00
|
|
|
* Fri Oct 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
|
|
|
|
- Upstream bugfix release.
|
|
|
|
|
2009-10-13 03:36:23 +00:00
|
|
|
* Mon Oct 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1
|
|
|
|
- First build from the distribute codebase -- distribute-0.6.4.
|
|
|
|
- Remove svn patch as upstream has chosen to go with an easier change for now.
|
|
|
|
|
2009-07-26 21:03:38 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-14 14:20:53 +00:00
|
|
|
* Tue Jul 14 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-4
|
|
|
|
- Apply SVN-1.6 versioning patch (rhbz #511021)
|
|
|
|
|
2009-02-26 23:24:56 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|