-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpython-tarantool.spec
60 lines (35 loc) · 1.4 KB
/
python-tarantool.spec
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
53
54
55
56
57
58
59
60
# Based on https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/installing_and_using_dynamic_programming_languages/assembly_packaging-python-3-rpms_installing-and-using-dynamic-programming-languages
# merged with python3 setup.py bdist_rpm --spec-only result.
%define srcname tarantool
%define version %(python3 setup.py --version)
Name: python-%{srcname}
Version: %{version}
Release: 1%{?dist}
Summary: Python client library for Tarantool
License: BSD
Group: Development/Libraries
URL: https://github.com/tarantool/tarantool-python
BuildArch: noarch
Source: %{srcname}-%{version}.tar.gz
Vendor: tarantool-python AUTHORS <[email protected]>
BuildRequires: python3-setuptools
BuildRequires: python3-wheel
%global _description %{expand:
Python client library for Tarantool.}
%description %_description
%package -n python3-%{srcname}
Requires: python3-msgpack
Requires: python3-pytz
Summary: %{summary}
Obsoletes: tarantool-python <= 0.9.0
%description -n python3-%{srcname} %_description
%prep
%setup -n %{srcname}-%{version}
%build
python3 setup.py build
%install
python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -n python3-%{srcname} -f INSTALLED_FILES
%defattr(-,root,root)