diff options
author | Ross Burton <ross.burton@arm.com> | 2025-06-09 12:19:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-12 11:03:43 +0100 |
commit | fe0b0ae0818829b05ac28ff20d2d1e2b70932665 (patch) | |
tree | 09a0098d5bc17f076b3f934f9bb91e259949e9ae | |
parent | 4dc6974afe4ce5ee137c9db0db903030da9d2554 (diff) | |
download | poky-fe0b0ae0818829b05ac28ff20d2d1e2b70932665.tar.gz |
squashfs-tools: 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, drop the explicit PV, and set the tag
name in the SRC_URI to verify the SHA.
(From OE-Core rev: 8529dbae1b345d1517023dae09637a4baad9ffe8)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/squashfs-tools/squashfs-tools_4.6.1.bb (renamed from meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.6.1.bb index 982a43f889..51a2fbdb93 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.6.1.bb | |||
@@ -7,9 +7,9 @@ SECTION = "base" | |||
7 | LICENSE = "GPL-2.0-only" | 7 | LICENSE = "GPL-2.0-only" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
9 | 9 | ||
10 | PV = "4.6.1" | ||
11 | SRCREV = "d8cb82d9840330f9344ec37b992595b5d7b44184" | ||
12 | SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https;branch=v6.1.1" | 10 | SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https;branch=v6.1.1" |
11 | SRCREV = "d8cb82d9840330f9344ec37b992595b5d7b44184" | ||
12 | |||
13 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" | 13 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" |
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |