forked from pool/python-pudb
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| beca79fc4f | |||
| 63aac19d33 | |||
| 9339ef84e2 | |||
| b92c0c56e7 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:adc9b00042ba8367117df0a6c0dc62fa9609abd21c3bf8e5b73d620907c5b43e
|
|
||||||
size 226551
|
|
||||||
3
pudb-2025.1.5.tar.gz
Normal file
3
pudb-2025.1.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e6dedb81fc3c8cdcd66cf62e86337cb913570ebb2c994c9ab52012d059e086ad
|
||||||
|
size 225714
|
||||||
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 10 04:33:33 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 2025.1.5:
|
||||||
|
* 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
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 20 16:18:43 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 2024.1.3:
|
||||||
|
* Fix startup when no write permissions
|
||||||
|
* Fix compatibility with Python 3.13
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 18 17:02:43 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sun Aug 18 17:02:43 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pudb
|
# spec file for package python-pudb
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,28 +16,28 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define upstream_name pudb
|
|
||||||
%define module_name pudb
|
%define module_name pudb
|
||||||
%define py_maj_ver %(c=%{python})
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pudb
|
Name: python-pudb
|
||||||
Version: 2024.1.2
|
Version: 2025.1.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A full-screen, console-based Python debugger
|
Summary: A full-screen, console-based Python debugger
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Tools/Debuggers
|
|
||||||
URL: https://github.com/inducer/pudb
|
URL: https://github.com/inducer/pudb
|
||||||
Source0: https://files.pythonhosted.org/packages/source/p/%{upstream_name}/%{upstream_name}-%{version}.tar.gz
|
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 pip}
|
||||||
BuildRequires: %{python_module pytest-mock}
|
BuildRequires: %{python_module pytest-mock}
|
||||||
BuildRequires: %{python_module urwid >= 2.4}
|
BuildRequires: %{python_module pyzmq}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module urwid >= 2.5.1}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-Pygments >= 2.7.4
|
Requires: python-Pygments >= 2.19
|
||||||
Requires: python-jedi >= 0.18
|
Requires: python-jedi >= 0.18
|
||||||
Requires: python-packaging >= 20.0
|
Requires: python-packaging >= 20.0
|
||||||
Requires: python-urwid >= 2.4
|
Requires: python-typing_extensions >= 4.13
|
||||||
|
Requires: python-urwid >= 2.5.1
|
||||||
Requires: python-urwid-readline
|
Requires: python-urwid-readline
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
@@ -50,8 +50,7 @@ Control is by keyboard. The UI is reminiscient of the DOS versions
|
|||||||
of Turbo Pascal.
|
of Turbo Pascal.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{upstream_name}-%{version}
|
%autosetup -p1 -n pudb-%{version}
|
||||||
|
|
||||||
sed -i '1{\@^#! %{_bindir}/env python@d}' pudb/debugger.py
|
sed -i '1{\@^#! %{_bindir}/env python@d}' pudb/debugger.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@@ -77,14 +76,13 @@ mv -v %{buildroot}%{_bindir}/pudb{*,} || /bin/true
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
export LC_ALL=en_US.utf8
|
export LC_ALL=en_US.utf8
|
||||||
# https://github.com/inducer/pudb/issues/304
|
%pytest
|
||||||
%pytest -k 'not test_get_lines'
|
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/%{module_name}
|
%{python_sitelib}/%{module_name}
|
||||||
%{python_sitelib}/%{module_name}*-info
|
%{python_sitelib}/%{module_name}-%{version}.dist-info
|
||||||
%python_alternative %{_bindir}/pudb
|
%python_alternative %{_bindir}/pudb
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user