From ca88a2dfb7d96e8a03c8e86c6de3d03df0cb0727 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:32:30 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.1-1mamba;Thu Dec 03 2015] --- README.md | 2 ++ python-radicale.spec | 49 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 python-radicale.spec diff --git a/README.md b/README.md index 2cb29b5..6c56760 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-radicale +CalDAV and CardDAV Server. + diff --git a/python-radicale.spec b/python-radicale.spec new file mode 100644 index 0000000..eb5d7e3 --- /dev/null +++ b/python-radicale.spec @@ -0,0 +1,49 @@ +Name: python-radicale +Version: 1.0.1 +Release: 1mamba +Summary: CalDAV and CardDAV Server +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.python.org/pypi/Radicale +Source: https://pypi.python.org/packages/source/R/Radicale/Radicale-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: libpython3-devel +Requires: python3 >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n Radicale-%{version} + +%build +CFLAGS="%{optflags}" %{__python3} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python3} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python3_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 COPYING +## note: eventually add the remaining documents (if any) +# %doc README README.rst + +%changelog +* Thu Dec 03 2015 Silvan Calarco 1.0.1-1mamba +- package created using the webbuild interface