blob: b0b7f8378b140d671b8ddbd6bfe6c9eeb85fea0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
Name: python-retask
Version: 0.4
Release: 1
Summary: Python module to create and manage distributed task queues
License: MIT
URL: http://retask.readthedocs.org/en/latest/index.html
Source0: https://pypi.python.org/packages/source/r/retask/retask-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-redis
BuildRequires: python3-six
%global _description\
Python module to create and manage distributed task queues using redis.
%description %_description
%package -n python3-retask
Summary: %{summary}
%{?python_provide:%python_provide python3-retask}
Requires: python3-redis
Requires: python3-six
%description -n python3-retask %_description
%prep
%setup -q -n retask-%{version}
%build
%py3_build
%install
%py3_install
%files -n python3-retask
%doc LICENSE
%{python3_sitelib}/retask*/
%changelog
* Tue Feb 28 2023 lichaoran <pkwarcraft@hotmail.com> - 0.4-1
- Init package
|