2010-01-29 03:51:36 +00:00
|
|
|
%if 0%{?fedora} > 12 || 0%{?rhel} > 6
|
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
|
|
|
|
|
|
|
%global srcname distribute
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
Name: python-setuptools
|
2010-06-10 22:57:40 +00:00
|
|
|
Version: 0.6.13
|
2010-06-11 00:21:47 +00:00
|
|
|
Release: 3%{?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}
|
|
|
|
Source0: http://pypi.python.org/packages/source/d/%{srcname}/%{srcname}-%{version}.tar.gz
|
2006-09-12 13:50:51 +00:00
|
|
|
Source1: psfl.txt
|
|
|
|
Source2: zpl.txt
|
2010-06-10 23:53:37 +00:00
|
|
|
Patch0: distribute-0.6.13-tests.patch
|
2005-12-27 11:38:56 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
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
|
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
|
|
|
|
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
|
|
|
|
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.
|
|
|
|
|
|
|
|
This package contains the runtime components of setuptools, necessary to
|
|
|
|
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
|
|
|
|
|
|
|
|
%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.
|
|
|
|
|
|
|
|
This package contains the runtime components of setuptools, necessary to
|
|
|
|
execute the software that requires pkg_resources.py.
|
|
|
|
%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
|
|
|
%patch0 -p1
|
|
|
|
|
2008-06-22 02:18:08 +00:00
|
|
|
find -name '*.txt' | xargs chmod -x
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
%if 0%{?with_python3}
|
2010-02-01 23:17:55 +00:00
|
|
|
rm -rf %{pyver}
|
2010-01-29 03:51:36 +00:00
|
|
|
cp -a . %{py3dir}
|
|
|
|
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python}|'
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
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).
|
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,-)
|
2009-10-13 03:36:23 +00:00
|
|
|
%doc psfl.txt zpl.txt docs
|
2007-09-14 19:48:23 +00:00
|
|
|
%{python_sitelib}/*
|
2010-01-29 03:51:36 +00:00
|
|
|
%{_bindir}/easy_install
|
|
|
|
%{_bindir}/easy_install-2.6
|
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}/*
|
|
|
|
%{_bindir}/easy_install-3.1
|
|
|
|
%endif # with_python3
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%changelog
|
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.
|
|
|
|
|
2010-01-29 03:59:49 +00:00
|
|
|
* Thu Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
|
|
|
|
- Really disable the python3 portion
|
|
|
|
|
2010-01-29 03:51:36 +00:00
|
|
|
* Thu Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
|
|
|
|
- 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
|
|
|
|
|
|
|
|
* Thu Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
|
|
|
|
- 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
|
|
|
|
|
2008-11-29 04:19:13 +00:00
|
|
|
* Fri Nov 28 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6c9-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-11-23 19:41:34 +00:00
|
|
|
* Sun Nov 23 2008 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-1
|
|
|
|
- Update to 0.6c9
|
|
|
|
- Small fixes to URL, summary and description
|
|
|
|
|
2008-06-22 02:18:08 +00:00
|
|
|
* Sat Jun 21 2008 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c8-1
|
|
|
|
- Update to 0.6c8
|
|
|
|
- Accept small tweaks from Gareth Armstrong
|
|
|
|
|
2007-09-24 18:56:40 +00:00
|
|
|
* Mon Sep 24 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c7-2
|
|
|
|
- Move pretty much everything back into runtime in order to avoid more
|
|
|
|
brokenness than we're trying to address with these fixes.
|
|
|
|
|
2007-09-14 19:48:23 +00:00
|
|
|
* Fri Sep 14 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c7-1
|
|
|
|
- Upstream 0.6c7
|
|
|
|
- Move some things from devel into runtime, in order to not break other
|
|
|
|
projects.
|
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
* Sat Aug 18 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c6-2
|
|
|
|
- Make license tag conform to the new Licensing Guidelines
|
|
|
|
- Move everything except pkg_resources.py into a separate -devel package
|
|
|
|
so we avoid bundling python-devel when it's not required (#251645)
|
|
|
|
- Do not package tests
|
|
|
|
|
2007-06-10 22:25:58 +00:00
|
|
|
* Sun Jun 10 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c6-1
|
|
|
|
- Upstream 0.6c6
|
|
|
|
- Require python-devel (#240707)
|
|
|
|
|
2007-01-28 15:07:55 +00:00
|
|
|
* Sun Jan 28 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c5-1
|
|
|
|
- Upstream 0.6c5 (known bugs, but the promised 0.6c6 is taking too long)
|
2006-12-09 14:48:29 +00:00
|
|
|
|
2006-12-06 00:23:50 +00:00
|
|
|
* Tue Dec 05 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c3-1
|
|
|
|
- Upstream 0.6c3 (#218540, thanks to Michel Alexandre Salim for the patch)
|
|
|
|
|
2006-09-12 13:50:51 +00:00
|
|
|
* Tue Sep 12 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c2-1
|
|
|
|
- Upstream 0.6c2
|
|
|
|
- Ghostbusting
|
|
|
|
|
2006-07-31 16:26:45 +00:00
|
|
|
* Mon Jul 31 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c1-2
|
|
|
|
- Set perms on license files (#200768)
|
|
|
|
|
2006-07-22 14:01:38 +00:00
|
|
|
* Sat Jul 22 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c1-1
|
|
|
|
- Version 0.6c1
|
|
|
|
|
2006-06-28 15:39:31 +00:00
|
|
|
* Wed Jun 28 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6b3-1
|
|
|
|
- Taking over from Ignacio
|
|
|
|
- Version 0.6b3
|
|
|
|
- Ghost .pyo files in sitelib
|
|
|
|
- Add license files
|
|
|
|
- Remove manual python-abi, since we're building FC4 and up
|
|
|
|
- Kill .exe files
|
|
|
|
|
2006-02-15 22:12:31 +00:00
|
|
|
* Wed Feb 15 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a10-1
|
|
|
|
- Upstream update
|
|
|
|
|
2006-01-17 00:36:11 +00:00
|
|
|
* Mon Jan 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a9-1
|
|
|
|
- Upstream update
|