From c6d54048f69b2a1b2198979bab6a7f6a5940f0c5 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 19 Sep 2023 15:35:35 +0800 Subject: libtommath: upgrade 1.2.0 -> 1.2.1 Changelog: -- Bugfix release because of potential integer overflow c.f. PR #546 resp. CVE-2023-36328 Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-support/libtommath/libtommath_1.2.0.bb | 23 ---------------------- .../recipes-support/libtommath/libtommath_1.2.1.bb | 23 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 meta-oe/recipes-support/libtommath/libtommath_1.2.0.bb create mode 100644 meta-oe/recipes-support/libtommath/libtommath_1.2.1.bb diff --git a/meta-oe/recipes-support/libtommath/libtommath_1.2.0.bb b/meta-oe/recipes-support/libtommath/libtommath_1.2.0.bb deleted file mode 100644 index 1efccdd843..0000000000 --- a/meta-oe/recipes-support/libtommath/libtommath_1.2.0.bb +++ /dev/null @@ -1,23 +0,0 @@ -SUMMARY = "LibTomMath is a number theoretic multiple-precision integer library" -HOMEPAGE = "https://www.libtom.net/LibTomMath" -SECTION = "libs" -LICENSE = "Unlicense" -LIC_FILES_CHKSUM = "file://LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402" - -DEPENDS = "libtool-cross" - -SRC_URI = "git://github.com/libtom/libtommath.git;protocol=https;branch=master" - -SRCREV = "6ca6898bf37f583c4cc9943441cd60dd69f4b8f2" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE = "'PREFIX=${prefix}' 'DESTDIR=${D}' 'LIBPATH=${libdir}' 'CFLAGS=${CFLAGS}'" - -do_compile() { - oe_runmake -f makefile.shared -} - -do_install() { - oe_runmake -f makefile.shared install -} diff --git a/meta-oe/recipes-support/libtommath/libtommath_1.2.1.bb b/meta-oe/recipes-support/libtommath/libtommath_1.2.1.bb new file mode 100644 index 0000000000..32ec290c16 --- /dev/null +++ b/meta-oe/recipes-support/libtommath/libtommath_1.2.1.bb @@ -0,0 +1,23 @@ +SUMMARY = "LibTomMath is a number theoretic multiple-precision integer library" +HOMEPAGE = "https://www.libtom.net/LibTomMath" +SECTION = "libs" +LICENSE = "Unlicense" +LIC_FILES_CHKSUM = "file://LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402" + +DEPENDS = "libtool-cross" + +SRC_URI = "git://github.com/libtom/libtommath.git;protocol=https;branch=master" + +SRCREV = "97e500351e653472b2ea00b37137ad0414165efe" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE = "'PREFIX=${prefix}' 'DESTDIR=${D}' 'LIBPATH=${libdir}' 'CFLAGS=${CFLAGS}'" + +do_compile() { + oe_runmake -f makefile.shared +} + +do_install() { + oe_runmake -f makefile.shared install +} -- cgit v1.2.3-54-g00ecf