From 33423e2d26d15f3e454e1de145bc4205f88ef43d Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:46:53 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.0.1-1mamba;Sat Oct 08 2022] --- README.md | 2 ++ python-attrdict.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 python-attrdict.spec diff --git a/README.md b/README.md index dd12f03..ce3ddf4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-attrdict +A dict with attribute-style access. + diff --git a/python-attrdict.spec b/python-attrdict.spec new file mode 100644 index 0000000..bb93a23 --- /dev/null +++ b/python-attrdict.spec @@ -0,0 +1,44 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-attrdict +Version: 2.0.1 +Release: 1mamba +Summary: A dict with attribute-style access +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/bcj/AttrDict +Source: https://pypi.debian.net/attrdict/attrdict-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +BuildRequires: python3.7dist(six) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n attrdict-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +%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}/* + +%changelog +* Sat Oct 08 2022 Silvan Calarco 2.0.1-1mamba +- package created using the webbuild interface