Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycairo/
Date: Fri, 25 Sep 2020 20:22:34
Message-Id: 1601065310.e0749b57ee4c83757ffed172fb37e5584a492653.mgorny@gentoo
1 commit: e0749b57ee4c83757ffed172fb37e5584a492653
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 20:20:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 20:21:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0749b57
7
8 dev-python/pycairo: Remove old (py2.7)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycairo/Manifest | 1 -
13 dev-python/pycairo/pycairo-1.18.2.ebuild | 59 --------------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
17 index 853f6a6e5b6..b4af392d6fd 100644
18 --- a/dev-python/pycairo/Manifest
19 +++ b/dev-python/pycairo/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycairo-1.18.2.tar.gz 200462 BLAKE2B 1f755dc90fe3ee50aa68273a0816752312f144831ff857709e1a4695a58646ffe6be518733480ed37231c213a11d4e5aaf8dfd1cfa68104873bc7d4192435b89 SHA512 279ea80413ba55d493d51455685da09afa1f5c45e2930c3fca3e417a8afe6645a0d8131201f79482de59e5ec56cfef62eac65ed88fe88866bfcc06503dcc59e0
22 DIST pycairo-1.19.1.tar.gz 205196 BLAKE2B 504334628daf75dd9145c97fbd86ea133b4be225ce7fa911b48231ebd5434678ffa7b1f185e0527f96b4b36955e788d0bb4fa4d308843e5ae9b20a41d2126301 SHA512 a7955a2566d5e5586154b62f3aeef824e1e6076cbd3eb86af8288fedcc7d61c4e36a53691298cf9df2e2df7fc96292f96dec92c5d4343e6c1b4c971e97d0650f
23
24 diff --git a/dev-python/pycairo/pycairo-1.18.2.ebuild b/dev-python/pycairo/pycairo-1.18.2.ebuild
25 deleted file mode 100644
26 index 253c565d333..00000000000
27 --- a/dev-python/pycairo/pycairo-1.18.2.ebuild
28 +++ /dev/null
29 @@ -1,59 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6..9} )
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 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
47 -IUSE="examples"
48 -
49 -BDEPEND="
50 - test? (
51 - $(python_gen_cond_dep '
52 - dev-python/hypothesis[${PYTHON_USEDEP}]
53 - dev-python/pytest[${PYTHON_USEDEP}]
54 - ' -3)
55 - )
56 -"
57 -RDEPEND="
58 - >=x11-libs/cairo-1.13.1[svg]
59 -"
60 -DEPEND="${RDEPEND}"
61 -
62 -PATCHES=( "${FILESDIR}/${PN}-1.19.1-py39.patch" )
63 -
64 -distutils_enable_sphinx docs \
65 - dev-python/sphinx_rtd_theme
66 -distutils_enable_tests setup.py
67 -
68 -python_test() {
69 - if ! python_is_python3; then
70 - einfo "Skipping tests on Python 2 to unblock deps"
71 - return
72 - fi
73 -
74 - esetup.py test
75 -}
76 -
77 -python_install() {
78 - distutils-r1_python_install \
79 - install_pkgconfig --pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
80 -}
81 -
82 -python_install_all() {
83 - if use examples; then
84 - dodoc -r examples
85 - fi
86 -
87 - distutils-r1_python_install_all
88 -}