diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2025-02-06 18:40:29 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2025-02-25 08:45:21 -0500 |
commit | c93994f1bb601c57548b588d4f77a044d90822cf (patch) | |
tree | 131457de662c53a3226174ddbb7790c037de14e5 /meta-oe/recipes-devtools/sip/sip_6.8.6.bb | |
parent | 5864abec5fb9fcdae36b445d0ebf2b34d988a69b (diff) | |
download | meta-openembedded-styhead.tar.gz |
sip: Upgrade 6.8.3 -> 6.8.6styhead-nextstyhead
After the migration from Mercurial to GitHub the homepage has
changed and SIP has been licensed under the BSD-2-Clause license
since Feb 9, 2024. Upgrade to version 6.8.6:
- Handle single number macOS deployment targets
- Support for architectures where `char` is unsigned
- Support for building from git archives
- Run the tests using the current Python version
The project has a proper pyproject.toml which declares the
setuptools.build.meta PEP-517 backend.
Fixes:
WARNING: sip-6.8.6-r0 do_check_backend: QA Issue: inherits
setuptools3 but has pyproject.toml with setuptools.build_meta,
use the correct class [pep517-backend]
Please note SIP version 6.8.6 is present for branch Scarthgap and
it is required for PyQt6 6.8 from layer meta-qt6 (branch 6.8).
The work was sponsored by GOVCERT.LU.
License-Update: SIP is licensed under the BSD-2-Clause license.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/sip/sip_6.8.6.bb')
-rw-r--r-- | meta-oe/recipes-devtools/sip/sip_6.8.6.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/sip/sip_6.8.6.bb b/meta-oe/recipes-devtools/sip/sip_6.8.6.bb new file mode 100644 index 0000000000..1defe29b08 --- /dev/null +++ b/meta-oe/recipes-devtools/sip/sip_6.8.6.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | # Copyright (C) 2022 Khem Raj <raj.khem@gmail.com> | ||
2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
3 | |||
4 | SUMMARY = "A Python bindings generator for C/C++ libraries" | ||
5 | |||
6 | HOMEPAGE = "https://github.com/Python-SIP/sip" | ||
7 | LICENSE = "BSD-2-Clause" | ||
8 | SECTION = "devel" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ed1d69a33480ebf4ff8a7a760826d84e" | ||
10 | |||
11 | inherit pypi python_setuptools_build_meta python3native | ||
12 | |||
13 | PYPI_PACKAGE = "sip" | ||
14 | SRC_URI[sha256sum] = "7fc959e48e6ec5d5af8bd026f69f5e24d08b3cb8abb342176f5ab8030cc07d7a" | ||
15 | |||
16 | DEPENDS += "python3-setuptools-scm-native" | ||
17 | |||
18 | RDEPENDS:${PN} = " \ | ||
19 | python3-core \ | ||
20 | python3-packaging \ | ||
21 | python3-logging \ | ||
22 | python3-tomllib \ | ||
23 | python3-setuptools \ | ||
24 | " | ||
25 | |||
26 | BBCLASSEXTEND = "native" | ||