From d7024a69c70075c51d5d332a5cc5a54c89543a71 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:46:59 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.0.2-1mamba;Sat Apr 15 2023] --- README.md | 2 ++ python-attrdict3.spec | 51 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 python-attrdict3.spec diff --git a/README.md b/README.md index f1c16a3..d362b1d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-attrdict3 +A dict with attribute-style access. + diff --git a/python-attrdict3.spec b/python-attrdict3.spec new file mode 100644 index 0000000..7727bb4 --- /dev/null +++ b/python-attrdict3.spec @@ -0,0 +1,51 @@ +%define pkgname attrdict +Name: python-attrdict3 +Version: 2.0.2 +Release: 1mamba +Summary: A dict with attribute-style access +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/pirofti/AttrDict3 +Source: https://pypi.debian.net/attrdict3/attrdict3-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython310-devel +BuildRequires: python3.10dist(six) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n attrdict3-%{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}3-%{version}.dist-info +%{python_sitelib}/%{pkgname}3-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* + +%changelog +* Sat Apr 15 2023 Silvan Calarco 2.0.2-1mamba +- package created using the webbuild interface