commit:     13389c2054b4b498bfef2ce130176247d4699058
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  6 06:12:09 2018 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Mar  6 06:57:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13389c20

dev-python/pycairo: version bump to 1.16.3

 dev-python/pycairo/Manifest              |  1 +
 dev-python/pycairo/pycairo-1.16.3.ebuild | 65 ++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
index 1c1cb1249cd..97a14571552 100644
--- a/dev-python/pycairo/Manifest
+++ b/dev-python/pycairo/Manifest
@@ -2,3 +2,4 @@ DIST pycairo-1.15.3.tar.gz 177056 BLAKE2B 
cba4a212c3537d5718a73742468444b0137290
 DIST pycairo-1.15.4.tar.gz 178436 BLAKE2B 
23c5064f537b8d8be12bb64df375c1d5be8962f80adf2437115dde59c18c3755a693b0cb8b3bee248ce8c906f23acfa264f2da6e02770bc59d823beba1bc9e7b
 SHA512 
7e785d23393a8d0c5aca9a4440eb64b0eca9a60c1a18b0dc8452edd6de9422c743d082530387bcbedd34d52377d0892ad395998e9467ba08e22c318684cbee34
 DIST pycairo-1.16.1.tar.gz 180516 BLAKE2B 
0a144eb6f17bc6621b16e00ddd40784e16e5950667d57927ee238e76d4966e828d8da3d6983e09655d3eb2d3526dcb8a44da6c48e14268cd78e1d463e59b8779
 SHA512 
757870dd28d037d0af96308e2d1eb5d55ca2025aabda66031dc77790692e420b07802ccdbeefee430825553ed993830bc6f74de83b717e6fa876108f7b54e144
 DIST pycairo-1.16.2.tar.gz 180430 BLAKE2B 
06b7f8b6c574b7afab738c7f0fecf78efafd06759394fbfe529a908011173e46aa0d89a5d041f9ec27fad8abb89b13fced8fbc0a567c8183f2072c70a3a8e357
 SHA512 
a5ac07f96f6607b1b40912b000c8b3b2114e75a6b8b314f1b68d2f5bb408dd7823c464d096c8cc26164219a961b448a4ea90b5a76683fb1807180f83cbc3b300
+DIST pycairo-1.16.3.tar.gz 188610 BLAKE2B 
71034891bae636e23379a3fdc49c9163cff61183fe46c4027bbad3206e72255e60081dbc3cb02808d5c3840b618f6c12f8106ca5a08ddb226a65917ba2da390c
 SHA512 
d60978f85eb0430f2038b0e7d0bce23602e8c180a7611eea424fd8bc3cdd8ce249af364abd0e77ab3b7ab439761721cba5c2398f51af2a89add3fb7fda8aa5db

diff --git a/dev-python/pycairo/pycairo-1.16.3.ebuild 
b/dev-python/pycairo/pycairo-1.16.3.ebuild
new file mode 100644
index 00000000000..ec09aca8d65
--- /dev/null
+++ b/dev-python/pycairo/pycairo-1.16.3.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for the cairo library"
+HOMEPAGE="https://www.cairographics.org/pycairo/ 
https://github.com/pygobject/pycairo";
+SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz";
+
+LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+IUSE="doc examples test xcb"
+
+# Note: xpyb is used as the C header, not Python modules
+RDEPEND="
+       >=x11-libs/cairo-1.13.1[svg,xcb?]
+"
+DEPEND="${RDEPEND}
+       xcb? ( $(python_gen_cond_dep '>=x11-libs/xpyb-1.3' 'python2*') )
+       doc? ( dev-python/sphinx )
+       test? (
+               dev-python/pytest[${PYTHON_USEDEP}]
+               dev-python/hypothesis[${PYTHON_USEDEP}]
+       )
+"
+
+python_prepare_all() {
+       # Fix pkgconfig path
+       sed -i -e "/libdir =/s:\"lib\":\"$(get_libdir)\":" setup.py || die
+       distutils-r1_python_prepare_all
+}
+
+python_compile() {
+       local enable_xpyb
+       python_is_python3 || enable_xpyb=$(usex xcb "--enable-xpyb" "")
+
+       esetup.py build ${enable_xpyb}
+}
+
+python_compile_all() {
+       use doc && emake -C docs
+}
+
+python_test() {
+       local enable_xpyb
+       python_is_python3 || enable_xpyb=$(usex xcb "--enable-xpyb" "")
+
+       esetup.py test ${enable_xpyb}
+}
+
+python_install_all() {
+       use doc && local HTML_DOCS=( docs/_build/. )
+
+       if use examples; then
+               dodoc -r examples
+       fi
+
+       distutils-r1_python_install_all
+}

Reply via email to