SHA256
1
0
forked from pool/python-pudb

Compare commits

4 Commits

Author SHA256 Message Date
beca79fc4f Accepting request 1321876 from devel:languages:python
- 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

OBS-URL: https://build.opensuse.org/request/show/1321876
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pudb?expand=0&rev=15
2025-12-10 14:33:34 +00:00
63aac19d33 - 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pudb?expand=0&rev=33
2025-12-10 04:34:25 +00:00
9339ef84e2 Accepting request 1225335 from devel:languages:python
- update to 2024.1.3:
  * Fix startup when no write permissions
  * Fix compatibility with Python 3.13

OBS-URL: https://build.opensuse.org/request/show/1225335
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pudb?expand=0&rev=14
2024-11-21 14:13:56 +00:00
b92c0c56e7 - update to 2024.1.3:
* Fix startup when no write permissions
  * Fix compatibility with Python 3.13

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pudb?expand=0&rev=31
2024-11-20 16:18:54 +00:00
4 changed files with 35 additions and 18 deletions

View File

@@ -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
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6dedb81fc3c8cdcd66cf62e86337cb913570ebb2c994c9ab52012d059e086ad
size 225714

View File

@@ -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>

View File

@@ -1,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,28 +16,28 @@
#
%define upstream_name pudb
%define module_name pudb
%define py_maj_ver %(c=%{python})
%{?sle15_python_module_pythons}
Name: python-pudb
Version: 2024.1.2
Version: 2025.1.5
Release: 0
Summary: A full-screen, console-based Python debugger
License: MIT
Group: Development/Tools/Debuggers
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 pytest-mock}
BuildRequires: %{python_module urwid >= 2.4}
BuildRequires: %{python_module wheel}
BuildRequires: %{python_module pyzmq}
BuildRequires: %{python_module urwid >= 2.5.1}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Pygments >= 2.7.4
Requires: python-Pygments >= 2.19
Requires: python-jedi >= 0.18
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(post): 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.
%prep
%autosetup -p1 -n %{upstream_name}-%{version}
%autosetup -p1 -n pudb-%{version}
sed -i '1{\@^#! %{_bindir}/env python@d}' pudb/debugger.py
%build
@@ -77,14 +76,13 @@ mv -v %{buildroot}%{_bindir}/pudb{*,} || /bin/true
%check
export LC_ALL=en_US.utf8
# https://github.com/inducer/pudb/issues/304
%pytest -k 'not test_get_lines'
%pytest
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/%{module_name}
%{python_sitelib}/%{module_name}*-info
%{python_sitelib}/%{module_name}-%{version}.dist-info
%python_alternative %{_bindir}/pudb
%changelog