From c5bf34523d96043ed76290df812535302f2181a9 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 26 Sep 2023 16:22:45 +0800 Subject: enchant2: upgrade 2.5.0 -> 2.6.1 Changelog: ========== -This version tweaks normalization of language tags so that only the part of the tag that specifies country and language is altered; any extra that is not removed is left alone. -This version removes validation of language tags; dictionary names no longer have to be valid language tags. -Debug output now uses GLib's debug system, and can be enabled at run-time by setting the environment variable G_MESSAGES_DEBUG to 'libenchant'. -The Aspell back-end has a fix to let it work with language variants such as "en_GB-ize". -There's more code clean-up, build system updates, and a couple of null -pointer dereference fixes (From OE-Core rev: a0aa3a7211a44b6d152efd1c576dd78e313424b1) Signed-off-by: Wang Mingyu Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/recipes-support/enchant/enchant2_2.5.0.bb | 31 -------------------------- meta/recipes-support/enchant/enchant2_2.6.1.bb | 31 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 meta/recipes-support/enchant/enchant2_2.5.0.bb create mode 100644 meta/recipes-support/enchant/enchant2_2.6.1.bb diff --git a/meta/recipes-support/enchant/enchant2_2.5.0.bb b/meta/recipes-support/enchant/enchant2_2.5.0.bb deleted file mode 100644 index f5ec1ef522..0000000000 --- a/meta/recipes-support/enchant/enchant2_2.5.0.bb +++ /dev/null @@ -1,31 +0,0 @@ -SUMMARY = "Enchant Spell checker API Library" -DESCRIPTION = "A library (and command-line program) that wraps a number of \ -different spelling libraries and programs with a consistent interface." -SECTION = "libs" -HOMEPAGE = "https://abiword.github.io/enchant/" -BUGTRACKER = "https://github.com/AbiWord/enchant/issues/" -LICENSE = "LGPL-2.1-or-later" -LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" - -DEPENDS = "glib-2.0 groff-native" - -inherit autotools pkgconfig github-releases - -SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz" -SRC_URI[sha256sum] = "149e224cdd2ca825d874639578b6246e07f37d5b8f3970658a377a1ef46f2e15" - -GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases" - -S = "${WORKDIR}/enchant-${PV}" - -EXTRA_OEMAKE = "pkgdatadir=${datadir}/enchant-2" - -PACKAGECONFIG ??= "aspell" -PACKAGECONFIG[aspell] = "--with-aspell,--without-aspell,aspell,aspell" -PACKAGECONFIG[hunspell] = "--with-hunspell,--without-hunspell,hunspell,hunspell" - -FILES:${PN} += " \ - ${datadir}/enchant-2 \ - ${libdir}/enchant-2 \ -" -FILES:${PN}-staticdev += "${libdir}/enchant-2/*.a" diff --git a/meta/recipes-support/enchant/enchant2_2.6.1.bb b/meta/recipes-support/enchant/enchant2_2.6.1.bb new file mode 100644 index 0000000000..a3510a8705 --- /dev/null +++ b/meta/recipes-support/enchant/enchant2_2.6.1.bb @@ -0,0 +1,31 @@ +SUMMARY = "Enchant Spell checker API Library" +DESCRIPTION = "A library (and command-line program) that wraps a number of \ +different spelling libraries and programs with a consistent interface." +SECTION = "libs" +HOMEPAGE = "https://abiword.github.io/enchant/" +BUGTRACKER = "https://github.com/AbiWord/enchant/issues/" +LICENSE = "LGPL-2.1-or-later" +LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" + +DEPENDS = "glib-2.0 groff-native" + +inherit autotools pkgconfig github-releases + +SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz" +SRC_URI[sha256sum] = "f24e12469137ae1d03140bb9032a47a5947c36f4d1e2f12b929061005eb15279" + +GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases" + +S = "${WORKDIR}/enchant-${PV}" + +EXTRA_OEMAKE = "pkgdatadir=${datadir}/enchant-2" + +PACKAGECONFIG ??= "aspell" +PACKAGECONFIG[aspell] = "--with-aspell,--without-aspell,aspell,aspell" +PACKAGECONFIG[hunspell] = "--with-hunspell,--without-hunspell,hunspell,hunspell" + +FILES:${PN} += " \ + ${datadir}/enchant-2 \ + ${libdir}/enchant-2 \ +" +FILES:${PN}-staticdev += "${libdir}/enchant-2/*.a" -- cgit v1.2.3-54-g00ecf