mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 16:24:17 -09:00
This version bump is required following the glib security version bump to 2.88.3 [1] to fix a runtime issue due to GLib-2.0 backward compatibility removal [2]. We prefer updating python-gobject to 3.56 stable release instead of backporting complex commits from 3.55.x unstable release [3]. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/16060152329 (TestFirewalldSysVInit) https://gitlab.com/buildroot.org/buildroot/-/jobs/16060152332 (TestFirewalldSystemd) [1]e313a2d259[2]e02603d44d[3]74e4e0f40aRuntime tested with TestGst1Python and TestFirewalld{Systemd,SysVInit}. Cc: Fiona Klute <fiona.klute@gmx.de> Signed-off-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Julien Olivain <ju.o@free.fr> (cherry picked from commitb4949ce4c9) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# python-gobject
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_GOBJECT_VERSION_MAJOR = 3.56
|
|
PYTHON_GOBJECT_VERSION = $(PYTHON_GOBJECT_VERSION_MAJOR).3
|
|
PYTHON_GOBJECT_SOURCE = pygobject-$(PYTHON_GOBJECT_VERSION).tar.gz
|
|
PYTHON_GOBJECT_SITE = https://download.gnome.org/sources/pygobject/$(PYTHON_GOBJECT_VERSION_MAJOR)
|
|
PYTHON_GOBJECT_LICENSE = LGPL-2.1+
|
|
PYTHON_GOBJECT_LICENSE_FILES = COPYING
|
|
PYTHON_GOBJECT_INSTALL_STAGING = YES
|
|
PYTHON_GOBJECT_DEPENDENCIES = \
|
|
gobject-introspection \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
python3
|
|
|
|
PYTHON_GOBJECT_CONF_OPTS += \
|
|
-Dpycairo=disabled \
|
|
-Dtests=false
|
|
|
|
# A sysconfigdata_name must be manually specified or the resulting .so
|
|
# will have a x86_64 prefix, which causes "import gi" to fail.
|
|
# A pythonpath must be specified or the host python path will be used resulting
|
|
# in a "not a valid python" error.
|
|
PYTHON_GOBJECT_CONF_ENV += \
|
|
_PYTHON_SYSCONFIGDATA_NAME=$(PKG_PYTHON_SYSCONFIGDATA_NAME) \
|
|
PYTHONPATH=$(PYTHON3_PATH)
|
|
|
|
$(eval $(meson-package))
|