diff options
author | Ross Burton <ross.burton@arm.com> | 2025-06-09 12:19:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-09 17:43:42 +0100 |
commit | 81998e407f6a586ee32ec5d0106a671db0273b22 (patch) | |
tree | 6dbc82ac890223ee12b59ab0a15fa094affb3ab5 | |
parent | 7fb980ed735498663a213c94f1b9938b02f279be (diff) | |
download | poky-81998e407f6a586ee32ec5d0106a671db0273b22.tar.gz |
sassc: 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: 51d406b519360aa03c919d01d0d3c602cf17bd5f)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/sass/sassc_3.6.2.bb (renamed from meta/recipes-support/sass/sassc_git.bb) | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-support/sass/sassc_git.bb b/meta/recipes-support/sass/sassc_3.6.2.bb index 64e92f48cf..4d4dbc03fe 100644 --- a/meta/recipes-support/sass/sassc_git.bb +++ b/meta/recipes-support/sass/sassc_3.6.2.bb | |||
@@ -7,12 +7,11 @@ DEPENDS = "libsass" | |||
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools pkgconfig |
9 | 9 | ||
10 | SRC_URI = "git://github.com/sass/sassc.git;branch=master;protocol=https \ | 10 | SRC_URI = "git://github.com/sass/sassc.git;protocol=https;branch=master \ |
11 | file://0001-Remove-sassc_version.h-from-source-directory.patch" | 11 | file://0001-Remove-sassc_version.h-from-source-directory.patch" |
12 | 12 | ||
13 | SRCREV = "66f0ef37e7f0ad3a65d2f481eff09d09408f42d0" | 13 | SRCREV = "66f0ef37e7f0ad3a65d2f481eff09d09408f42d0" |
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | PV = "3.6.2" | ||
16 | 15 | ||
17 | CVE_STATUS[CVE-2022-43357] = "cpe-incorrect: this is CVE for libsass, not sassc wrapper" | 16 | CVE_STATUS[CVE-2022-43357] = "cpe-incorrect: this is CVE for libsass, not sassc wrapper" |
18 | 17 | ||