diff options
author | Joe Slater <joe.slater@windriver.com> | 2023-03-10 15:14:27 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-03-10 17:21:15 -0800 |
commit | a226bd8ec3a41cb41aaf7925eac92c72fcebf86a (patch) | |
tree | b7076d0a867f788781200e2a8053a4c42432e430 | |
parent | b3ffd3771fddd857207f8018e3c47c06f6a5312e (diff) | |
download | meta-openembedded-a226bd8ec3a41cb41aaf7925eac92c72fcebf86a.tar.gz |
re2: move to version 2023-03-01
/usr/lib64/libre2.so is now a symlink instead of being
the library itself. We choose to ignore it for QA.
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/re2/re2_2023.03.01.bb (renamed from meta-oe/recipes-support/re2/re2_2020.11.01.bb) | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/re2/re2_2020.11.01.bb b/meta-oe/recipes-support/re2/re2_2023.03.01.bb index 5ec1c6b5ab..78bf695a4a 100644 --- a/meta-oe/recipes-support/re2/re2_2020.11.01.bb +++ b/meta-oe/recipes-support/re2/re2_2023.03.01.bb | |||
@@ -3,7 +3,8 @@ HOMEPAGE = "https://github.com/google/re2/" | |||
3 | LICENSE = "BSD-3-Clause" | 3 | LICENSE = "BSD-3-Clause" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b5c31eb512bdf3cb11ffd5713963760" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b5c31eb512bdf3cb11ffd5713963760" |
5 | 5 | ||
6 | SRCREV = "166dbbeb3b0ab7e733b278e8f42a84f6882b8a25" | 6 | # tag 2023-03-01 |
7 | SRCREV = "241e2e430836e80f93d704d1f06cd3e7fe3100f5" | ||
7 | 8 | ||
8 | SRC_URI = "git://github.com/google/re2.git;branch=main;protocol=https" | 9 | SRC_URI = "git://github.com/google/re2.git;branch=main;protocol=https" |
9 | 10 | ||
@@ -16,8 +17,11 @@ EXTRA_OECMAKE += " \ | |||
16 | -DRE2_BUILD_TESTING=OFF \ | 17 | -DRE2_BUILD_TESTING=OFF \ |
17 | " | 18 | " |
18 | 19 | ||
19 | # Don't include so files in dev package | 20 | # ignore .so in /usr/lib64 |
20 | FILES:${PN} = "${libdir}" | 21 | FILES:${PN} = "${libdir}" |
22 | INSANE_SKIP:${PN} += "dev-so" | ||
23 | |||
24 | # Don't include so files in dev package | ||
21 | FILES:${PN}-dev = "${includedir} ${libdir}/cmake" | 25 | FILES:${PN}-dev = "${includedir} ${libdir}/cmake" |
22 | 26 | ||
23 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |