package created using the webbuild interface [release 2.1.2-1mamba;Tue Apr 01 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 10:39:33 +01:00
parent 8458b95a87
commit 30f8699037
2 changed files with 47 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-APScheduler
Advanced Python Scheduler (APScheduler) is a light but powerful in-process task scheduler that lets you schedule jobs (functions or any python callables) to be executed at times of your choosing.

45
python-APScheduler.spec Normal file
View File

@ -0,0 +1,45 @@
Name: python-APScheduler
Version: 2.1.2
Release: 1mamba
Summary: A light but powerful in-process task scheduler that lets you schedule jobs
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://pypi.python.org/pypi/APScheduler
Source: https://pypi.python.org/packages/source/A/APScheduler/APScheduler-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython-devel
## AUTOBUILDREQ-END
Provides: python-apscheduler
Obsoletes: python-apscheduler
Requires: python >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Advanced Python Scheduler (APScheduler) is a light but powerful in-process task scheduler that lets you schedule jobs (functions or any python callables) to be executed at times of your choosing.
%prep
%setup -q -n APScheduler-%{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)
%changelog
* Tue Apr 01 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 2.1.2-1mamba
- package created using the webbuild interface