From 450673b13acb99910504bc2e3993fcaf7d33f4a9 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 10 Aug 2024 11:23:02 +0200 Subject: [PATCH] package created using the webbuild interface [release 0.1.1-1mamba;Fri Aug 09 2024] --- README.md | 2 ++ python-rfc3986_validator.spec | 51 +++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 python-rfc3986_validator.spec diff --git a/README.md b/README.md index 737b311..0ea1bb3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-rfc3986_validator +A pure python RFC3339 validator. + diff --git a/python-rfc3986_validator.spec b/python-rfc3986_validator.spec new file mode 100644 index 0000000..9a0d316 --- /dev/null +++ b/python-rfc3986_validator.spec @@ -0,0 +1,51 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-rfc3986_validator +Version: 0.1.1 +Release: 1mamba +Summary: A pure python RFC3339 validator +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/naimetti/rfc3339-validator +Source: https://pypi.debian.net/rfc3986-validator/rfc3986_validator-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n rfc3986_validator-%{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/* +%{python3_sitelib}/__pycache__/rfc3986_validator.cpython-*.pyc +%{python3_sitelib}/rfc3986_validator.py +%doc LICENSE + +%changelog +* Fri Aug 09 2024 Silvan Calarco 0.1.1-1mamba +- package created using the webbuild interface