From 9a832092c9db29386e63abb6c2843ead1a0bee3b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:44:00 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.7.2-1mamba;Fri Mar 20 2015] --- README.md | 2 ++ python-alabaster.spec | 49 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 python-alabaster.spec diff --git a/README.md b/README.md index b75de7f..19dc218 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-alabaster +A configurable sidebar-enabled Sphinx theme. + diff --git a/python-alabaster.spec b/python-alabaster.spec new file mode 100644 index 0000000..718cfdb --- /dev/null +++ b/python-alabaster.spec @@ -0,0 +1,49 @@ +Name: python-alabaster +Version: 0.7.2 +Release: 1mamba +Summary: A configurable sidebar-enabled Sphinx theme +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.python.org/pypi/alabaster +Source: https://pypi.python.org/packages/source/a/alabaster/alabaster-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n alabaster-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files -f %{name}.filelist +%defattr(-,root,root) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so +%doc LICENSE +## note: eventually add the remaining documents (if any) +# %doc README.rst + +%changelog +* Fri Mar 20 2015 Silvan Calarco 0.7.2-1mamba +- package created using the webbuild interface