* [ptxdist] [PATCH 1/2] libtraceevent: version bump 1.8.4 -> 1.9.0
@ 2026-09-22 12:12 Sven Püschel
2026-09-22 12:12 ` [ptxdist] [PATCH 2/2] trace-cmd: version bump 3.3.1 -> 3.4 Sven Püschel
0 siblings, 1 reply; 2+ messages in thread
From: Sven Püschel @ 2026-09-22 12:12 UTC (permalink / raw)
To: ptxdist; +Cc: Sven Püschel
Added license files. The SCSI plugin is one of the few files with the
GPL-2.0 license.
Also update the deprecated version specifiers to the newer -only
suffixed variants.
Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
---
rules/libtraceevent.make | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/rules/libtraceevent.make b/rules/libtraceevent.make
index 02ce00b92..87794938e 100644
--- a/rules/libtraceevent.make
+++ b/rules/libtraceevent.make
@@ -14,14 +14,19 @@ PACKAGES-$(PTXCONF_LIBTRACEEVENT) += libtraceevent
#
# Paths and names
#
-LIBTRACEEVENT_VERSION := 1.8.4
-LIBTRACEEVENT_SHA256 := d4d206a9bf53f613f7e2e6bc10c8909c895456f2ea37e03f6741de77c9c9532f
+LIBTRACEEVENT_VERSION := 1.9.0
+LIBTRACEEVENT_SHA256 := 1ed2e47cfd44080fda9c9e33be4b128680958001ced286fe719abc85136b259d
LIBTRACEEVENT := libtraceevent-$(LIBTRACEEVENT_VERSION)
LIBTRACEEVENT_SUFFIX := tar.xz
LIBTRACEEVENT_URL := https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git;tag=libtraceevent-$(LIBTRACEEVENT_VERSION)
LIBTRACEEVENT_SOURCE := $(SRCDIR)/$(LIBTRACEEVENT).$(LIBTRACEEVENT_SUFFIX)
LIBTRACEEVENT_DIR := $(BUILDDIR)/$(LIBTRACEEVENT)
-LIBTRACEEVENT_LICENSE := LGPL-2.1 AND GPL-2.0
+LIBTRACEEVENT_LICENSE := LGPL-2.1-only AND GPL-2.0-only
+LIBTRACEEVENT_LICENSE_FILES := \
+ file://LICENSES/GPL-2.0;md5=e6a75371ba4d16749254a51215d13f97 \
+ file://LICENSES/LGPL-2.1;md5=b370887980db5dd40659b50909238dbd \
+ file://plugins/plugin_scsi.c;startline=1;endline=1;md5=50d2ba0afecd20f74c12a4bdbcfcfe61 \
+ file://src/event-parse.c;startline=1;endline=11;md5=3373f94e7cee2c35310a0e3bf7ebf6dc
# ----------------------------------------------------------------------------
# Prepare
--
2.47.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* [ptxdist] [PATCH 2/2] trace-cmd: version bump 3.3.1 -> 3.4
2026-09-22 12:12 [ptxdist] [PATCH 1/2] libtraceevent: version bump 1.8.4 -> 1.9.0 Sven Püschel
@ 2026-09-22 12:12 ` Sven Püschel
0 siblings, 0 replies; 2+ messages in thread
From: Sven Püschel @ 2026-09-22 12:12 UTC (permalink / raw)
To: ptxdist; +Cc: Sven Püschel
The meson patch is now upstreamed and therefore removed.
The license folder also contains the LGPL-2.1 license.
This is mainly used for the library (which we don't install).
But as trace-cmd also uses LGPL-2.1 header files and it's compilation
fails without them (tested with the list.h header),
add the LGPL-2.1 license (with the newer LGPL-2.1-only naming).
Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
---
...-add-options-for-doc-and-utest-build.patch | 47 -------------------
patches/trace-cmd-v3.3.1/series | 4 --
rules/trace-cmd.make | 12 +++--
3 files changed, 9 insertions(+), 54 deletions(-)
delete mode 100644 patches/trace-cmd-v3.3.1/0001-trace-cmd-meson-add-options-for-doc-and-utest-build.patch
delete mode 100644 patches/trace-cmd-v3.3.1/series
diff --git a/patches/trace-cmd-v3.3.1/0001-trace-cmd-meson-add-options-for-doc-and-utest-build.patch b/patches/trace-cmd-v3.3.1/0001-trace-cmd-meson-add-options-for-doc-and-utest-build.patch
deleted file mode 100644
index 225b9c9f8..000000000
--- a/patches/trace-cmd-v3.3.1/0001-trace-cmd-meson-add-options-for-doc-and-utest-build.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From: Lucas Stach <l.stach@pengutronix.de>
-Date: Tue, 10 Dec 2024 11:45:33 +0100
-Subject: [PATCH] trace-cmd meson: add options for doc and utest build
-
-In some cases building documentation or utest is not desired.
-Add meson options to allow skipping those build targets.
-
-Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
----
- meson.build | 5 ++++-
- meson_options.txt | 4 ++++
- 2 files changed, 8 insertions(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index 4773f4a941b1..237d9b400ea5 100644
---- a/meson.build
-+++ b/meson.build
-@@ -140,9 +140,11 @@ subdir('lib/trace-cmd')
- # trace-cmd
- subdir('tracecmd')
- subdir('python')
--if cunit_dep.found()
-+if get_option('utest') and cunit_dep.found()
- subdir('utest')
- endif
-+
-+if get_option('doc')
- subdir('Documentation/trace-cmd')
-
- custom_target(
-@@ -150,3 +152,4 @@ custom_target(
- output: 'docs',
- depends: [html, man],
- command: ['echo'])
-+endif
-diff --git a/meson_options.txt b/meson_options.txt
-index 2d5d7457bed5..37d72ff29d87 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -21,3 +21,7 @@ option('docbook-suppress-sp', type : 'boolean', value : false,
- description : 'docbook suppress sp')
- option('python', type : 'combo', choices : ['auto', 'true', 'false'],
- description : 'Generate trac-cmd Python bindings')
-+option('doc', type : 'boolean', value: true,
-+ description : 'produce documentation')
-+option('utest', type : 'boolean', value: true,
-+ description : 'build utest')
diff --git a/patches/trace-cmd-v3.3.1/series b/patches/trace-cmd-v3.3.1/series
deleted file mode 100644
index f1269bcee..000000000
--- a/patches/trace-cmd-v3.3.1/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-trace-cmd-meson-add-options-for-doc-and-utest-build.patch
-# 926286b131781d169c103dd559e50a8e - git-ptx-patches magic
diff --git a/rules/trace-cmd.make b/rules/trace-cmd.make
index dcebed969..d2e1ec0e6 100644
--- a/rules/trace-cmd.make
+++ b/rules/trace-cmd.make
@@ -14,14 +14,20 @@ PACKAGES-$(PTXCONF_TRACE_CMD) += trace-cmd
#
# Paths and names
#
-TRACE_CMD_VERSION := 3.3.1
-TRACE_CMD_SHA256 := 2efe103389367e93c764c4a788880ba51018a65dec21b0411965a5f06a6338c1
+TRACE_CMD_VERSION := 3.4
+TRACE_CMD_SHA256 := 604085ab395cc2cb84397dc3d209ea0d0b15ae506f8ea91ff45c86e5a050213c
TRACE_CMD := trace-cmd-v$(TRACE_CMD_VERSION)
TRACE_CMD_SUFFIX := tar.gz
TRACE_CMD_URL := https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/$(TRACE_CMD).$(TRACE_CMD_SUFFIX)
TRACE_CMD_SOURCE := $(SRCDIR)/$(TRACE_CMD).$(TRACE_CMD_SUFFIX)
TRACE_CMD_DIR := $(BUILDDIR)/$(TRACE_CMD)
-TRACE_CMD_LICENSE := GPL-2.0-only
+TRACE_CMD_LICENSE := LGPL-2.1-only AND GPL-2.0-only
+TRACE_CMD_LICENSE_FILES := \
+ file://COPYING;md5=873f48a813bded3de6ebc54e6880c4ac \
+ file://LICENSES/GPL-2.0;md5=e6a75371ba4d16749254a51215d13f97 \
+ file://LICENSES/LGPL-2.1;md5=b370887980db5dd40659b50909238dbd \
+ file://tracecmd/trace-cmd.c;startline=1;endline=5;md5=2d40f2034a6256f8c0626afae63d082e \
+ file://tracecmd/include/list.h;startline=1;endline=5;md5=59c09346cdcb6e83d9dcb190e3ea6e87
# ----------------------------------------------------------------------------
# Prepare
--
2.47.3
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-22 12:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-22 12:12 [ptxdist] [PATCH 1/2] libtraceevent: version bump 1.8.4 -> 1.9.0 Sven Püschel
2026-09-22 12:12 ` [ptxdist] [PATCH 2/2] trace-cmd: version bump 3.3.1 -> 3.4 Sven Püschel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox