SHA256
5
0
forked from pool/pybugz
Files
pybugz/pybugz.spec
Martin Pluskal 35bacbd4af - Update to 0.14:
* Add --interactive command line switch for username and password prompts
  * add support for searching for addresses in CC field
  * Use mimetype of encoding if there is one
  * utils: use builtin way to get terminal width
  * change build system to flit
  * fix output of UTF-8 characters in limited locales
  * fix multiple warnings
  * remove unused readline import
- Switch to pyproject macros.
- Specify module directories explicitly.

OBS-URL: https://build.opensuse.org/package/show/utilities/pybugz?expand=0&rev=12
2025-06-06 08:08:20 +00:00

112 lines
3.5 KiB
RPMSpec

#
# spec file for package pybugz
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: pybugz
Version: 0.14
Release: 0
Summary: Python Bugzilla Interface
License: GPL-2.0-only
Group: Productivity/Networking/Web/Utilities
URL: http://www.liquidx.net/pybugz
Source0: https://github.com/williamh/pybugz/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
BuildRequires: fdupes
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%if "%{python_flavor}" == "python3" || "%{?python_provides}" == "python3"
Provides: pybugz = %{version}
Obsoletes: pybugz < %{version}
%endif
%python_subpackages
%description
PyBugz is a python and command line interface to Bugzilla.
It was conceived as a tool to speed up the workflow for Gentoo Linux
developers and contributors when dealing with bugs using Bugzilla. By
avoiding the clunky web interface, the user quickly search, isolate and
contribute to the project very quickly. Developers alike can easily extract
attachments and close bugs all from the comfort of the command line.
%package -n %{name}-common
Summary: Common files for %{name}
Group: Development/Languages/Python
Supplements: python2-%{name}
Supplements: python3-%{name}
%description -n %{name}-common
PyBugz is a python and command line interface to Bugzilla.
It was conceived as a tool to speed up the workflow for Gentoo Linux
developers and contributors when dealing with bugs using Bugzilla. By
avoiding the clunky web interface, the user quickly search, isolate and
contribute to the project very quickly. Developers alike can easily extract
attachments and close bugs all from the comfort of the command line.
This package contains common files for %{name}.
%prep
%setup -q
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/bugz
%python_clone -a %{buildroot}%{_mandir}/man1/bugz.1
%fdupes %{buildroot}
install -d -m 0755 %{buildroot}%{_sysconfdir}/pybugz.d
%post
%{python_install_alternative bugz bugz.1}
%postun
%{python_uninstall_alternative bugz bugz.1}
%files %{python_files}
%license LICENSE
%doc README
%python_alternative %{_bindir}/bugz
%python_alternative %{_mandir}/man1/bugz.1%{ext_man}
%{python_sitelib}/bugz
%{python_sitelib}/pybugz-%{version}.dist-info
%files -n %{name}-common
%dir %{_sysconfdir}/pybugz.d
%{_mandir}/man5/pybugz.d.5%{?ext_man}
%dir %{_datadir}/pybugz.d
%{_datadir}/pybugz.d/busybox.conf
%{_datadir}/pybugz.d/default.conf
%{_datadir}/pybugz.d/freebsd.conf
%{_datadir}/pybugz.d/freedesktop.conf
%{_datadir}/pybugz.d/gentoo.conf
%{_datadir}/pybugz.d/gnome.conf
%{_datadir}/pybugz.d/kernel.conf
%{_datadir}/pybugz.d/libav.conf
%{_datadir}/pybugz.d/llvm.conf
%{_datadir}/pybugz.d/mozilla.conf
%{_datadir}/pybugz.d/redhat.conf
%{_datadir}/bash-completion
%{_datadir}/zsh
%changelog