Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycairo/
Date: Thu, 01 Mar 2018 19:36:00
Message-Id: 1519932884.64ce60fde3690cc1c94cf87001270f836707604b.radhermit@gentoo
1 commit: 64ce60fde3690cc1c94cf87001270f836707604b
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 23:50:54 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 19:34:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64ce60fd
7
8 dev-python/pycairo: version bump to 1.16.2
9
10 dev-python/pycairo/Manifest | 1 +
11 dev-python/pycairo/pycairo-1.16.2.ebuild | 65 ++++++++++++++++++++++++++++++++
12 2 files changed, 66 insertions(+)
13
14 diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
15 index 490509e3891..1c1cb1249cd 100644
16 --- a/dev-python/pycairo/Manifest
17 +++ b/dev-python/pycairo/Manifest
18 @@ -1,3 +1,4 @@
19 DIST pycairo-1.15.3.tar.gz 177056 BLAKE2B cba4a212c3537d5718a73742468444b01372902d86f88558cf63ab2ec1999dac036b349d84dff0bdcae5126998c5e921f05bab54b708a29ca2381b8d1371ac44 SHA512 1fc75d193eacb976f2e5a594aa07409a0f80ccb21921065c1794961143785eed48be1966d2d2d3e2d0428f9b4e956994dd851d21f3c3cb91fbc27b007a901ce8
20 DIST pycairo-1.15.4.tar.gz 178436 BLAKE2B 23c5064f537b8d8be12bb64df375c1d5be8962f80adf2437115dde59c18c3755a693b0cb8b3bee248ce8c906f23acfa264f2da6e02770bc59d823beba1bc9e7b SHA512 7e785d23393a8d0c5aca9a4440eb64b0eca9a60c1a18b0dc8452edd6de9422c743d082530387bcbedd34d52377d0892ad395998e9467ba08e22c318684cbee34
21 DIST pycairo-1.16.1.tar.gz 180516 BLAKE2B 0a144eb6f17bc6621b16e00ddd40784e16e5950667d57927ee238e76d4966e828d8da3d6983e09655d3eb2d3526dcb8a44da6c48e14268cd78e1d463e59b8779 SHA512 757870dd28d037d0af96308e2d1eb5d55ca2025aabda66031dc77790692e420b07802ccdbeefee430825553ed993830bc6f74de83b717e6fa876108f7b54e144
22 +DIST pycairo-1.16.2.tar.gz 180430 BLAKE2B 06b7f8b6c574b7afab738c7f0fecf78efafd06759394fbfe529a908011173e46aa0d89a5d041f9ec27fad8abb89b13fced8fbc0a567c8183f2072c70a3a8e357 SHA512 a5ac07f96f6607b1b40912b000c8b3b2114e75a6b8b314f1b68d2f5bb408dd7823c464d096c8cc26164219a961b448a4ea90b5a76683fb1807180f83cbc3b300
23
24 diff --git a/dev-python/pycairo/pycairo-1.16.2.ebuild b/dev-python/pycairo/pycairo-1.16.2.ebuild
25 new file mode 100644
26 index 00000000000..ec09aca8d65
27 --- /dev/null
28 +++ b/dev-python/pycairo/pycairo-1.16.2.ebuild
29 @@ -0,0 +1,65 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
36 +PYTHON_REQ_USE="threads(+)"
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python bindings for the cairo library"
41 +HOMEPAGE="https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo"
42 +SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz"
43 +
44 +LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
45 +SLOT="0"
46 +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"
47 +IUSE="doc examples test xcb"
48 +
49 +# Note: xpyb is used as the C header, not Python modules
50 +RDEPEND="
51 + >=x11-libs/cairo-1.13.1[svg,xcb?]
52 +"
53 +DEPEND="${RDEPEND}
54 + xcb? ( $(python_gen_cond_dep '>=x11-libs/xpyb-1.3' 'python2*') )
55 + doc? ( dev-python/sphinx )
56 + test? (
57 + dev-python/pytest[${PYTHON_USEDEP}]
58 + dev-python/hypothesis[${PYTHON_USEDEP}]
59 + )
60 +"
61 +
62 +python_prepare_all() {
63 + # Fix pkgconfig path
64 + sed -i -e "/libdir =/s:\"lib\":\"$(get_libdir)\":" setup.py || die
65 + distutils-r1_python_prepare_all
66 +}
67 +
68 +python_compile() {
69 + local enable_xpyb
70 + python_is_python3 || enable_xpyb=$(usex xcb "--enable-xpyb" "")
71 +
72 + esetup.py build ${enable_xpyb}
73 +}
74 +
75 +python_compile_all() {
76 + use doc && emake -C docs
77 +}
78 +
79 +python_test() {
80 + local enable_xpyb
81 + python_is_python3 || enable_xpyb=$(usex xcb "--enable-xpyb" "")
82 +
83 + esetup.py test ${enable_xpyb}
84 +}
85 +
86 +python_install_all() {
87 + use doc && local HTML_DOCS=( docs/_build/. )
88 +
89 + if use examples; then
90 + dodoc -r examples
91 + fi
92 +
93 + distutils-r1_python_install_all
94 +}