From fc5eacbad9b1dc577968ad5c87da5b7df04feacc Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 28 Jan 2024 11:07:32 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.5.3-1mamba;Sat Jan 27 2024] --- README.md | 2 ++ python-pydantic.spec | 54 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 python-pydantic.spec diff --git a/README.md b/README.md index b35725d..f8f6c1e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pydantic +Data validation using Python type hints. + diff --git a/python-pydantic.spec b/python-pydantic.spec new file mode 100644 index 0000000..0b32426 --- /dev/null +++ b/python-pydantic.spec @@ -0,0 +1,54 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-pydantic +Version: 2.5.3 +Release: 1mamba +Summary: Data validation using Python type hints +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/pydantic/pydantic +Source: https://pypi.debian.net/pydantic/pydantic-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(annotated-types) +BuildRequires: python3.11dist(pydantic-core) +BuildRequires: python3.11dist(typing-extensions) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n pydantic-%{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}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Sat Jan 27 2024 Silvan Calarco 2.5.3-1mamba +- package created using the webbuild interface