mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ========= * Require Python 3.7+ :pr:'250' * Require meson 0.53+ * Using 'setup.py' directly to build/install pycairo is deprecated. Use meson instead. * 'setup.py' now requires setuptools. Previously it was optional. * The complete API reference is now included in the typing stubs, so it can be consumed/shown by IDEs. :pr:'236' :pr:'252' (From OE-Core rev: d83f8e31b929ea270a2cafda4ca3deaffbd7c54e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
911 B
BlitzBasic
27 lines
911 B
BlitzBasic
SUMMARY = "Python bindings for the Cairo canvas library"
|
|
HOMEPAGE = "http://cairographics.org/pycairo"
|
|
BUGTRACKER = "http://bugs.freedesktop.org"
|
|
SECTION = "python-devel"
|
|
LICENSE = "LGPL-2.1-only & MPL-1.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f3713ca2c28d9312ad718520b6dc3eee \
|
|
file://COPYING-LGPL-2.1;md5=fad9b3332be894bab9bc501572864b29 \
|
|
file://COPYING-MPL-1.1;md5=bfe1f75d606912a4111c90743d6c7325"
|
|
|
|
# cairo >= 1.14
|
|
DEPENDS = "cairo python3"
|
|
|
|
SRC_URI = "https://github.com/pygobject/pycairo/releases/download/v${PV}/pycairo-${PV}.tar.gz"
|
|
UPSTREAM_CHECK_URI = "https://github.com/pygobject/pycairo/releases/"
|
|
|
|
SRC_URI[sha256sum] = "251907f18a552df938aa3386657ff4b5a4937dde70e11aa042bc297957f4b74b"
|
|
|
|
S = "${WORKDIR}/pycairo-${PV}"
|
|
|
|
inherit meson pkgconfig python3targetconfig
|
|
|
|
CFLAGS += "-fPIC"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
FILES:${PN} = "${PYTHON_SITEPACKAGES_DIR}/*"
|