diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-09-27 14:09:21 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-28 08:01:10 +0100 |
| commit | afefe7de281e558ed823460f80ddc631e718feb3 (patch) | |
| tree | 69cc46fb93265fcbc2bcf9064829b088fa2dbed5 /meta/recipes-support/re2c | |
| parent | 35708f8860adbf51549b2b2b07c176ba34eed812 (diff) | |
| download | poky-afefe7de281e558ed823460f80ddc631e718feb3.tar.gz | |
meta: fix version checks in all github recipes using the github-releases class
(From OE-Core rev: b04316bdd28b7945c2c91b4e43c007b650eedc14)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/re2c')
| -rw-r--r-- | meta/recipes-support/re2c/re2c_3.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-support/re2c/re2c_3.0.bb b/meta/recipes-support/re2c/re2c_3.0.bb index ab047601ae..f8f85125a3 100644 --- a/meta/recipes-support/re2c/re2c_3.0.bb +++ b/meta/recipes-support/re2c/re2c_3.0.bb | |||
| @@ -7,10 +7,10 @@ SECTION = "devel" | |||
| 7 | LICENSE = "PD" | 7 | LICENSE = "PD" |
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=64eca4d8a3b67f9dc7656094731a2c8d" | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=64eca4d8a3b67f9dc7656094731a2c8d" |
| 9 | 9 | ||
| 10 | SRC_URI = "https://github.com/skvadrik/re2c/releases/download/${PV}/${BPN}-${PV}.tar.xz" | 10 | SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz" |
| 11 | SRC_URI[sha256sum] = "b3babbbb1461e13fe22c630a40c43885efcfbbbb585830c6f4c0d791cf82ba0b" | 11 | SRC_URI[sha256sum] = "b3babbbb1461e13fe22c630a40c43885efcfbbbb585830c6f4c0d791cf82ba0b" |
| 12 | UPSTREAM_CHECK_URI = "https://github.com/skvadrik/re2c/releases" | 12 | GITHUB_BASE_URI = "https://github.com/skvadrik/re2c/releases" |
| 13 | 13 | ||
| 14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
| 15 | 15 | ||
| 16 | inherit autotools | 16 | inherit autotools github-releases |
