From 39749cea863bb37fee288ace79b025e60c054fbf Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:47:36 +0100 Subject: [PATCH] package created using the webbuild interface [release 20.2.0-1mamba;Fri Apr 09 2021] --- README.md | 2 ++ python-automat.spec | 56 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 python-automat.spec diff --git a/README.md b/README.md index 81abe76..83f5b35 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-automat +Self-service finite-state machines for the programmer on the go. + diff --git a/python-automat.spec b/python-automat.spec new file mode 100644 index 0000000..48b72db --- /dev/null +++ b/python-automat.spec @@ -0,0 +1,56 @@ +Name: python-automat +Version: 20.2.0 +Release: 1mamba +Summary: Self-service finite-state machines for the programmer on the go +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/glyph/Automat +Source: https://pypi.debian.net/Automat/Automat-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +BuildRequires: python3.7dist(attrs) +BuildRequires: python3.7dist(setuptools) +BuildRequires: python3.7dist(six) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n Automat-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{python_inc} \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%if "%{?with_pyver}" != "3" +mv %{buildroot}%{_bindir}/automat-visualize{,%{?with_pyver}} +sed -i "s|automat-visualize|automat-visualize%{?with_pyver}|" %{name}.filelist +%endif + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%dir %{python_sitearch}/Automat-%{version}-py*.egg-info +%{python_sitearch}/Automat-%{version}-py*.egg-info/* +%doc LICENSE + +%changelog +* Fri Apr 09 2021 Silvan Calarco 20.2.0-1mamba +- package created using the webbuild interface