SHA256
1
0
forked from pool/python-drgn

Accepting request 1010976 from home:ptesarik:branches:Kernel:kdump

- Update to drgn-0.0.21:
  * Linux kernel support up to Linux 6.0.
  * Helpers for lockless linked lists in the Linux kernel.
  * A helper to find the slab cache that a virtual address came.
  * A drgn.helpers.common package for helpers that can be used with
    any program (which may have program-specific additional
    behavior).
  * A helper to identify an arbitrary address (e.g., as a symbol or
    slab object).
  * PageFoo() helpers to check various struct page flags.
  * Helpers for working with compound pages.
  * A helper to get the CPU that a task last ran on.
  * Automatic pretty-printing in IPython/Jupyter.
  * drgn.StackTrace.prog was added as a way to get the program that a stack trace came from.
  * Bug fixes, documentation, minor API changes.

OBS-URL: https://build.opensuse.org/request/show/1010976
OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/python-drgn?expand=0&rev=3
This commit is contained in:
Petr Tesařík
2022-10-14 16:19:14 +00:00
committed by Git OBS Bridge
parent d1152e021d
commit 9455b3cf8e
4 changed files with 26 additions and 7 deletions

View File

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

3
drgn-0.0.21.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Fri Oct 14 16:11:33 UTC 2022 - Petr Tesařík <ptesarik@suse.com>
- Update to drgn-0.0.21:
* Linux kernel support up to Linux 6.0.
* Helpers for lockless linked lists in the Linux kernel.
* A helper to find the slab cache that a virtual address came.
* A drgn.helpers.common package for helpers that can be used with
any program (which may have program-specific additional
behavior).
* A helper to identify an arbitrary address (e.g., as a symbol or
slab object).
* PageFoo() helpers to check various struct page flags.
* Helpers for working with compound pages.
* A helper to get the CPU that a task last ran on.
* Automatic pretty-printing in IPython/Jupyter.
* drgn.StackTrace.prog was added as a way to get the program that a stack trace came from.
* Bug fixes, documentation, minor API changes.
-------------------------------------------------------------------
Sun Aug 14 20:51:07 UTC 2022 - Petr Tesařík <ptesarik@suse.com>

View File

@@ -21,20 +21,20 @@
%{?!python_module:%define python_module() python3-%{**}}
Name: python-drgn
Version: 0.0.20
Version: 0.0.21
Release: 0
Summary: Scriptable debugger library
License: GPL-3.0-or-later
Group: Development/Tools/Debuggers
URL: https://github.com/osandov/drgn
Source: https://files.pythonhosted.org/packages/source/d/drgn/drgn-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: libdw-devel
BuildRequires: libelf-devel
BuildRequires: libkdumpfile-devel
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
%python_subpackages
%description