diff options
| author | Jörg Sommer <joerg.sommer@navimatix.de> | 2025-11-03 08:26:57 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:15:36 +0000 |
| commit | d95f9f30ed4cd3036c19bef524d739a8db346e53 (patch) | |
| tree | 3ad03c7724d58c57bf29c800740e0ac74d415e68 /meta/recipes-devtools/python/python3-pygobject_3.54.5.bb | |
| parent | f27d7f0809990b0bf27fce04ac3160d23872e8cf (diff) | |
| download | poky-d95f9f30ed4cd3036c19bef524d739a8db346e53.tar.gz | |
python3-pygobject: Upgrade 3.52.3 -> 3.54.5
Changes in the upstream COPYING file were only replacements of \f by \n
3.54.5 - 2025-10-18
-------------------
* Backport: GLib 2.86/GioUnix compatibility :mr:`461`
3.54.3 - 2025-09-21
-------------------
* Do not skip symbols both in Gio and in platform specific :mr:`452`
3.54.2 - 2025-09-13
-------------------
* Prefix platform specific symbols with platform name :mr:`451`
3.54.1 - 2025-09-12
-------------------
* Excempt GioPlatform namespaces from required version check :mr:`450`
3.54.0 - 2025-09-06
-------------------
* Fix compatibility with Python 3.14 :mr:`433`
* Add platform specific symbols back to Gio module :mr:`445`
* Include docs from old GNOME wiki :mr:`441`
* Add override for `GLib.MainContext.query()` :mr:`446`
* Fix optional inout parameter marshalling :mr:`447`
3.53.0 - 2025-08-27
-------------------
* Drop Python upper limit :mr:`418`
* Add `__enum|flags_values__` back to GEnum and GFlags :mr:`420`
* Fix asyncio event loop selector with Python 3.13 :mr:`421`
* Support `Gtk.Template` on sub-classed Python classes :mr:`199`
* Use GI Repository singleton if GLib >= 2.85 :mr:`427`
* Expose finish_func on function info to determine if a function can be used as awaitable :mr:`428`
* Documentation updates :mr:`424` :mr:`426` :mr:`429` :mr:`430`
* `ParamSpec` objects now return the expected enum type :mr:`432`
* Fix `Gio.ActionMap` override for `Gio.Application` :mr:`435`
* Fix regression for functions with multiple callbacks :mr:`436` :mr:`437`
* Cleanup: callable argument cache :mr:`438`
* Format Python and C code :mr:`386`
* Fix compatibility with GLib 2.84 :mr:`443`
* (chore) clean up array cache code :mr:`440`
(From OE-Core rev: 37d57c9d1773f5a9d1665484bd43ad10a0e175a5)
Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pygobject_3.54.5.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pygobject_3.54.5.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.54.5.bb b/meta/recipes-devtools/python/python3-pygobject_3.54.5.bb new file mode 100644 index 0000000000..f6ed3ff5fb --- /dev/null +++ b/meta/recipes-devtools/python/python3-pygobject_3.54.5.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 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=91db794c3adc9d824d4eddabb341e816" | ||
| 7 | |||
| 8 | GIR_MESON_OPTION = "" | ||
| 9 | |||
| 10 | inherit gnomebase setuptools3-base gobject-introspection upstream-version-is-even | ||
| 11 | |||
| 12 | python() { | ||
| 13 | if d.getVar('CLASSOVERRIDE') == "class-target" and not bb.utils.to_boolean(d.getVar("GI_DATA_ENABLED")): | ||
| 14 | raise bb.parse.SkipRecipe("GI not available") | ||
| 15 | } | ||
| 16 | |||
| 17 | DEPENDS += "python3 glib-2.0" | ||
| 18 | |||
| 19 | GNOME_COMPRESS_TYPE = "gz" | ||
| 20 | GNOMEBN = "pygobject" | ||
| 21 | |||
| 22 | SRC_URI[archive.sha256sum] = "b6656f6348f5245606cf15ea48c384c7f05156c75ead206c1b246c80a22fb585" | ||
| 23 | |||
| 24 | S = "${UNPACKDIR}/${GNOMEBN}-${PV}" | ||
| 25 | |||
| 26 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" | ||
| 27 | |||
| 28 | RDEPENDS:${PN} += " \ | ||
| 29 | python3-asyncio \ | ||
| 30 | python3-io \ | ||
| 31 | python3-pkgutil \ | ||
| 32 | gobject-introspection \ | ||
| 33 | " | ||
| 34 | |||
| 35 | # python3-pycairo is checked on configuration -> DEPENDS | ||
| 36 | # we don't link against python3-pycairo -> RDEPENDS | ||
| 37 | PACKAGECONFIG[cairo] = "-Dpycairo=enabled,-Dpycairo=disabled, cairo python3-pycairo, python3-pycairo" | ||
| 38 | PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false," | ||
| 39 | |||
| 40 | BBCLASSEXTEND = "native" | ||
| 41 | PACKAGECONFIG:class-native = "" | ||
