2005-12-27 11:38:56 +00:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
|
|
|
|
Name: python-setuptools
|
2007-09-14 19:48:23 +00:00
|
|
|
Version: 0.6c7
|
|
|
|
Release: 1%{?dist}
|
2005-12-27 11:38:56 +00:00
|
|
|
Summary: Download, build, install, upgrade, and uninstall Python packages
|
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
Group: Applications/System
|
|
|
|
License: Python or ZPLv2.0
|
2005-12-27 11:38:56 +00:00
|
|
|
URL: http://peak.telecommunity.com/DevCenter/setuptools
|
2006-12-06 00:23:50 +00:00
|
|
|
Source0: http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-%{version}.tar.gz
|
2006-09-12 13:50:51 +00:00
|
|
|
Source1: psfl.txt
|
|
|
|
Source2: zpl.txt
|
2005-12-27 11:38:56 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python-devel
|
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
%description
|
|
|
|
setuptools is a collection of enhancements to the Python distutils that allow
|
|
|
|
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.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Download, install, upgrade, and uninstall Python packages
|
|
|
|
Group: Development/Languages
|
2007-06-10 22:25:58 +00:00
|
|
|
Requires: python-devel
|
2007-08-27 23:26:53 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2007-06-10 22:25:58 +00:00
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
%description devel
|
2005-12-27 11:38:56 +00:00
|
|
|
setuptools is a collection of enhancements to the Python distutils that allow
|
|
|
|
you to more easily build and distribute Python packages, especially ones that
|
|
|
|
have dependencies on other packages.
|
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
This package contains the components necessary to build and install software
|
|
|
|
requiring setuptools.
|
|
|
|
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n setuptools-%{version}
|
2006-12-06 00:23:50 +00:00
|
|
|
chmod -x *.txt
|
2006-06-28 15:39:31 +00:00
|
|
|
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
|
|
|
|
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2007-08-27 23:26:53 +00:00
|
|
|
%check
|
|
|
|
%{__python} setup.py test
|
|
|
|
|
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2006-06-28 15:39:31 +00:00
|
|
|
%{__python} setup.py install -O1 --skip-build \
|
2006-09-12 13:50:51 +00:00
|
|
|
--root $RPM_BUILD_ROOT \
|
|
|
|
--single-version-externally-managed
|
2007-08-27 23:26:53 +00:00
|
|
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{python_sitelib}/setuptools/tests
|
|
|
|
|
2006-07-31 16:26:45 +00:00
|
|
|
install -p -m 0644 %{SOURCE1} %{SOURCE2} .
|
2006-06-28 15:39:31 +00:00
|
|
|
find $RPM_BUILD_ROOT%{python_sitelib} -name '*.exe' | xargs rm -f
|
2006-12-06 00:23:50 +00:00
|
|
|
find $RPM_BUILD_ROOT%{python_sitelib} -name '*.txt' | xargs chmod -x
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{python_sitelib}/setuptools/command/easy_install.py
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2007-08-27 23:26:53 +00:00
|
|
|
%doc psfl.txt zpl.txt pkg_resources.txt
|
2007-09-14 19:48:23 +00:00
|
|
|
%{python_sitelib}/*
|
|
|
|
%exclude %{python_sitelib}/easy_install*
|
|
|
|
%exclude %{python_sitelib}/setuptools/command
|
2007-08-27 23:26:53 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc psfl.txt zpl.txt EasyInstall.txt README.txt api_tests.txt setuptools.txt
|
2007-09-14 19:48:23 +00:00
|
|
|
%{python_sitelib}/easy_install*
|
|
|
|
%{python_sitelib}/setuptools/command
|
2007-08-27 23:26:53 +00:00
|
|
|
%{_bindir}/*
|
2006-06-28 15:39:31 +00:00
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
|
|
|
|
%changelog
|
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
|
|
|
|
|
2005-12-27 11:38:56 +00:00
|
|
|
* Sat Dec 24 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a8-1
|
|
|
|
- Initial RPM release
|