From 61cd30fc786fe95c47ca59e800224382d3bd763e Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 6 Dec 2023 17:52:17 +0200 Subject: sip: Upgrade 6.7.12 -> 6.8.0 Add runtime dependencies and upgrade sip to version 6.8.0: - Added support for specifying the project metadata using the [project] section of pyproject.toml as defined in PEP 621. The use of the [tool.sip.metadata] is now deprecated. - The latest version of ABI v13 is v13.7.0. - The latest version of ABI v12 is v12.14.0. - The conversion to a pure Python implementation is now complete. The work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/sip/sip_6.7.12.bb | 16 ---------------- meta-oe/recipes-devtools/sip/sip_6.8.0.bb | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 16 deletions(-) delete mode 100644 meta-oe/recipes-devtools/sip/sip_6.7.12.bb create mode 100644 meta-oe/recipes-devtools/sip/sip_6.8.0.bb diff --git a/meta-oe/recipes-devtools/sip/sip_6.7.12.bb b/meta-oe/recipes-devtools/sip/sip_6.7.12.bb deleted file mode 100644 index 00823cf1a6..0000000000 --- a/meta-oe/recipes-devtools/sip/sip_6.7.12.bb +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (C) 2022 Khem Raj -# Released under the MIT license (see COPYING.MIT for the terms) - -SUMMARY = "A Python bindings generator for C/C++ libraries" - -HOMEPAGE = "https://www.riverbankcomputing.com/software/sip/" -LICENSE = "GPL-2.0-or-later" -SECTION = "devel" -LIC_FILES_CHKSUM = "file://LICENSE-GPL2;md5=e91355d8a6f8bd8f7c699d62863c7303" - -inherit pypi setuptools3 python3native - -PYPI_PACKAGE = "sip" -SRC_URI[sha256sum] = "08e66f742592eb818ac8fda4173e2ed64c9f2d40b70bee11db1c499127d98450" - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-devtools/sip/sip_6.8.0.bb b/meta-oe/recipes-devtools/sip/sip_6.8.0.bb new file mode 100644 index 0000000000..6c7f22dd9d --- /dev/null +++ b/meta-oe/recipes-devtools/sip/sip_6.8.0.bb @@ -0,0 +1,24 @@ +# Copyright (C) 2022 Khem Raj +# Released under the MIT license (see COPYING.MIT for the terms) + +SUMMARY = "A Python bindings generator for C/C++ libraries" + +HOMEPAGE = "https://www.riverbankcomputing.com/software/sip/" +LICENSE = "GPL-2.0-or-later" +SECTION = "devel" +LIC_FILES_CHKSUM = "file://LICENSE-GPL2;md5=e91355d8a6f8bd8f7c699d62863c7303" + +inherit pypi setuptools3 python3native + +PYPI_PACKAGE = "sip" +SRC_URI[sha256sum] = "2ed1904820cb661b7207eb1dccfaebec1a5463dcad903ba448ad1945502d089c" + +RDEPENDS:${PN} = " \ + python3-core \ + python3-packaging \ + python3-logging \ + python3-tomllib \ + python3-setuptools \ +" + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf