From 6889cc6d1c6542888b9f17e2dfaa22a9765787d8 Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Wed, 9 Jun 2021 08:38:10 +0200 Subject: gmime: upgrade 3.2.6 -> 3.2.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added some configure logic to auto-detect the system shift-jis charset alias. (issue #81) * Fixed tests/Makefile.am to exit with a non-negative value (issue #82) * Fixed logic to skip expired or revoked gpg subkeys when looking for the correct subkey to use for signing or encrypting. (issue #88) * Fixed a regression introduced into 3.2.6 as part of the header parsder rewrite that lost the ability to warn about invalid headers for non-toplevel MIME parts. (issue #89) * Fixed S/MIME to always set GPGME_KEYLIST_MODE_VALIDATE when looking up certificates as this is needed in order to correctly populate the GMimeCertificates (issue #90) Signed-off-by: Andreas Müller Signed-off-by: Khem Raj --- meta-oe/recipes-gnome/gmime/gmime/iconv-detect.h | 1 + meta-oe/recipes-gnome/gmime/gmime_3.2.6.bb | 19 ------------------- meta-oe/recipes-gnome/gmime/gmime_3.2.7.bb | 18 ++++++++++++++++++ 3 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 meta-oe/recipes-gnome/gmime/gmime_3.2.6.bb create mode 100644 meta-oe/recipes-gnome/gmime/gmime_3.2.7.bb (limited to 'meta-oe/recipes-gnome/gmime') diff --git a/meta-oe/recipes-gnome/gmime/gmime/iconv-detect.h b/meta-oe/recipes-gnome/gmime/gmime/iconv-detect.h index 714cb5aa9d..a899ce0ad4 100644 --- a/meta-oe/recipes-gnome/gmime/gmime/iconv-detect.h +++ b/meta-oe/recipes-gnome/gmime/gmime/iconv-detect.h @@ -3,3 +3,4 @@ #define ICONV_ISO_INT_FORMAT "iso-%u-%u" #define ICONV_ISO_STR_FORMAT "iso-%u-%s" #define ICONV_10646 "iso-10646" +#define ICONV_SHIFT_JIS "shift-jis" diff --git a/meta-oe/recipes-gnome/gmime/gmime_3.2.6.bb b/meta-oe/recipes-gnome/gmime/gmime_3.2.6.bb deleted file mode 100644 index 4ae13e7efe..0000000000 --- a/meta-oe/recipes-gnome/gmime/gmime_3.2.6.bb +++ /dev/null @@ -1,19 +0,0 @@ -LICENSE = "LGPL-2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" -DESCRIPTION = "Runtime libraries for parsing and creating MIME mail" -SECTION = "libs" -DEPENDS = "glib-2.0 zlib" - -inherit gnomebase gobject-introspection - -SRC_URI += "file://iconv-detect.h \ - file://nodolt.patch" - -SRC_URI[archive.md5sum] = "656548dc431004d1ebf95e5d0bb4b9c8" -SRC_URI[archive.sha256sum] = "abff194c7c4802fba2e233890d09dde8bf7170c3ad5e13000601c8d5b3c44717" - -export ac_cv_have_iconv_detect_h="yes" - -do_configure_append () { - cp ${WORKDIR}/iconv-detect.h ${S} -} diff --git a/meta-oe/recipes-gnome/gmime/gmime_3.2.7.bb b/meta-oe/recipes-gnome/gmime/gmime_3.2.7.bb new file mode 100644 index 0000000000..e70b747892 --- /dev/null +++ b/meta-oe/recipes-gnome/gmime/gmime_3.2.7.bb @@ -0,0 +1,18 @@ +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" +DESCRIPTION = "Runtime libraries for parsing and creating MIME mail" +SECTION = "libs" + +DEPENDS = "glib-2.0 zlib" + +inherit gnomebase gobject-introspection + +SRC_URI += "file://iconv-detect.h \ + file://nodolt.patch" +SRC_URI[archive.sha256sum] = "2aea96647a468ba2160a64e17c6dc6afe674ed9ac86070624a3f584c10737d44" + +export ac_cv_have_iconv_detect_h="yes" + +do_configure_append () { + cp ${WORKDIR}/iconv-detect.h ${S} +} -- cgit 1.2.3-korg