diff options
| author | wangmy <wangmy@fujitsu.com> | 2022-08-03 16:59:57 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-04 16:27:25 +0100 |
| commit | 6c3a88e8dcf0b7a40080c4cd9d447d0d50b12f4c (patch) | |
| tree | 61e5ad9dcae04fb1a3d76db90cd6c78a6293aefe /meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | |
| parent | c938393bf4f9186c89d7936a64b93c96314298d7 (diff) | |
| download | poky-6c3a88e8dcf0b7a40080c4cd9d447d0d50b12f4c.tar.gz | |
python3-pygobject: upgrade 3.42.1 -> 3.42.2
Changelog:
=========
Error out instead of crashing when marshaling unsupported fundamental types in some cases !180
Add a workaround for a PyPy 3.9+ bug when threads are used !200
Fix crashes when marshaling zero terminated arrays for certain item types !191
Fix a crash/refcounting error in case marshaling a hash table fails !191
Make the test suite pass again with PyPy !191
tests: support running tests with (MSVC) CPython 3.8+ on Windows !206
interface: Fix leak when overriding GInterfaceInfo !204
setup.py: look up pycairo headers without importing the module (helps with building on Windows and MSVC CPython 3.8+) !205
(From OE-Core rev: 14c442bfe4886e6180bd58f5e69928efd54e9c3c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pygobject_3.42.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb b/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb new file mode 100644 index 0000000000..cc7b07e804 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "Python GObject bindings" | ||
| 2 | HOMEPAGE = "https://gitlab.gnome.org/GNOME/pygobject" | ||
| 3 | DESCRIPTION = "PyGObject is a Python package which provides bindings for GObject based libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more." | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LICENSE = "LGPL-2.1-only" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | ||
| 7 | |||
| 8 | GNOMEBASEBUILDCLASS = "meson" | ||
| 9 | GIR_MESON_OPTION = "" | ||
| 10 | |||
| 11 | inherit gnomebase setuptools3-base gobject-introspection upstream-version-is-even | ||
| 12 | |||
| 13 | DEPENDS += "python3 glib-2.0" | ||
| 14 | |||
| 15 | SRCNAME="pygobject" | ||
| 16 | |||
| 17 | SRC_URI = " \ | ||
| 18 | http://ftp.gnome.org/pub/GNOME/sources/${SRCNAME}/${@gnome_verdir("${PV}")}/${SRCNAME}-${PV}.tar.xz \ | ||
| 19 | file://0001-Do-not-build-tests.patch \ | ||
| 20 | " | ||
| 21 | SRC_URI[sha256sum] = "ade8695e2a7073849dd0316d31d8728e15e1e0bc71d9ff6d1c09e86be52bc957" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 24 | |||
| 25 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" | ||
| 26 | |||
| 27 | RDEPENDS:${PN} += "python3-pkgutil" | ||
| 28 | |||
| 29 | # python3-pycairo is checked on configuration -> DEPENDS | ||
| 30 | # we don't link against python3-pycairo -> RDEPENDS | ||
| 31 | PACKAGECONFIG[cairo] = "-Dpycairo=enabled,-Dpycairo=disabled, cairo python3-pycairo, python3-pycairo" | ||
| 32 | |||
| 33 | BBCLASSEXTEND = "native" | ||
| 34 | PACKAGECONFIG:class-native = "" | ||
