forked from python-bugzilla/python-bugzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-bugzilla.spec
More file actions
72 lines (47 loc) · 1.76 KB
/
python-bugzilla.spec
File metadata and controls
72 lines (47 loc) · 1.76 KB
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
Name: python-bugzilla
Version: 3.0.2
Release: 1%{?dist}
Summary: Python library for interacting with Bugzilla
License: GPLv2+
URL: https://github.com/python-bugzilla/python-bugzilla
Source0: https://github.com/python-bugzilla/python-bugzilla/archive/v%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-requests
BuildRequires: python3-setuptools
BuildRequires: python3-pytest
%global _description\
python-bugzilla is a python library for interacting with bugzilla instances\
over XMLRPC or REST.\
%description %_description
%package -n python3-bugzilla
Summary: %summary
Requires: python3-requests
%{?python_provide:%python_provide python3-bugzilla}
Obsoletes: python-bugzilla < %{version}-%{release}
Obsoletes: python2-bugzilla < %{version}-%{release}
%description -n python3-bugzilla %_description
%package cli
Summary: Command line tool for interacting with Bugzilla
Requires: python3-bugzilla = %{version}-%{release}
%description cli
This package includes the 'bugzilla' command-line tool for interacting with bugzilla. Uses the python-bugzilla API
%prep
%setup -q
%install
%{__python3} setup.py install -O1 --root %{buildroot}
# Replace '#!/usr/bin/env python' with '#!/usr/bin/python2'
# The format is ideal for upstream, but not a distro. See:
# https://fedoraproject.org/wiki/Features/SystemPythonExecutablesUseSystemPython
%global python_env_path %{__python3}
for f in $(find %{buildroot} -type f -executable -print); do
sed -i "1 s|^#!/usr/bin/.*|#!%{python_env_path}|" $f || :
done
%check
pytest-3
%files -n python3-bugzilla
%doc COPYING README.md NEWS.md
%{python3_sitelib}/*
%files cli
%{_bindir}/bugzilla
%{_mandir}/man1/bugzilla.1.gz