diff options
| -rw-r--r-- | meta/recipes-devtools/python/python3-pycairo_1.10.0.bb | 42 | ||||
| -rw-r--r-- | meta/recipes-devtools/python/python3-pycairo_1.15.3.bb | 30 |
2 files changed, 30 insertions, 42 deletions
diff --git a/meta/recipes-devtools/python/python3-pycairo_1.10.0.bb b/meta/recipes-devtools/python/python3-pycairo_1.10.0.bb deleted file mode 100644 index 9258ba11c7..0000000000 --- a/meta/recipes-devtools/python/python3-pycairo_1.10.0.bb +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | SUMMARY = "Python bindings for the Cairo canvas library" | ||
| 2 | HOMEPAGE = "http://cairographics.org/pycairo" | ||
| 3 | BUGTRACKER = "http://bugs.freedesktop.org" | ||
| 4 | SECTION = "python-devel" | ||
| 5 | LICENSE = "LGPLv3" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
| 7 | file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
| 8 | |||
| 9 | # cairo >= 1.8.8 | ||
| 10 | DEPENDS = "cairo" | ||
| 11 | PR = "r2" | ||
| 12 | |||
| 13 | SRC_URI = "http://cairographics.org/releases/pycairo-${PV}.tar.bz2" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "e6fd3f2f1e6a72e0db0868c4985669c5" | ||
| 16 | SRC_URI[sha256sum] = "9aa4078e7eb5be583aeabbe8d87172797717f95e8c4338f0d4a17b683a7253be" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/pycairo-${PV}" | ||
| 19 | |||
| 20 | inherit distutils3 pkgconfig | ||
| 21 | |||
| 22 | CFLAGS += "-fPIC" | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native" | ||
| 25 | |||
| 26 | do_configure() { | ||
| 27 | PYTHON=${PYTHON} ./waf configure --prefix=${D}${prefix} --libdir=${D}${libdir} | ||
| 28 | } | ||
| 29 | |||
| 30 | do_compile() { | ||
| 31 | ./waf build ${PARALLEL_MAKE} | ||
| 32 | } | ||
| 33 | |||
| 34 | do_install() { | ||
| 35 | ./waf install | ||
| 36 | sed \ | ||
| 37 | -e 's:@prefix@:${prefix}:' \ | ||
| 38 | -e 's:@VERSION@:${PV}:' \ | ||
| 39 | -e 's:@includedir@:${includedir}:' \ | ||
| 40 | py3cairo.pc.in > py3cairo.pc | ||
| 41 | install -m 0644 py3cairo.pc ${D}${libdir}/pkgconfig/ | ||
| 42 | } | ||
diff --git a/meta/recipes-devtools/python/python3-pycairo_1.15.3.bb b/meta/recipes-devtools/python/python3-pycairo_1.15.3.bb new file mode 100644 index 0000000000..7863ad2af1 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pycairo_1.15.3.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | SUMMARY = "Python bindings for the Cairo canvas library" | ||
| 2 | HOMEPAGE = "http://cairographics.org/pycairo" | ||
| 3 | BUGTRACKER = "http://bugs.freedesktop.org" | ||
| 4 | SECTION = "python-devel" | ||
| 5 | LICENSE = "LGPLv2.1 & MPLv1.1" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421 \ | ||
| 7 | file://COPYING-LGPL-2.1;md5=fad9b3332be894bab9bc501572864b29 \ | ||
| 8 | file://COPYING-MPL-1.1;md5=bfe1f75d606912a4111c90743d6c7325" | ||
| 9 | |||
| 10 | # cairo >= 1.14 | ||
| 11 | DEPENDS = "cairo" | ||
| 12 | |||
| 13 | SRC_URI = "https://github.com/pygobject/pycairo/releases/download/v${PV}/pycairo-${PV}.tar.gz" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "7390cd413271fe5569f6eef73d72bf7a" | ||
| 16 | SRC_URI[sha256sum] = "8642e36cef66acbfc02760d2b40c716f5f183d073fb063ba28fd29a14044719d" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/pycairo-${PV}" | ||
| 19 | |||
| 20 | inherit setuptools3 pkgconfig | ||
| 21 | |||
| 22 | CFLAGS += "-fPIC" | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native" | ||
| 25 | |||
| 26 | do_install_append() { | ||
| 27 | install -d ${D}${includedir}/pycairo/ | ||
| 28 | install -m 0644 ${D}${datadir}/include/pycairo/py3cairo.h ${D}${includedir}/pycairo/ | ||
| 29 | } | ||
| 30 | FILES_${PN} += "${datadir}/include/pycairo/py3cairo.h" | ||
