From 399c4c9905d4ffecceb3c28c532960e151ccd0aa Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:42:40 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.1-1mamba;Thu May 16 2019] --- README.md | 2 ++ python-sphinxcontrib-devhelp.spec | 48 +++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 python-sphinxcontrib-devhelp.spec diff --git a/README.md b/README.md index b6409d1..5224a95 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-sphinxcontrib-devhelp +A sphinx extension which outputs Devhelp_ document. + diff --git a/python-sphinxcontrib-devhelp.spec b/python-sphinxcontrib-devhelp.spec new file mode 100644 index 0000000..06a3bed --- /dev/null +++ b/python-sphinxcontrib-devhelp.spec @@ -0,0 +1,48 @@ +Name: python-sphinxcontrib-devhelp +Version: 1.0.1 +Release: 1mamba +Summary: A sphinx extension which outputs Devhelp_ document +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sphinx.pocoo.org/ +Source: https://pypi.debian.net/sphinxcontrib-devhelp/sphinxcontrib-devhelp-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: libpython36-devel +Requires: python36 >= %python36_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n sphinxcontrib-devhelp-%{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 1.0.1-1mamba +- package created using the webbuild interface