From a47f8075dd1b0814864baa1303e5e91257efecda Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:57:29 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.4.4-1mamba;Thu Jul 04 2019] --- README.md | 2 ++ python-cheetah.spec | 49 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 python-cheetah.spec diff --git a/README.md b/README.md index 16d7544..1d6e02e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-cheetah +An open source template engine and code generation tool. + diff --git a/python-cheetah.spec b/python-cheetah.spec new file mode 100644 index 0000000..c480b78 --- /dev/null +++ b/python-cheetah.spec @@ -0,0 +1,49 @@ +Name: python-cheetah +Version: 2.4.4 +Release: 1mamba +Summary: An open source template engine and code generation tool +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.org/project/Cheetah/ +Source: https://pypi.debian.net/Cheetah/Cheetah-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n Cheetah-%{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 "s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%doc LICENSE + +%changelog +* Thu Jul 04 2019 Silvan Calarco 2.4.4-1mamba +- package created using the webbuild interface