From 557ab125911811b59e96ecd82ec47307367fc017 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 8 Jan 2024 21:23:13 +0800 Subject: libjcat: upgrade 0.1.14 -> 0.2.0 Changelog ======== - Add support for verifying firmware transparency checkpoints - Add various bitcounting functions for future use - Allow creating and validating SHA512 checksums - Allow verifying the checksum of a payload - Sprinkle __attribute__((nonnull)) to give a little more compile-time safety Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-gnome/libjcat/libjcat_0.1.14.bb | 34 ------------------------- meta-oe/recipes-gnome/libjcat/libjcat_0.2.0.bb | 34 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 34 deletions(-) delete mode 100644 meta-oe/recipes-gnome/libjcat/libjcat_0.1.14.bb create mode 100644 meta-oe/recipes-gnome/libjcat/libjcat_0.2.0.bb diff --git a/meta-oe/recipes-gnome/libjcat/libjcat_0.1.14.bb b/meta-oe/recipes-gnome/libjcat/libjcat_0.1.14.bb deleted file mode 100644 index 782833b228..0000000000 --- a/meta-oe/recipes-gnome/libjcat/libjcat_0.1.14.bb +++ /dev/null @@ -1,34 +0,0 @@ -SUMMARY = "Library for reading and writing Jcat files" -LICENSE = "LGPL-2.1-only" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" - -DEPENDS = "\ - glib-2.0 \ - json-glib \ -" - -SRC_URI = "\ - git://github.com/hughsie/libjcat.git;branch=main;protocol=https \ - file://run-ptest \ -" -SRCREV = "d9cf9ebc4237252a82f88d9e99bea0c4b398c08a" -S = "${WORKDIR}/git" - -inherit gobject-introspection gtk-doc meson ptest-gnome vala lib_package - -PACKAGECONFIG ??= "\ - gpg \ - pkcs7 \ - ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ -" -PACKAGECONFIG[gpg] = "-Dgpg=true,-Dgpg=false,gpgme" -PACKAGECONFIG[pkcs7] = "-Dpkcs7=true,-Dpkcs7=false,gnutls gnutls-native" -PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" - -# manpage generation is broken because help2man needs to run the target binary on the host... -EXTRA_OEMESON = "-Dman=false" -GTKDOC_MESON_OPTION = "gtkdoc" - -RDEPENDS:${PN}:class-target = "\ - ${@bb.utils.contains('PACKAGECONFIG', 'gpg', 'gnupg', '', d)} \ -" diff --git a/meta-oe/recipes-gnome/libjcat/libjcat_0.2.0.bb b/meta-oe/recipes-gnome/libjcat/libjcat_0.2.0.bb new file mode 100644 index 0000000000..83fb234fb3 --- /dev/null +++ b/meta-oe/recipes-gnome/libjcat/libjcat_0.2.0.bb @@ -0,0 +1,34 @@ +SUMMARY = "Library for reading and writing Jcat files" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" + +DEPENDS = "\ + glib-2.0 \ + json-glib \ +" + +SRC_URI = "\ + git://github.com/hughsie/libjcat.git;branch=main;protocol=https \ + file://run-ptest \ +" +SRCREV = "60bb85d53d5da74903ab1e227fbecfa3a3be1b05" +S = "${WORKDIR}/git" + +inherit gobject-introspection gtk-doc meson ptest-gnome vala lib_package + +PACKAGECONFIG ??= "\ + gpg \ + pkcs7 \ + ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ +" +PACKAGECONFIG[gpg] = "-Dgpg=true,-Dgpg=false,gpgme" +PACKAGECONFIG[pkcs7] = "-Dpkcs7=true,-Dpkcs7=false,gnutls gnutls-native" +PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" + +# manpage generation is broken because help2man needs to run the target binary on the host... +EXTRA_OEMESON = "-Dman=false" +GTKDOC_MESON_OPTION = "gtkdoc" + +RDEPENDS:${PN}:class-target = "\ + ${@bb.utils.contains('PACKAGECONFIG', 'gpg', 'gnupg', '', d)} \ +" -- cgit v1.2.3-54-g00ecf