summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-04-07 18:12:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-10 11:05:34 +0100
commit8bb018f1d18111e76e349f00ef23927d1dc87045 (patch)
tree130f5feb37d4dbef3e559b1607160f3b8afa5a82
parentdb026b59724c1115167238be050c989212eb6ac2 (diff)
downloadpoky-8bb018f1d18111e76e349f00ef23927d1dc87045.tar.gz
libjpeg-turbo: fix upstream release checking
New releases are no longer made to SourceForge and the GitHub releases are considered official according to https://libjpeg-turbo.org, so inherit github-releases and update the SRC_URI. This now reports that we need to upgrade to 3.1.0. (From OE-Core rev: e7e11ab30a40ba8862e62c4cc1a0af91ff93b6e5) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb7
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
index 4ff4cec721..56bab4daca 100644
--- a/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
+++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
@@ -8,11 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.md;md5=2a8e0d8226a102f07ab63ed7fd6ce155"
8DEPENDS:append:x86-64:class-target = " nasm-native" 8DEPENDS:append:x86-64:class-target = " nasm-native"
9DEPENDS:append:x86:class-target = " nasm-native" 9DEPENDS:append:x86:class-target = " nasm-native"
10 10
11SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz" 11SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.gz"
12
13SRC_URI[sha256sum] = "22429507714ae147b3acacd299e82099fce5d9f456882fc28e252e4579ba2a75" 12SRC_URI[sha256sum] = "22429507714ae147b3acacd299e82099fce5d9f456882fc28e252e4579ba2a75"
14UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/libjpeg-turbo/files/"
15UPSTREAM_CHECK_REGEX = "/libjpeg-turbo/files/(?P<pver>(\d+[\.\-_]*)+)/"
16 13
17PE = "1" 14PE = "1"
18 15
@@ -22,7 +19,7 @@ RPROVIDES:${PN} += "jpeg"
22RREPLACES:${PN} += "jpeg" 19RREPLACES:${PN} += "jpeg"
23RCONFLICTS:${PN} += "jpeg" 20RCONFLICTS:${PN} += "jpeg"
24 21
25inherit cmake pkgconfig 22inherit cmake pkgconfig github-releases
26 23
27export NASMENV = "--reproducible --debug-prefix-map=${WORKDIR}=${TARGET_DBGSRC_DIR}" 24export NASMENV = "--reproducible --debug-prefix-map=${WORKDIR}=${TARGET_DBGSRC_DIR}"
28 25