88 lines
2.1 KiB
RPMSpec
88 lines
2.1 KiB
RPMSpec
%global srcname cppy
|
|
|
|
Name: python-%{srcname}
|
|
Version: 1.2.1
|
|
Release: 1
|
|
Summary: C++ headers for C extension development
|
|
|
|
License: BSD
|
|
URL: https://github.com/nucleic/cppy
|
|
Source0: https://files.pythonhosted.org/packages/c5/7e/6cc5acd93752ee52d2f0423046072a2ce3ae16dfcd44373b9fe2a0222204/%{srcname}-%{version}.tar.gz
|
|
Patch0: fix-cppy-version.patch
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3dist(setuptools)
|
|
BuildRequires: python3dist(pytest)
|
|
|
|
%description
|
|
A small C++ header library which makes it easier to write Python extension
|
|
modules. The primary feature is a PyObject smart pointer which automatically
|
|
handles reference counting and provides convenience methods for performing
|
|
common object operations.
|
|
|
|
|
|
%package -n python3-%{srcname}
|
|
Summary: %{summary}
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
%description -n python3-%{srcname}
|
|
A small C++ header library which makes it easier to write Python extension
|
|
modules. The primary feature is a PyObject smart pointer which automatically
|
|
handles reference counting and provides convenience methods for performing
|
|
common object operations.
|
|
|
|
|
|
%package -n python-%{srcname}-doc
|
|
Summary: cppy documentation
|
|
|
|
BuildRequires: python3dist(sphinx)
|
|
BuildRequires: python3dist(sphinx-rtd-theme) python3-pip
|
|
|
|
%description -n python-%{srcname}-doc
|
|
Documentation for cppy
|
|
|
|
|
|
%prep
|
|
%autosetup -n %{srcname}-%{version} -p1
|
|
|
|
# Remove bundled egg-info
|
|
rm -rf %{srcname}.egg-info
|
|
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
# generate html docs
|
|
PYTHONPATH=${PWD} sphinx-build-3 docs/source html
|
|
# remove the sphinx-build leftovers
|
|
rm -rf html/.{doctrees,buildinfo}
|
|
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
|
|
%check
|
|
PYTHONPATH=%{buildroot}%{python3_sitelib} \
|
|
pytest-3 tests
|
|
|
|
|
|
%files -n python3-%{srcname}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python3_sitelib}/%{srcname}
|
|
%{python3_sitelib}/%{srcname}-%{version}-py*.egg-info
|
|
|
|
%files -n python-%{srcname}-doc
|
|
%doc html
|
|
%license LICENSE
|
|
|
|
|
|
%changelog
|
|
* Tue Aug 02 2022 fushanqing <fushanqing@kylinos.cn> - 1.2.1-1
|
|
- update to 1.2.1
|
|
|
|
* Fri Jul 01 2022 wangkai <wangkai385@h-partners.com> 1.2.0-1
|
|
- Package init
|