From 8b9790885e0359203f7e62cae0bb1edec8018dff Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:42:57 +0100 Subject: [PATCH] package created using the webbuild interface [release 4.1-1mamba;Mon Apr 10 2023] --- README.md | 2 ++ python-sphinxcontrib-jquery.spec | 52 ++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 python-sphinxcontrib-jquery.spec diff --git a/README.md b/README.md index fdc9e42..d68a32a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-sphinxcontrib-jquery +Extension to include jQuery on newer Sphinx releases. + diff --git a/python-sphinxcontrib-jquery.spec b/python-sphinxcontrib-jquery.spec new file mode 100644 index 0000000..0f16275 --- /dev/null +++ b/python-sphinxcontrib-jquery.spec @@ -0,0 +1,52 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-sphinxcontrib-jquery +Version: 4.1 +Release: 1mamba +Summary: Extension to include jQuery on newer Sphinx releases +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.org/project/sphinxcontrib-jquery/ +Source: https://pypi.debian.net/sphinxcontrib-jquery/sphinxcontrib-jquery-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython310-devel +BuildRequires: python3.10dist(sphinx) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n sphinxcontrib-jquery-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +#%if "%{?with_pyver}" != "3" +## Rename any conflicting file outside of python site packages tree +#for f in %{_bindir}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +%files %{?pyappend} +%defattr(-,root,root) +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/sphinxcontrib/jquery +%{python_sitelib}/sphinxcontrib/jquery/* +%doc AUTHORS LICENCE + +%changelog +* Mon Apr 10 2023 Silvan Calarco 4.1-1mamba +- package created using the webbuild interface