diff mbox series

[meta-oe,1/1] re2: move to version 2023-03-01

Message ID 20230310231427.3972351-1-joe.slater@windriver.com
State Under Review
Headers show
Series [meta-oe,1/1] re2: move to version 2023-03-01 | expand

Commit Message

Slater, Joseph March 10, 2023, 11:14 p.m. UTC
/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>
---
 .../re2/{re2_2020.11.01.bb => re2_2023.03.01.bb}          | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/re2/{re2_2020.11.01.bb => re2_2023.03.01.bb} (80%)
diff mbox series

Patch

diff --git a/meta-oe/recipes-support/re2/re2_2020.11.01.bb b/meta-oe/recipes-support/re2/re2_2023.03.01.bb
similarity index 80%
rename from meta-oe/recipes-support/re2/re2_2020.11.01.bb
rename to meta-oe/recipes-support/re2/re2_2023.03.01.bb
index 5ec1c6b5a..78bf695a4 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/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b5c31eb512bdf3cb11ffd5713963760"
 
-SRCREV = "166dbbeb3b0ab7e733b278e8f42a84f6882b8a25"
+# tag 2023-03-01
+SRCREV = "241e2e430836e80f93d704d1f06cd3e7fe3100f5"
 
 SRC_URI = "git://github.com/google/re2.git;branch=main;protocol=https"
 
@@ -16,8 +17,11 @@  EXTRA_OECMAKE += " \
 	-DRE2_BUILD_TESTING=OFF \
 "
 
-# Don't include so files in dev package
+# ignore .so in /usr/lib64
 FILES:${PN} = "${libdir}"
+INSANE_SKIP:${PN} += "dev-so"
+
+# Don't include so files in dev package
 FILES:${PN}-dev = "${includedir} ${libdir}/cmake"
 
 BBCLASSEXTEND = "native nativesdk"