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
|
Name: python-bugzilla
Version: 3.3.0
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}
%check
pytest-3
%files -n python3-bugzilla
%doc COPYING README.md NEWS.md
%{python3_sitelib}/*
%files cli
%{_bindir}/bugzilla
%{_mandir}/man1/bugzilla.1.gz
|