Compare commits

...

1 Commits
1.1 ... main

4 changed files with 21 additions and 7 deletions

BIN
debugpy-1.8.1.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
debugpy-1.8.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,8 +1,22 @@
-------------------------------------------------------------------
Thu Sep 26 08:15:16 UTC 2024 - Markéta Machová <mmachova@suse.com>
Thu Sep 26 10:32:41 UTC 2024 - Markéta Machová <mmachova@suse.com>
- Drop unneeded Django test dependency
- Skip one failing test on aarch64
- Skip one failing test on aarch64
-------------------------------------------------------------------
Sat Jun 29 19:34:29 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.8.2:
* Fixed an issue where ApiScan couldn't scan some of our
binaries correctly. This involved changing some linker flags
and re-compiling/re-linking some of the pydevd executables
and dlls.
-------------------------------------------------------------------
Thu Mar 28 12:55:24 UTC 2024 - ecsos <ecsos@opensuse.org>
- Fix build error in Leap.
-------------------------------------------------------------------
Thu Feb 15 16:18:57 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>

View File

@ -27,7 +27,7 @@
%endif
%{?sle15_python_module_pythons}
Name: python-debugpy%{psuffix}
Version: 1.8.1
Version: 1.8.2
Release: 0
Summary: An implementation of the Debug Adapter Protocol for Python
License: MIT
@ -81,7 +81,7 @@ rm -r src/debugpy/_vendored
cp -r src/debugpy/_vendored_clean src/debugpy/_vendored
pushd src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/
# see /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py::get_target_filename
pyarch=$(python3 -c 'import platform; print(platform.machine())')
%{python_expand pyarch=$($python -c 'import platform; print(platform.machine())')}
g++ %{optflags} -shared -o ../attach_${pyarch}.so -fPIC -nostartfiles attach.cpp
# if on intel architectures, use the default upstream names
%ifarch x86_64