python-pretend/python-pretend.spec

76 lines
1.6 KiB
RPMSpec
Raw Normal View History

2019-12-14 21:12:46 +08:00
%bcond_without python3
Name: python-pretend
Version: 1.0.8
Release: 15
Summary: A library to make stubbing with Python easier
License: BSD
URL: https://github.com/alex/pretend
Source0: https://pypi.python.org/packages/source/p/pretend/pretend-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel python2-setuptools
%if %{with python3}
BuildRequires: python3-devel python3-setuptools
%endif
%description
Pretend is a library to make stubbing with Python easier.
%package -n python2-pretend
Summary: A library to make stubbing with Python easier
License: BSD
%{?python_provide:%python_provide python2-pretend}
%description -n python2-pretend
Pretend is a library to make stubbing with Python easier.
%if %{with python3}
%package -n python3-pretend
Summary: A library to make stubbing with Python easier
License: BSD
%{?python_provide:%python_provide python3-pretend}
%description -n python3-pretend
Pretend is a library to make stubbing with Python easier.
%endif
%prep
%autosetup -n pretend-%{version} -p1
%build
%py2_build
%if %{with python3}
%py3_build
%endif
%install
%py2_install
%if %{with python3}
%py3_install
%endif
%files -n python2-pretend
%defattr(-,root,root)
%license LICENSE.rst
%doc PKG-INFO README.rst
%{python2_sitelib}/*
%if %{with python3}
%files -n python3-pretend
%defattr(-,root,root)
%license LICENSE.rst
%doc PKG-INFO README.rst
%{python3_sitelib}/*
%endif
%changelog
* Mon Dec 9 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.0.8-15
- Package init