package created using the webbuild interface [release 1.0.2-1mamba;Thu May 16 2019]

This commit is contained in:
Silvan Calarco 2024-01-05 16:43:12 +01:00
parent 3127ea1cc4
commit 78760ca9b1
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-sphinxcontrib-qthelp
A sphinx extension which outputs QtHelp document.

View File

@ -0,0 +1,48 @@
Name: python-sphinxcontrib-qthelp
Version: 1.0.2
Release: 1mamba
Summary: A sphinx extension which outputs QtHelp document
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://sphinx.pocoo.org/
Source: https://pypi.debian.net/sphinxcontrib-qthelp/sphinxcontrib-qthelp-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: libpython36-devel
Requires: python36 >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n sphinxcontrib-qthelp-%{version}
%build
CFLAGS="%{optflags}" %{__python36} setup.py build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python36} setup.py install \
-O1 --skip-build \
--root="%{buildroot}" \
--install-headers=%{python36_inc} \
--install-lib=%{python36_sitearch} \
--record=%{name}.filelist
sed -i "s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%doc LICENSE
%changelog
* Thu May 16 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.2-1mamba
- package created using the webbuild interface