%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-which Version: 1.1.0 Release: 2%{?_dist_release} Summary: Small which replacement that can be used as a Python module Group: Development/Languages License: MIT URL: http://trentm.com/projects/which/ Source0: http://trentm.com/downloads/which/%{version}/which-%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel %description which.py is a small which replacement. It has the following features: * it can print all matches on the PATH; * it can note "near misses" on the PATH (e.g. files that match but may not, say, have execute permissions); and * it can be used as a Python module. %prep %setup -q -n which-%{version} %build %{__python} setup.py build %install %__rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT # add a script that calls the python module cat << \EOF > which-python #!/bin/sh python -m which $@ EOF %__mkdir_p $RPM_BUILD_ROOT%{_bindir} %__install -m0755 -p which-python $RPM_BUILD_ROOT%{_bindir} %clean %__rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE.txt README.txt TODO.txt %{_bindir}/which-python %{python_sitelib}/which.py* %{python_sitelib}/which-*.egg-info %changelog * Sun Feb 19 2012 Yoji TOYODA - 1.1.0-2 - rebuild with python-2.7.2 * Thu Jul 14 2011 Munehiro Yamamoto - 1.1.0-1 - initial build * Wed Feb 09 2011 Fedora Release Engineering - 1.1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Thu Jul 22 2010 David Malcolm - 1.1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild * Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sat Nov 29 2008 Ignacio Vazquez-Abrams - 1.1.0-4 - Rebuild for Python 2.6 * Mon Jan 7 2008 Patrice Dumas - 1.1.0-3 - ship egg file * Sun Oct 28 2007 - 1.1.0-2 - Remove ref to GNU * Sat Oct 27 2007 - 1.1.0-1 - Package for fedora * Thu Jul 19 2007 Patrice Dumas 1.1.0-1 - initial packaging