diff options
author | Ross Burton <ross.burton@arm.com> | 2025-06-09 12:19:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-09 17:43:42 +0100 |
commit | d304bce4364dac2aca0fdaf782a9db782688ff08 (patch) | |
tree | c7d22c7a218c11e471441c369517e4442b00bdea | |
parent | 667be7b685eeb66d9cbbe338a2635b293cc78bc4 (diff) | |
download | poky-d304bce4364dac2aca0fdaf782a9db782688ff08.tar.gz |
systemtap: put version in recipe filename
A recipe that fetches from git but is otherwise a released version
should not be using _git.bb recipe names.
Put the version in the filename and drop the explicit PV.
(From OE-Core rev: bf866a99d920331bc5c08c3dccc86f71b2d1b3bb)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap-native_5.2.bb (renamed from meta/recipes-kernel/systemtap/systemtap-native_git.bb) | 3 | ||||
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_5.2.bb (renamed from meta/recipes-kernel/systemtap/systemtap_git.bb) | 0 | ||||
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.inc | 6 |
3 files changed, 4 insertions, 5 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap-native_git.bb b/meta/recipes-kernel/systemtap/systemtap-native_5.2.bb index 2690b259c8..8befa7a7ea 100644 --- a/meta/recipes-kernel/systemtap/systemtap-native_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap-native_5.2.bb | |||
@@ -1,5 +1,4 @@ | |||
1 | 1 | require systemtap_${PV}.bb | |
2 | require systemtap_git.bb | ||
3 | 2 | ||
4 | inherit_defer native | 3 | inherit_defer native |
5 | 4 | ||
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_5.2.bb index 254bac4d6f..254bac4d6f 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_5.2.bb | |||
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc index bbb2105b5a..a6688f2604 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.inc +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc | |||
@@ -1,14 +1,14 @@ | |||
1 | LICENSE = "GPL-2.0-only" | 1 | LICENSE = "GPL-2.0-only" |
2 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | 2 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
3 | SRCREV = "3a92ffe673c1621309a0b60892114495b651c9de" | ||
4 | PV = "5.2" | ||
5 | 3 | ||
6 | SRC_URI = "git://sourceware.org/git/systemtap.git;branch=master;protocol=https \ | 4 | SRC_URI = "git://sourceware.org/git/systemtap.git;protocol=https;branch=master \ |
7 | file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \ | 5 | file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \ |
8 | file://0001-Install-python-modules-to-correct-library-dir.patch \ | 6 | file://0001-Install-python-modules-to-correct-library-dir.patch \ |
9 | file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \ | 7 | file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \ |
10 | " | 8 | " |
11 | 9 | ||
10 | SRCREV = "3a92ffe673c1621309a0b60892114495b651c9de" | ||
11 | |||
12 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips|riscv64).*-linux' | 12 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips|riscv64).*-linux' |
13 | COMPATIBLE_HOST:libc-musl = 'null' | 13 | COMPATIBLE_HOST:libc-musl = 'null' |
14 | 14 | ||