55 lines
1.7 KiB
RPMSpec
55 lines
1.7 KiB
RPMSpec
# sitelib for noarch packages, sitearch for others (remove the unneeded one)
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
Name: python-decorator
|
|
Version: 2.2.0
|
|
Release: 2%{?dist}
|
|
Summary: Module to simplify usage of decorators
|
|
|
|
Group: Development/Languages
|
|
License: BSD
|
|
URL: http://www.phyast.pitt.edu/~micheles/python/documentation.html
|
|
Source0: http://www.phyast.pitt.edu/~micheles/python/decorator-%{version}.zip
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-setuptools-devel
|
|
|
|
%description
|
|
The aim of the decorator module is to simplify the usage of decorators for
|
|
the average programmer, and to popularize decorators usage giving examples
|
|
of useful decorators, such as memoize, tracing, redirecting_stdout, locked,
|
|
etc. The core of this module is a decorator factory called decorator.
|
|
|
|
%prep
|
|
%setup -q -c -n decorator-%{version}
|
|
chmod a-x *
|
|
%{__sed} -i 's/\r//' README.txt
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%check
|
|
export PYTHONPATH=$RPM_BUILD_ROOT/%{python_sitelib}
|
|
%{__python} doctester.py documentation.txt
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README.txt CHANGES.txt documentation.*
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.2.0-2
|
|
- Rebuild for Python 2.6
|
|
|
|
* Thu Dec 20 2007 Toshio Kuratomi <toshio@fedoraproject.org> - 2.2.0-1
|
|
- Initial Fedora Build
|