diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-04-18 17:59:18 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-23 23:30:20 +0100 |
| commit | 66ecad10aea3b8b1e66ecbb495be6142aa638371 (patch) | |
| tree | b36855a9ae88b4f07a0ecd1b70c76e4974e8fe03 /meta/recipes-devtools/python/python3-pygobject_3.32.0.bb | |
| parent | 1b74389d938c1dcf8f896d12e2ee01649df85193 (diff) | |
| download | poky-66ecad10aea3b8b1e66ecbb495be6142aa638371.tar.gz | |
python3-pygobject: update to 3.32.0
Switch to meson build system.
Add a patch to disable tests.
Add "introspection" to unknown configure option whitelist, as
this recipe needs g-i unconditionally.
(From OE-Core rev: 890a460d2ad9bce8f6a1df055e040f334f958673)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pygobject_3.32.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pygobject_3.32.0.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.32.0.bb b/meta/recipes-devtools/python/python3-pygobject_3.32.0.bb new file mode 100644 index 0000000000..c2676b3502 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pygobject_3.32.0.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "Python GObject bindings" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "LGPLv2.1" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | ||
| 5 | |||
| 6 | GNOMEBASEBUILDCLASS = "meson" | ||
| 7 | inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even | ||
| 8 | |||
| 9 | DEPENDS += "python3 glib-2.0" | ||
| 10 | |||
| 11 | SRCNAME="pygobject" | ||
| 12 | SRC_URI = " \ | ||
| 13 | http://ftp.gnome.org/pub/GNOME/sources/${SRCNAME}/${@gnome_verdir("${PV}")}/${SRCNAME}-${PV}.tar.xz \ | ||
| 14 | file://0001-Do-not-build-tests.patch \ | ||
| 15 | " | ||
| 16 | |||
| 17 | UNKNOWN_CONFIGURE_WHITELIST = "introspection" | ||
| 18 | |||
| 19 | SRC_URI[md5sum] = "6e39bca1d19a27cde4435061dd59578a" | ||
| 20 | SRC_URI[sha256sum] = "83f4d7e59fde6bc6b0d39c5e5208574802f759bc525a4cb8e7265dfcba45ef29" | ||
| 21 | |||
| 22 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" | ||
| 25 | |||
| 26 | # python3-pycairo is checked on configuration -> DEPENDS | ||
| 27 | # we don't link against python3-pycairo -> RDEPENDS | ||
| 28 | PACKAGECONFIG[cairo] = "-Dpycairo=true,-Dpycairo=false, cairo python3-pycairo, python3-pycairo" | ||
| 29 | |||
| 30 | RDEPENDS_${PN} += "python3-setuptools" | ||
| 31 | |||
| 32 | BBCLASSEXTEND = "native" | ||
| 33 | PACKAGECONFIG_class-native = "" | ||
