From 2303bb335c5aceeb89b327627c96eeed3841c85e Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:41:01 +0100 Subject: [PATCH] update to 2.0.1 [release 2.0.1-1mamba;Sun Oct 31 2021] --- README.md | 2 ++ python-smartypants.spec | 54 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 python-smartypants.spec diff --git a/README.md b/README.md index ef32368..aa26af2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-smartypants +A Python fork of SmartyPants. + diff --git a/python-smartypants.spec b/python-smartypants.spec new file mode 100644 index 0000000..bc7a249 --- /dev/null +++ b/python-smartypants.spec @@ -0,0 +1,54 @@ +%define pkgname %(echo %name | cut -d- -f2-) +Name: python-smartypants +Version: 2.0.1 +Release: 1mamba +Summary: A Python fork of SmartyPants +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/leohemsted/smartypants.py +Source: https://github.com/leohemsted/smartypants.py.git/v%{version}/smartypants.py-%{version}.tar.bz2 +#Source: https://pypi.debian.net/smartypants/smartypants-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +## AUTOBUILDREQ-END +Provides: python%{?with_pyver}dist(smartypants) + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n smartypants.py-%{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 + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +#%dir %{python_sitearch}/%{pkgname}-%{version}-py*.egg-info +#%{python_sitearch}/%{pkgname}-%{version}-py*.egg-info/* +%doc COPYING + +%changelog +* Sun Oct 31 2021 Silvan Calarco 2.0.1-1mamba +- update to 2.0.1 + +* Sun Oct 31 2021 Silvan Calarco 2.0.0-1mamba +- package created using the webbuild interface