70 lines
1.6 KiB
RPMSpec
70 lines
1.6 KiB
RPMSpec
|
|
%global _name decorator
|
||
|
|
%global _description The goal of the decorator module is to make it easy to define signature-preserving \
|
||
|
|
function decorators and decorator factories. It also includes an implementation of multiple dispatch and \
|
||
|
|
other niceties (please check the docs).
|
||
|
|
|
||
|
|
Name: python-%{_name}
|
||
|
|
Version: 4.3.0
|
||
|
|
Release: 2
|
||
|
|
Summary: Simplify the signature-preserving function decorators and decorator factories
|
||
|
|
License: BSD
|
||
|
|
URL: https://github.com/micheles/decorator
|
||
|
|
Source0: https://github.com/micheles/decorator/archive/%{version}.tar.gz#/%{_name}-%{version}.tar.gz
|
||
|
|
BuildArch: noarch
|
||
|
|
|
||
|
|
%description
|
||
|
|
%{_description}
|
||
|
|
|
||
|
|
%package -n python2-decorator
|
||
|
|
Summary: %{summary} in python2
|
||
|
|
BuildRequires: python2-devel python2-setuptools
|
||
|
|
%{?python_provide:%python_provide python2-decorator}
|
||
|
|
|
||
|
|
%description -n python2-decorator
|
||
|
|
%{_description}
|
||
|
|
|
||
|
|
%package -n python3-decorator
|
||
|
|
Summary: %{summary} in python3
|
||
|
|
BuildRequires: python3-devel python3-setuptools
|
||
|
|
%{?python_provide:%python_provide python3-decorator}
|
||
|
|
|
||
|
|
%description -n python3-decorator
|
||
|
|
%{_description}
|
||
|
|
|
||
|
|
%package_help
|
||
|
|
|
||
|
|
%prep
|
||
|
|
%autosetup -n %{_name}-%{version} -p1
|
||
|
|
|
||
|
|
|
||
|
|
%build
|
||
|
|
%py2_build
|
||
|
|
%py3_build
|
||
|
|
|
||
|
|
%install
|
||
|
|
%py2_install
|
||
|
|
%py3_install
|
||
|
|
|
||
|
|
%check
|
||
|
|
%{__python2} setup.py test
|
||
|
|
%{__python3} setup.py test
|
||
|
|
|
||
|
|
%files -n python2-%{_name}
|
||
|
|
%doc docs/README.rst
|
||
|
|
%license LICENSE.txt
|
||
|
|
%{python2_sitelib}/*
|
||
|
|
|
||
|
|
%files -n python3-%{_name}
|
||
|
|
%doc docs/README.rst
|
||
|
|
%license LICENSE.txt
|
||
|
|
%{python3_sitelib}/__pycache__/*
|
||
|
|
%{python3_sitelib}/*info/
|
||
|
|
%{python3_sitelib}/*.py
|
||
|
|
|
||
|
|
%files help
|
||
|
|
%doc CHANGES.md
|
||
|
|
|
||
|
|
%changelog
|
||
|
|
* Tue Sep 10 2019 openEuler Buildteam <buildteam@openeuler.org> - 4.3.0-2
|
||
|
|
- Package init
|