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, 16 Jul 2021 21:53:43
Message-Id: 1626472409.3fe96b3189c7c22a8534a8d46919733063369cf5.mgorny@gentoo
1 commit: 3fe96b3189c7c22a8534a8d46919733063369cf5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 21:46:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 21:53:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fe96b31
7
8 dev-python/pycairo: Remove old
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.20.0.ebuild | 46 --------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
17 index baf457c5c37..b1b1e0e023c 100644
18 --- a/dev-python/pycairo/Manifest
19 +++ b/dev-python/pycairo/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycairo-1.20.0.tar.gz 344370 BLAKE2B b72a3dfd3ad6332f6be2c0fc0650ef87d97a51881bd239421cdb6355016e952093f9fa05b7872d7cce4a50bc4bac27ff0fb4c11e446e51ada9d7c1adc019a175 SHA512 d32d008b741653d02324b206a438f5fd85f2a433201d6f8b98c8f1adc712abea611a4b5ed95c55258efb662dc579eed6b2f752b10d9fc2b6a7c8e5edd19e5266
22 DIST pycairo-1.20.1.tar.gz 344639 BLAKE2B 7327a1b9aacc62eb7b2630ac2b9ce43ad7a44e60cb749b60a2973fb9036a84c1f3f4264da428d720158a5e32cd47f679d5956ebf3ce094e75d742584a68adda4 SHA512 bb2340170c1d39d50dd8ceeb1b6ceadd96ddbd27d78a8a5b7dadf7dc427558d766f65d62e1ceeae19ab200e7ffb5ad122b5e51daa8ef9bff08fcd97a44005697
23
24 diff --git a/dev-python/pycairo/pycairo-1.20.0.ebuild b/dev-python/pycairo/pycairo-1.20.0.ebuild
25 deleted file mode 100644
26 index e815623d2de..00000000000
27 --- a/dev-python/pycairo/pycairo-1.20.0.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
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 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
47 -IUSE="examples"
48 -
49 -BDEPEND="
50 - test? (
51 - dev-python/hypothesis[${PYTHON_USEDEP}]
52 - dev-python/pytest[${PYTHON_USEDEP}]
53 - )
54 -"
55 -RDEPEND="
56 - >=x11-libs/cairo-1.15.10[svg]
57 -"
58 -DEPEND="${RDEPEND}"
59 -
60 -distutils_enable_sphinx docs \
61 - dev-python/sphinx_rtd_theme
62 -distutils_enable_tests setup.py
63 -
64 -python_install() {
65 - distutils-r1_python_install \
66 - install_pkgconfig --pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
67 -}
68 -
69 -python_install_all() {
70 - if use examples; then
71 - dodoc -r examples
72 - fi
73 -
74 - distutils-r1_python_install_all
75 -}