From 49abe28bbab5bb5d5ec026d9e78d84b816eecd47 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 17 Apr 2023 16:04:30 +0800 Subject: boost: upgrade 1.81.0 -> 1.82.0 Changelog: https://www.boost.org/users/history/version_1_82_0.html (From OE-Core rev: 9d9042f58f6bbb7d9f0441436556ceb887887866) Signed-off-by: Wang Mingyu Signed-off-by: Luca Ceresoli Signed-off-by: Richard Purdie --- meta/recipes-support/boost/boost-1.81.0.inc | 20 ---------------- meta/recipes-support/boost/boost-1.82.0.inc | 20 ++++++++++++++++ .../boost/boost-build-native_1.81.0.bb | 28 ---------------------- .../boost/boost-build-native_1.82.0.bb | 28 ++++++++++++++++++++++ meta/recipes-support/boost/boost_1.81.0.bb | 7 ------ meta/recipes-support/boost/boost_1.82.0.bb | 7 ++++++ 6 files changed, 55 insertions(+), 55 deletions(-) delete mode 100644 meta/recipes-support/boost/boost-1.81.0.inc create mode 100644 meta/recipes-support/boost/boost-1.82.0.inc delete mode 100644 meta/recipes-support/boost/boost-build-native_1.81.0.bb create mode 100644 meta/recipes-support/boost/boost-build-native_1.82.0.bb delete mode 100644 meta/recipes-support/boost/boost_1.81.0.bb create mode 100644 meta/recipes-support/boost/boost_1.82.0.bb (limited to 'meta') diff --git a/meta/recipes-support/boost/boost-1.81.0.inc b/meta/recipes-support/boost/boost-1.81.0.inc deleted file mode 100644 index 291796c736..0000000000 --- a/meta/recipes-support/boost/boost-1.81.0.inc +++ /dev/null @@ -1,20 +0,0 @@ -# The Boost web site provides free peer-reviewed portable -# C++ source libraries. The emphasis is on libraries which -# work well with the C++ Standard Library. The libraries are -# intended to be widely useful, and are in regular use by -# thousands of programmers across a broad spectrum of applications. -HOMEPAGE = "http://www.boost.org/" -LICENSE = "BSL-1.0 & MIT & Python-2.0" -LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c" - -BOOST_VER = "${@"_".join(d.getVar("PV").split("."))}" -BOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}" -BOOST_P = "boost_${BOOST_VER}" - -SRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2" -SRC_URI[sha256sum] = "71feeed900fbccca04a3b4f2f84a7c217186f28a940ed8b7ed4725986baf99fa" - -UPSTREAM_CHECK_URI = "http://www.boost.org/users/download/" -UPSTREAM_CHECK_REGEX = "release/(?P.*)/source/" - -S = "${WORKDIR}/${BOOST_P}" diff --git a/meta/recipes-support/boost/boost-1.82.0.inc b/meta/recipes-support/boost/boost-1.82.0.inc new file mode 100644 index 0000000000..39d3c9ce5d --- /dev/null +++ b/meta/recipes-support/boost/boost-1.82.0.inc @@ -0,0 +1,20 @@ +# The Boost web site provides free peer-reviewed portable +# C++ source libraries. The emphasis is on libraries which +# work well with the C++ Standard Library. The libraries are +# intended to be widely useful, and are in regular use by +# thousands of programmers across a broad spectrum of applications. +HOMEPAGE = "http://www.boost.org/" +LICENSE = "BSL-1.0 & MIT & Python-2.0" +LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c" + +BOOST_VER = "${@"_".join(d.getVar("PV").split("."))}" +BOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}" +BOOST_P = "boost_${BOOST_VER}" + +SRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2" +SRC_URI[sha256sum] = "a6e1ab9b0860e6a2881dd7b21fe9f737a095e5f33a3a874afc6a345228597ee6" + +UPSTREAM_CHECK_URI = "http://www.boost.org/users/download/" +UPSTREAM_CHECK_REGEX = "release/(?P.*)/source/" + +S = "${WORKDIR}/${BOOST_P}" diff --git a/meta/recipes-support/boost/boost-build-native_1.81.0.bb b/meta/recipes-support/boost/boost-build-native_1.81.0.bb deleted file mode 100644 index d01c7658d5..0000000000 --- a/meta/recipes-support/boost/boost-build-native_1.81.0.bb +++ /dev/null @@ -1,28 +0,0 @@ -SUMMARY = "Boost.Build" -DESCRIPTION = "B2 makes it easy to build C++ projects, everywhere." -HOMEPAGE = "https://github.com/boostorg/build" -SECTION = "devel" - -LICENSE = "BSL-1.0" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c" - -SRC_URI = "git://github.com/boostorg/build;protocol=https;branch=master" -SRCREV = "0271fafc1141c182d4aaa8db8b1c08a109d04c87" -PE = "1" - -UPSTREAM_CHECK_GITTAGREGEX = "boost-(?P(\d+(\.\d+)+))" - -inherit native - -S = "${WORKDIR}/git" - -do_compile() { - ./bootstrap.sh -} - -do_install() { - HOME=/var/run ./b2 install --prefix=${prefix} staging-prefix=${D}${prefix} -} - -# The build is either release mode (pre-stripped) or debug (-O0). -INSANE_SKIP:${PN} = "already-stripped" diff --git a/meta/recipes-support/boost/boost-build-native_1.82.0.bb b/meta/recipes-support/boost/boost-build-native_1.82.0.bb new file mode 100644 index 0000000000..dcfb65e3d6 --- /dev/null +++ b/meta/recipes-support/boost/boost-build-native_1.82.0.bb @@ -0,0 +1,28 @@ +SUMMARY = "Boost.Build" +DESCRIPTION = "B2 makes it easy to build C++ projects, everywhere." +HOMEPAGE = "https://github.com/boostorg/build" +SECTION = "devel" + +LICENSE = "BSL-1.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c" + +SRC_URI = "git://github.com/boostorg/build;protocol=https;branch=master" +SRCREV = "9f488e003a568dffe0caed05d86ed6f1a8f8c7f3" +PE = "1" + +UPSTREAM_CHECK_GITTAGREGEX = "boost-(?P(\d+(\.\d+)+))" + +inherit native + +S = "${WORKDIR}/git" + +do_compile() { + ./bootstrap.sh +} + +do_install() { + HOME=/var/run ./b2 install --prefix=${prefix} staging-prefix=${D}${prefix} +} + +# The build is either release mode (pre-stripped) or debug (-O0). +INSANE_SKIP:${PN} = "already-stripped" diff --git a/meta/recipes-support/boost/boost_1.81.0.bb b/meta/recipes-support/boost/boost_1.81.0.bb deleted file mode 100644 index 4b580d078b..0000000000 --- a/meta/recipes-support/boost/boost_1.81.0.bb +++ /dev/null @@ -1,7 +0,0 @@ -require boost-${PV}.inc -require boost.inc - -SRC_URI += "file://boost-math-disable-pch-for-gcc.patch \ - file://0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch \ - file://0001-dont-setup-compiler-flags-m32-m64.patch \ - " diff --git a/meta/recipes-support/boost/boost_1.82.0.bb b/meta/recipes-support/boost/boost_1.82.0.bb new file mode 100644 index 0000000000..4b580d078b --- /dev/null +++ b/meta/recipes-support/boost/boost_1.82.0.bb @@ -0,0 +1,7 @@ +require boost-${PV}.inc +require boost.inc + +SRC_URI += "file://boost-math-disable-pch-for-gcc.patch \ + file://0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch \ + file://0001-dont-setup-compiler-flags-m32-m64.patch \ + " -- cgit v1.2.3-54-g00ecf