-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpython-varlink.spec
83 lines (64 loc) · 1.66 KB
/
python-varlink.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
%if 0%{?fedora} || 0%{?rhel} >= 8
%global build_py3 1
%endif
Name: python-varlink
Version: 30.3.1
Release: 1%{?dist}
Summary: Python implementation of Varlink
License: ASL 2.0
URL: https://github.com/varlink/%{name}
Source0: https://github.com/varlink/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel
BuildRequires: python-rpm-macros
BuildRequires: python-setuptools
BuildRequires: python-setuptools_scm
%if 0%{?build_py3}
BuildRequires: python3-devel
BuildRequires: python3-rpm-macros
%endif
%global _description \
An python module for Varlink with client and server support.
%description %_description
%package -n python2-varlink
Summary: %summary
%{?python_provide:%python_provide python2-varlink}
%if 0%{?build_py3}
%package -n python3-varlink
Summary: %summary
%{?python_provide:%python_provide python3-varlink}
%endif
%description -n python2-varlink %_description
%if 0%{?build_py3}
%description -n python3-varlink %_description
%endif
%prep
%autosetup -n python-%{version}
%build
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
%py2_build
%if 0%{?build_py3}
%py3_build
%endif
%if 0%{?build_py3}
%check
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
CFLAGS="%{optflags}" %{__python3} %{py_setup} %{?py_setup_args} check
%endif
%install
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
%py2_install
%if 0%{?build_py3}
%py3_install
%endif
%files -n python2-varlink
%license LICENSE.txt
%doc README.md
%{python2_sitelib}/*
%if 0%{?build_py3}
%files -n python3-varlink
%license LICENSE.txt
%doc README.md
%{python3_sitelib}/*
%endif
%changelog