* Bump pygments requirement to 2.19 * Address recent ruff lint * Urwid 3.0.4 compat * Fix pick mod * Fix sidebar resizing for new Urwid API * Remove 'Examine' option in 'Finished' dialog * Urwid 3 compat OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pudb?expand=0&rev=33
89 lines
2.7 KiB
RPMSpec
89 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-pudb
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define module_name pudb
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-pudb
|
|
Version: 2025.1.5
|
|
Release: 0
|
|
Summary: A full-screen, console-based Python debugger
|
|
License: MIT
|
|
URL: https://github.com/inducer/pudb
|
|
Source0: https://files.pythonhosted.org/packages/source/p/pudb/pudb-%{version}.tar.gz
|
|
BuildRequires: %{python_module base >= 3.8}
|
|
BuildRequires: %{python_module hatch_vcs}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
BuildRequires: %{python_module pyzmq}
|
|
BuildRequires: %{python_module urwid >= 2.5.1}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Pygments >= 2.19
|
|
Requires: python-jedi >= 0.18
|
|
Requires: python-packaging >= 20.0
|
|
Requires: python-typing_extensions >= 4.13
|
|
Requires: python-urwid >= 2.5.1
|
|
Requires: python-urwid-readline
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
PuDB is a full-screen, console-based visual debugger for Python.
|
|
Control is by keyboard. The UI is reminiscient of the DOS versions
|
|
of Turbo Pascal.
|
|
|
|
%prep
|
|
%autosetup -p1 -n pudb-%{version}
|
|
sed -i '1{\@^#! %{_bindir}/env python@d}' pudb/debugger.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
mv -v %{buildroot}%{_bindir}/pudb{*,} || /bin/true
|
|
%python_clone -a %{buildroot}%{_bindir}/pudb
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%pre
|
|
# Since /usr/bin/pudb became ghosted to be used with
|
|
# update-alternatives, we have to get rid of the old binary resulting
|
|
# from the non-update-alternatives-ified package:
|
|
[ -h %{_bindir}/pudb ] || rm -vf %{_bindir}/pudb
|
|
|
|
%post
|
|
%python_install_alternative pudb
|
|
|
|
%postun
|
|
%python_uninstall_alternative pudb
|
|
|
|
%check
|
|
export LC_ALL=en_US.utf8
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/%{module_name}
|
|
%{python_sitelib}/%{module_name}-%{version}.dist-info
|
|
%python_alternative %{_bindir}/pudb
|
|
|
|
%changelog
|