summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libical
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2021-12-13 17:46:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-14 22:46:38 +0000
commitf8494a7343010e12d248905e20f8676668115080 (patch)
treefafba37dab8c45c1672daacbe296c9175dcd807b /meta/recipes-support/libical
parentc7c5fc879c37aef44a5ab9719a2449759db07690 (diff)
downloadpoky-f8494a7343010e12d248905e20f8676668115080.tar.gz
libical: upgrade to 3.0.12
Disable tests to save some build time as we can't install them. (From OE-Core rev: dc91910a5ee56af5dee495fafcabab4042431cae) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libical')
-rw-r--r--meta/recipes-support/libical/libical_3.0.12.bb (renamed from meta/recipes-support/libical/libical_3.0.11.bb)12
1 files changed, 7 insertions, 5 deletions
diff --git a/meta/recipes-support/libical/libical_3.0.11.bb b/meta/recipes-support/libical/libical_3.0.12.bb
index b16081e9e2..b2b2211b9b 100644
--- a/meta/recipes-support/libical/libical_3.0.11.bb
+++ b/meta/recipes-support/libical/libical_3.0.12.bb
@@ -12,14 +12,13 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=1910a2a76ddf6a9ba369182494170d87 \
12 " 12 "
13SECTION = "libs" 13SECTION = "libs"
14 14
15SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BP}.tar.gz \ 15SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BP}.tar.gz"
16" 16SRC_URI[sha256sum] = "35095a4cc1a061a3de0f332c2dc728226cf127fa0baa818e9f8856cee6d35830"
17SRC_URI[sha256sum] = "1e6c5e10c5a48f7a40c68958055f0e2759d9ab3563aca17273fe35a5df7dbbf1"
18UPSTREAM_CHECK_URI = "https://github.com/libical/libical/releases" 17UPSTREAM_CHECK_URI = "https://github.com/libical/libical/releases"
19 18
20inherit cmake pkgconfig 19inherit cmake pkgconfig
21 20
22DEPENDS:append:class-target = " libical-native" 21DEPENDS += "libical-native"
23 22
24PACKAGECONFIG ??= "icu glib" 23PACKAGECONFIG ??= "icu glib"
25PACKAGECONFIG[bdb] = ",-DCMAKE_DISABLE_FIND_PACKAGE_BDB=True,db" 24PACKAGECONFIG[bdb] = ",-DCMAKE_DISABLE_FIND_PACKAGE_BDB=True,db"
@@ -29,13 +28,16 @@ PACKAGECONFIG[icu] = ",-DCMAKE_DISABLE_FIND_PACKAGE_ICU=True,icu"
29 28
30# No need to use perl-native, the host perl is sufficient. 29# No need to use perl-native, the host perl is sufficient.
31EXTRA_OECMAKE += "-DPERL_EXECUTABLE=${HOSTTOOLS_DIR}/perl" 30EXTRA_OECMAKE += "-DPERL_EXECUTABLE=${HOSTTOOLS_DIR}/perl"
31# Disable the test suite as we can't install it
32EXTRA_OECMAKE += "-DLIBICAL_BUILD_TESTING=false"
32# doc build fails with linker error (??) for libical-glib so disable it 33# doc build fails with linker error (??) for libical-glib so disable it
33EXTRA_OECMAKE += "-DICAL_BUILD_DOCS=false" 34EXTRA_OECMAKE += "-DICAL_BUILD_DOCS=false"
34 35
36# Tell the cross-libical where the tool it needs to build is
35EXTRA_OECMAKE:append:class-target = " -DIMPORT_ICAL_GLIB_SRC_GENERATOR=${STAGING_LIBDIR_NATIVE}/cmake/LibIcal/IcalGlibSrcGenerator.cmake" 37EXTRA_OECMAKE:append:class-target = " -DIMPORT_ICAL_GLIB_SRC_GENERATOR=${STAGING_LIBDIR_NATIVE}/cmake/LibIcal/IcalGlibSrcGenerator.cmake"
36 38
37do_install:append () { 39do_install:append () {
38 # Remove build host references 40 # Remove build host references (https://github.com/libical/libical/issues/532)
39 sed -i \ 41 sed -i \
40 -e 's,${STAGING_LIBDIR},${libdir},g' \ 42 -e 's,${STAGING_LIBDIR},${libdir},g' \
41 -e 's,${STAGING_INCDIR},${includedir},g' \ 43 -e 's,${STAGING_INCDIR},${includedir},g' \