From 026a8f2fb634f7795f9d9092379978e3bb8daaf8 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 13 Dec 2024 01:10:20 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.24.0-1mamba;Tue Dec 10 2024] --- README.md | 2 ++ python-pybtex.spec | 59 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 python-pybtex.spec diff --git a/README.md b/README.md index 81fa0c7..37b2a5c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pybtex +A BibTeX-compatible bibliography processor in Python. + diff --git a/python-pybtex.spec b/python-pybtex.spec new file mode 100644 index 0000000..07118bb --- /dev/null +++ b/python-pybtex.spec @@ -0,0 +1,59 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-pybtex +Version: 0.24.0 +Release: 1mamba +Summary: A BibTeX-compatible bibliography processor in Python +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pybtex.org/ +Source: https://pypi.debian.net/pybtex/pybtex-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(latexcodec) +BuildRequires: python3.11dist(pyyaml) +BuildRequires: python3.11dist(six) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n pybtex-%{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 + +rm -rf %{buildroot}%{python3_sitelib}/tests + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/pybtex +%{_bindir}/pybtex-convert +%{_bindir}/pybtex-format +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc COPYING + +%changelog +* Tue Dec 10 2024 Silvan Calarco 0.24.0-1mamba +- package created using the webbuild interface