All of lore.kernel.org
 help / color / mirror / Atom feed
* [AUH] systemtap-uprobes: upgrading to 4.8 SUCCEEDED
@ 2022-12-15 20:32 auh
  0 siblings, 0 replies; 3+ messages in thread
From: auh @ 2022-12-15 20:32 UTC (permalink / raw)
  To: Victor Kamensky; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *systemtap-uprobes* to *4.8* has Succeeded.

Next steps:
    - apply the patch: git am 0001-systemtap-uprobes-upgrade-4.7-4.8.patch
    - check the changes to upstream patches and summarize them in the commit message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update failures.
Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

[-- Attachment #2: 0001-systemtap-uprobes-upgrade-4.7-4.8.patch --]
[-- Type: application/octet-stream, Size: 3589 bytes --]

From 3a647aa09c6619855240872c3f24e1b9faa14ccc Mon Sep 17 00:00:00 2001
From: Upgrade Helper <auh@yoctoproject.org>
Date: Thu, 15 Dec 2022 18:33:54 +0000
Subject: [PATCH] systemtap-uprobes: upgrade 4.7 -> 4.8

---
 .../systemtap/systemtap-uprobes_git.bb        |  1 +
 .../systemtap/systemtap/python-3.11.patch     | 37 -------------------
 .../systemtap/systemtap_git.inc               |  5 +--
 3 files changed, 3 insertions(+), 40 deletions(-)
 delete mode 100644 meta/recipes-kernel/systemtap/systemtap/python-3.11.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
index 2181e45a8d..aac2b871a7 100644
--- a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
@@ -38,3 +38,4 @@ do_install() {
 		install -m 0644 ${S}/runtime/uprobes/uprobes.ko ${D}${datadir}/systemtap/runtime/uprobes/
 	fi
 }
+
diff --git a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch b/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
deleted file mode 100644
index 6e0c97b8d6..0000000000
--- a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 069e109c95d1afca17cd3781b39f220cf8b39978 Mon Sep 17 00:00:00 2001
-From: Stan Cox <scox@redhat.com>
-Date: Wed, 13 Jul 2022 09:49:51 -0400
-Subject: [PATCH 1/1] python 3.11 removed direct access to PyFrameObject
- members
-
-Take into account the change in PyFrameObject definition to allow
-building systemtap with python 3.11.  Additional support for python
-3.11 is forthcoming.
-
-Upstream-Status: Backport [https://sourceware.org/git/?p=systemtap.git;a=commit;h=069e109c95d1afca17cd3781b39f220cf8b39978]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- python/HelperSDT/_HelperSDT.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/python/HelperSDT/_HelperSDT.c b/python/HelperSDT/_HelperSDT.c
-index 967cb6077..4d287132e 100644
---- a/python/HelperSDT/_HelperSDT.c
-+++ b/python/HelperSDT/_HelperSDT.c
-@@ -14,7 +14,13 @@
- // PR25841: ensure that the libHelperSDT.so file contains debuginfo
- // for the tapset helper functions, so they don't have to look into libpython*
- #include <frameobject.h>
-+// python 3.11 removed direct access to PyFrameObject members
-+// https://docs.python.org/3.11/whatsnew/3.11.html#c-api-changes
-+#if PY_MAJOR_VERSION <= 3 && PY_MINOR_VERSION < 11
- PyFrameObject _dummy_frame;
-+#else
-+//PyFrameObject *_dummy_frame;
-+#endif
- #include <object.h>
- PyVarObject _dummy_var;
- #include <dictobject.h>
--- 
-2.31.1
-
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index b05a5a2b0d..d309a89496 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,13 +1,12 @@
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "0c335a75a789ff44b514e567d458881e15cc283d"
-PV = "4.7"
+SRCREV = "b176afb2e49119ef844d193d27b0752a6d84fe8f"
+PV = "4.8"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;branch=master \
            file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
            file://0001-Install-python-modules-to-correct-library-dir.patch \
            file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \
-           file://python-3.11.patch \
            "
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips|riscv64).*-linux'
-- 
2.37.3


[-- Attachment #3: buildhistory-diff-full.txt --]
[-- Type: text/plain, Size: 8294 bytes --]

packages/core2-32-poky-linux/systemtap: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch"
packages/core2-32-poky-linux/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap: PV changed from "4.7" to "4.8"
Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGSIZE changed from 58106208 to 58645120 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGSIZE changed from 22718 to 22433 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-dev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGSIZE changed from 468954 to 469215 (+0%)
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-doc: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGSIZE changed from 1505292 to 1484450 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/tapset/python_local.stpm /usr/share/systemtap/examples/general/py3example.stp /usr/share/systemtap/examples/general/tapset/python2_local.stp /usr/share/systemtap/examples/general/py2example.stp /usr/share/systemtap/examples/general/tapset/python3_local.stp", added "/usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/general/pyexample.stp /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp"
packages/core2-32-poky-linux/systemtap/systemtap-examples: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-python: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-python: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGSIZE changed from 2914280 to 2942351 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-src: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap: PKGSIZE changed from 9613929 to 9680063 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"
packages/core2-32-poky-linux/systemtap/systemtap: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch"
packages/qemux86-poky-linux/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PV changed from "4.7" to "4.8"

[-- Attachment #4: bitbake-output-qemux86_musl.txt --]
[-- Type: text/plain, Size: 756 bytes --]

WARNING: Host distribution "almalinux-8.7" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 888 .bb files complete (0 cached, 888 parsed). 1673 targets, 49 skipped, 0 masked, 0 errors.
Removing 44 recipes from the core2-32 sysroot...done.
Removing 46 recipes from the qemux86 sysroot...done.

Summary: There was 1 WARNING message.
Summary: There was 1 ERROR message, returning a non-zero exit code.
ERROR: Nothing PROVIDES 'systemtap-uprobes'
systemtap-uprobes was skipped: incompatible with host i686-poky-linux-musl (not in COMPATIBLE_HOST)

[-- Attachment #5: buildhistory-diff.txt --]
[-- Type: text/plain, Size: 1658 bytes --]

Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/py3example.stp /usr/share/systemtap/examples/general/tapset/python_local.stpm /usr/share/systemtap/examples/general/py2example.stp /usr/share/systemtap/examples/general/tapset/python3_local.stp /usr/share/systemtap/examples/general/tapset/python2_local.stp", added "/usr/share/systemtap/examples/general/pyexample.stp /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp"
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [AUH] systemtap-uprobes: upgrading to 4.8 SUCCEEDED
@ 2022-12-01 15:30 auh
  0 siblings, 0 replies; 3+ messages in thread
From: auh @ 2022-12-01 15:30 UTC (permalink / raw)
  To: Victor Kamensky; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *systemtap-uprobes* to *4.8* has Succeeded.

Next steps:
    - apply the patch: git am 0001-systemtap-uprobes-upgrade-4.7-4.8.patch
    - check the changes to upstream patches and summarize them in the commit message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update failures.
Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

[-- Attachment #2: buildhistory-diff-full.txt --]
[-- Type: text/plain, Size: 8294 bytes --]

packages/core2-32-poky-linux/systemtap: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch"
packages/core2-32-poky-linux/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGSIZE changed from 58106136 to 58645048 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-dev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGSIZE changed from 22718 to 22433 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-doc: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGSIZE changed from 468954 to 469215 (+0%)
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-examples: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/tapset/python2_local.stp /usr/share/systemtap/examples/general/py3example.stp /usr/share/systemtap/examples/general/py2example.stp /usr/share/systemtap/examples/general/tapset/python_local.stpm /usr/share/systemtap/examples/general/tapset/python3_local.stp", added "/usr/share/systemtap/examples/general/pyexample.stp /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp"
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGSIZE changed from 1505292 to 1484450 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-python: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-python: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-src: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGSIZE changed from 2914280 to 2942351 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"
packages/core2-32-poky-linux/systemtap/systemtap: PKGSIZE changed from 9613929 to 9680063 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch"
packages/qemux86-poky-linux/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]

[-- Attachment #3: buildhistory-diff.txt --]
[-- Type: text/plain, Size: 1658 bytes --]

Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/tapset/python2_local.stp /usr/share/systemtap/examples/general/tapset/python3_local.stp /usr/share/systemtap/examples/general/py2example.stp /usr/share/systemtap/examples/general/tapset/python_local.stpm /usr/share/systemtap/examples/general/py3example.stp", added "/usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/general/pyexample.stp"
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"

[-- Attachment #4: 0001-systemtap-uprobes-upgrade-4.7-4.8.patch --]
[-- Type: application/octet-stream, Size: 3588 bytes --]

From 5b3e38aaaaa5481adbb5ece2929b431307f864c2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <auh@yoctoproject.org>
Date: Thu, 1 Dec 2022 13:39:36 +0000
Subject: [PATCH] systemtap-uprobes: upgrade 4.7 -> 4.8

---
 .../systemtap/systemtap-uprobes_git.bb        |  1 +
 .../systemtap/systemtap/python-3.11.patch     | 37 -------------------
 .../systemtap/systemtap_git.inc               |  5 +--
 3 files changed, 3 insertions(+), 40 deletions(-)
 delete mode 100644 meta/recipes-kernel/systemtap/systemtap/python-3.11.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
index 2181e45a8d..aac2b871a7 100644
--- a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
@@ -38,3 +38,4 @@ do_install() {
 		install -m 0644 ${S}/runtime/uprobes/uprobes.ko ${D}${datadir}/systemtap/runtime/uprobes/
 	fi
 }
+
diff --git a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch b/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
deleted file mode 100644
index 6e0c97b8d6..0000000000
--- a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 069e109c95d1afca17cd3781b39f220cf8b39978 Mon Sep 17 00:00:00 2001
-From: Stan Cox <scox@redhat.com>
-Date: Wed, 13 Jul 2022 09:49:51 -0400
-Subject: [PATCH 1/1] python 3.11 removed direct access to PyFrameObject
- members
-
-Take into account the change in PyFrameObject definition to allow
-building systemtap with python 3.11.  Additional support for python
-3.11 is forthcoming.
-
-Upstream-Status: Backport [https://sourceware.org/git/?p=systemtap.git;a=commit;h=069e109c95d1afca17cd3781b39f220cf8b39978]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- python/HelperSDT/_HelperSDT.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/python/HelperSDT/_HelperSDT.c b/python/HelperSDT/_HelperSDT.c
-index 967cb6077..4d287132e 100644
---- a/python/HelperSDT/_HelperSDT.c
-+++ b/python/HelperSDT/_HelperSDT.c
-@@ -14,7 +14,13 @@
- // PR25841: ensure that the libHelperSDT.so file contains debuginfo
- // for the tapset helper functions, so they don't have to look into libpython*
- #include <frameobject.h>
-+// python 3.11 removed direct access to PyFrameObject members
-+// https://docs.python.org/3.11/whatsnew/3.11.html#c-api-changes
-+#if PY_MAJOR_VERSION <= 3 && PY_MINOR_VERSION < 11
- PyFrameObject _dummy_frame;
-+#else
-+//PyFrameObject *_dummy_frame;
-+#endif
- #include <object.h>
- PyVarObject _dummy_var;
- #include <dictobject.h>
--- 
-2.31.1
-
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index b05a5a2b0d..d309a89496 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,13 +1,12 @@
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "0c335a75a789ff44b514e567d458881e15cc283d"
-PV = "4.7"
+SRCREV = "b176afb2e49119ef844d193d27b0752a6d84fe8f"
+PV = "4.8"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;branch=master \
            file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
            file://0001-Install-python-modules-to-correct-library-dir.patch \
            file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \
-           file://python-3.11.patch \
            "
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips|riscv64).*-linux'
-- 
2.31.1


[-- Attachment #5: bitbake-output-qemux86_musl.txt --]
[-- Type: text/plain, Size: 937 bytes --]

WARNING: Host distribution "almalinux-8.7" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 888 .bb files complete (0 cached, 888 parsed). 1669 targets, 49 skipped, 0 masked, 0 errors.
Removing 63 recipes from the core2-32 sysroot...done.
Removing 65 recipes from the qemux86 sysroot...done.

Summary: There was 1 WARNING message.
Summary: There was 1 ERROR message, returning a non-zero exit code.
/usr/lib64/python3.6/importlib/_bootstrap.py:219: ImportWarning: can't resolve package from __spec__ or __package__, falling back on __name__ and __path__
  return f(*args, **kwds)
ERROR: Nothing PROVIDES 'systemtap-uprobes'
systemtap-uprobes was skipped: incompatible with host i686-poky-linux-musl (not in COMPATIBLE_HOST)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [AUH] systemtap-uprobes: upgrading to 4.8 SUCCEEDED
@ 2022-11-15 13:05 auh
  0 siblings, 0 replies; 3+ messages in thread
From: auh @ 2022-11-15 13:05 UTC (permalink / raw)
  To: Victor Kamensky; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *systemtap-uprobes* to *4.8* has Succeeded.

Next steps:
    - apply the patch: git am 0001-systemtap-uprobes-upgrade-4.7-4.8.patch
    - check the changes to upstream patches and summarize them in the commit message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update failures.
Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

[-- Attachment #2: 0001-systemtap-uprobes-upgrade-4.7-4.8.patch --]
[-- Type: application/octet-stream, Size: 3589 bytes --]

From b244c25b2452531d3d6a741e1f59a4e381385b33 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <auh@yoctoproject.org>
Date: Tue, 15 Nov 2022 12:02:45 +0000
Subject: [PATCH] systemtap-uprobes: upgrade 4.7 -> 4.8

---
 .../systemtap/systemtap-uprobes_git.bb        |  1 +
 .../systemtap/systemtap/python-3.11.patch     | 37 -------------------
 .../systemtap/systemtap_git.inc               |  5 +--
 3 files changed, 3 insertions(+), 40 deletions(-)
 delete mode 100644 meta/recipes-kernel/systemtap/systemtap/python-3.11.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
index 2181e45a8d..aac2b871a7 100644
--- a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
@@ -38,3 +38,4 @@ do_install() {
 		install -m 0644 ${S}/runtime/uprobes/uprobes.ko ${D}${datadir}/systemtap/runtime/uprobes/
 	fi
 }
+
diff --git a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch b/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
deleted file mode 100644
index 6e0c97b8d6..0000000000
--- a/meta/recipes-kernel/systemtap/systemtap/python-3.11.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 069e109c95d1afca17cd3781b39f220cf8b39978 Mon Sep 17 00:00:00 2001
-From: Stan Cox <scox@redhat.com>
-Date: Wed, 13 Jul 2022 09:49:51 -0400
-Subject: [PATCH 1/1] python 3.11 removed direct access to PyFrameObject
- members
-
-Take into account the change in PyFrameObject definition to allow
-building systemtap with python 3.11.  Additional support for python
-3.11 is forthcoming.
-
-Upstream-Status: Backport [https://sourceware.org/git/?p=systemtap.git;a=commit;h=069e109c95d1afca17cd3781b39f220cf8b39978]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- python/HelperSDT/_HelperSDT.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/python/HelperSDT/_HelperSDT.c b/python/HelperSDT/_HelperSDT.c
-index 967cb6077..4d287132e 100644
---- a/python/HelperSDT/_HelperSDT.c
-+++ b/python/HelperSDT/_HelperSDT.c
-@@ -14,7 +14,13 @@
- // PR25841: ensure that the libHelperSDT.so file contains debuginfo
- // for the tapset helper functions, so they don't have to look into libpython*
- #include <frameobject.h>
-+// python 3.11 removed direct access to PyFrameObject members
-+// https://docs.python.org/3.11/whatsnew/3.11.html#c-api-changes
-+#if PY_MAJOR_VERSION <= 3 && PY_MINOR_VERSION < 11
- PyFrameObject _dummy_frame;
-+#else
-+//PyFrameObject *_dummy_frame;
-+#endif
- #include <object.h>
- PyVarObject _dummy_var;
- #include <dictobject.h>
--- 
-2.31.1
-
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index b05a5a2b0d..d309a89496 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,13 +1,12 @@
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "0c335a75a789ff44b514e567d458881e15cc283d"
-PV = "4.7"
+SRCREV = "b176afb2e49119ef844d193d27b0752a6d84fe8f"
+PV = "4.8"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git;branch=master \
            file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
            file://0001-Install-python-modules-to-correct-library-dir.patch \
            file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \
-           file://python-3.11.patch \
            "
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips|riscv64).*-linux'
-- 
2.31.1


[-- Attachment #3: buildhistory-diff.txt --]
[-- Type: text/plain, Size: 1658 bytes --]

Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/tapset/python3_local.stp /usr/share/systemtap/examples/general/tapset/python2_local.stp /usr/share/systemtap/examples/general/py3example.stp /usr/share/systemtap/examples/general/tapset/python_local.stpm /usr/share/systemtap/examples/general/py2example.stp", added "/usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp /usr/share/systemtap/examples/general/pyexample.stp /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp"
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"

[-- Attachment #4: bitbake-output-qemux86_musl.txt --]
[-- Type: text/plain, Size: 937 bytes --]

WARNING: Host distribution "almalinux-8.7" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 887 .bb files complete (0 cached, 887 parsed). 1666 targets, 49 skipped, 0 masked, 0 errors.
Removing 44 recipes from the core2-32 sysroot...done.
Removing 46 recipes from the qemux86 sysroot...done.

Summary: There was 1 WARNING message.
Summary: There was 1 ERROR message, returning a non-zero exit code.
/usr/lib64/python3.6/importlib/_bootstrap.py:219: ImportWarning: can't resolve package from __spec__ or __package__, falling back on __name__ and __path__
  return f(*args, **kwds)
ERROR: Nothing PROVIDES 'systemtap-uprobes'
systemtap-uprobes was skipped: incompatible with host i686-poky-linux-musl (not in COMPATIBLE_HOST)

[-- Attachment #5: buildhistory-diff-full.txt --]
[-- Type: text/plain, Size: 8294 bytes --]

packages/core2-32-poky-linux/systemtap: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://0001-improve-reproducibility-for-c-compiling.patch file://0001-staprun-address-ncurses-6.3-failures.patch"
packages/core2-32-poky-linux/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
Changes to packages/core2-32-poky-linux/systemtap (sysroot):
  /usr/share/systemtap/examples/general/pyexample.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp was added
  /usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp was added
  /usr/share/systemtap/tapset/livepatch.stp was added
  /usr/share/systemtap/examples/general/py2example.stp was removed
  /usr/share/systemtap/examples/general/py3example.stp was removed
  /usr/share/systemtap/examples/general/tapset was removed
  /usr/share/systemtap/examples/general/tapset/python2_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python3_local.stp was removed
  /usr/share/systemtap/examples/general/tapset/python_local.stpm was removed
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGSIZE changed from 58106244 to 58645188 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGSIZE changed from 22718 to 22433 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-dev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGSIZE changed from 468954 to 469215 (+0%)
packages/core2-32-poky-linux/systemtap/systemtap-doc: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGSIZE changed from 1505292 to 1484450 (-1%)
packages/core2-32-poky-linux/systemtap/systemtap-examples: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-examples: FILELIST: removed "/usr/share/systemtap/examples/general/py3example.stp /usr/share/systemtap/examples/general/tapset/python3_local.stp /usr/share/systemtap/examples/general/py2example.stp /usr/share/systemtap/examples/general/tapset/python2_local.stp /usr/share/systemtap/examples/general/tapset/python_local.stpm", added "/usr/share/systemtap/examples/security-band-aids/security-bandaid-template.stp /usr/share/systemtap/examples/security-band-aids/cve-2016-0728-templatized.stp /usr/share/systemtap/examples/general/pyexample.stp /usr/share/systemtap/examples/security-band-aids/cve-2018-6485-templatized.stp"
packages/core2-32-poky-linux/systemtap/systemtap-examples: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-exporter: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-cs: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-en: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-fr: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-locale-pl: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-python: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-python: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-runtime: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGSIZE changed from 2914280 to 2942351 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap-src: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/core2-32-poky-linux/systemtap/systemtap: PKGSIZE changed from 9613929 to 9680063 (+1%)
packages/core2-32-poky-linux/systemtap/systemtap: PV changed from "4.7" to "4.8"
packages/core2-32-poky-linux/systemtap/systemtap: FILELIST: added "/usr/share/systemtap/tapset/livepatch.stp"
packages/core2-32-poky-linux/systemtap/systemtap: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes: SRC_URI changed from "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch file://python-3.11.patch" to "git://sourceware.org/git/systemtap.git;branch=master file://0001-Do-not-let-configure-write-a-python-location-into-th.patch file://0001-Install-python-modules-to-correct-library-dir.patch file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch"
packages/qemux86-poky-linux/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dbg: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-dev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-doc: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-locale: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-src: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes-staticdev: PKGV changed from 4.7 [default] to 4.8 [default]
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PV changed from "4.7" to "4.8"
packages/qemux86-poky-linux/systemtap-uprobes/systemtap-uprobes: PKGV changed from 4.7 [default] to 4.8 [default]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-12-15 20:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-15 20:32 [AUH] systemtap-uprobes: upgrading to 4.8 SUCCEEDED auh
  -- strict thread matches above, loose matches on Subject: below --
2022-12-01 15:30 auh
2022-11-15 13:05 auh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.