123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
- Name: python-setuptools
- Version: 0.6c11
- Release: 1%{?_dist_release}
- Summary: Download, build, install, upgrade, and uninstall Python packages
- Summary(ja): Python パッケージのダウンロード、ビルド、インストール、アップグレードおよびアンインストール用ツール
- Group: Development/Tools
- License: PSFL/ZPL
- URL: http://peak.telecommunity.com/DevCenter/setuptools
- Source0: http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-%{version}.tar.gz
- Source1: psfl.txt
- Source2: zpl.txt
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: python-devel
- %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.
- %description -l ja
- setuptools は Python distutils の拡張機能を集めたツールです。
- このツールにより Python パッケージの構築や配布が簡単に行えるように
- なります。特に他のパッケージに依存しているパッケージを扱う際に便利
- です。
- %prep
- %setup -q -n setuptools-%{version}
- find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python}|'
- %build
- CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
- %install
- rm -rf $RPM_BUILD_ROOT
- %{__python} setup.py install -O1 --skip-build \
- --root $RPM_BUILD_ROOT \
- --single-version-externally-managed
- install -p -m 0644 %{SOURCE1} %{SOURCE2} .
- find $RPM_BUILD_ROOT%{python_sitelib} -name '*.exe' | xargs rm -f
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc *.txt
- %{_bindir}/*
- %{python_sitelib}/*
- %changelog
- * Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 0.6c11-1
- - new upstream release
- * Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 0.6c9-2
- - rebuild with python-2.6
- * Sun Dec 07 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.6c9-1
- - new upstream release
- - add japanese summary and description
- * Mon Jul 21 2008 Shu KONNO <owa@bg.wakwak.com> - 0.6c3-1vl5
- - rebuilt with python-2.5.2
- - applied new versioning policy
- * Sat Nov 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.6c3-1vl2
- - rebuilt for Vine Linux 4.0
- - changed Group to Development/Tools
- * Wed Nov 15 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
- - Refurbished for VineLinux3.2
- * Tue Sep 12 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c2-1
- - Upstream 0.6c2
- - Ghostbusting
- * Mon Jul 31 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c1-2
- - Set perms on license files (#200768)
- * Sat Jul 22 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c1-1
- - Version 0.6c1
- * 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
- * Wed Feb 15 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a10-1
- - Upstream update
- * Mon Jan 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a9-1
- - Upstream update
- * Sat Dec 24 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.6a8-1
- - Initial RPM release
|