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/pygraphviz/
Date: Sun, 27 Feb 2022 20:03:59
Message-Id: 1645992233.5fc491a655826423ff65ddba7081c0c99329e46f.mgorny@gentoo
1 commit: 5fc491a655826423ff65ddba7081c0c99329e46f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 20:00:11 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 20:03:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc491a6
7
8 dev-python/pygraphviz: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pygraphviz/Manifest | 2 --
13 dev-python/pygraphviz/pygraphviz-1.7.ebuild | 43 -----------------------------
14 dev-python/pygraphviz/pygraphviz-1.8.ebuild | 42 ----------------------------
15 3 files changed, 87 deletions(-)
16
17 diff --git a/dev-python/pygraphviz/Manifest b/dev-python/pygraphviz/Manifest
18 index 27a35e94beb5..3d5e9f04cba8 100644
19 --- a/dev-python/pygraphviz/Manifest
20 +++ b/dev-python/pygraphviz/Manifest
21 @@ -1,3 +1 @@
22 -DIST pygraphviz-1.7.zip 118754 BLAKE2B 36507fc862bec45a33bee3f89e7593a15639e7d98067e1c4ddf917558b7bc037b9d7607f7f017ad5980ba0e6805e63f05464efe8fd416ef70cb95709151714e3 SHA512 09438931d1930a70f7da94b0a12b449c0836ad707c6c8abed49bae0db162c136002d170398ed02dc56a5029269490ce3156d2d4b0f30602a11165bc0038998ea
23 -DIST pygraphviz-1.8.zip 119640 BLAKE2B a5c035085c503a06b0496a7ea4db0861e703d2811ab415f2d528dbc6c342d0fab1e9294f818cc4e49bdebba1b98456d6f34eea5628735193a6dde2c37035afce SHA512 f59d9452867167ba406d0e352700ec6bc80364318413a982eadb324c7817f92b9d09922b5fd90b603e2cf6f408390f862e003ef3f1fd3230390944f7d6ee7228
24 DIST pygraphviz-1.9.zip 119946 BLAKE2B a399742ae5e8323eec0b6890858cc9158c2942c4f0adb8c74fbfb9745321ae013b93227540e5c328f5dd22d8fba2cf9217a9079f99a14feb983d7188e07084c9 SHA512 0a963b2cfe526c5444379b037797504380898c300256ab3b4800687f46b6230d8bc0adb5f499004a8009544c6cc804221689921c08a4f4b71b86ae01dc39cb7e
25
26 diff --git a/dev-python/pygraphviz/pygraphviz-1.7.ebuild b/dev-python/pygraphviz/pygraphviz-1.7.ebuild
27 deleted file mode 100644
28 index 8d7f82137309..000000000000
29 --- a/dev-python/pygraphviz/pygraphviz-1.7.ebuild
30 +++ /dev/null
31 @@ -1,43 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
41 -HOMEPAGE="https://pygraphviz.github.io/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv x86 ~x86-linux ~ppc-macos ~x64-macos"
47 -
48 -# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
49 -RDEPEND="media-gfx/graphviz"
50 -DEPEND="${RDEPEND}"
51 -BDEPEND="
52 - app-arch/unzip
53 - dev-lang/swig:0
54 - test? ( dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] )"
55 -
56 -distutils_enable_tests pytest
57 -
58 -python_prepare_all() {
59 - distutils-r1_python_prepare_all
60 - swig -python pygraphviz/graphviz.i || die
61 -}
62 -
63 -python_test() {
64 - cd "${BUILD_DIR}"/lib || die
65 - epytest
66 - rm -rf .hypothesis .pytest_cache || die
67 -}
68 -
69 -python_install_all() {
70 - dodoc -r examples
71 - docompress -x /usr/share/doc/${PF}/examples
72 -
73 - distutils-r1_python_install_all
74 -}
75
76 diff --git a/dev-python/pygraphviz/pygraphviz-1.8.ebuild b/dev-python/pygraphviz/pygraphviz-1.8.ebuild
77 deleted file mode 100644
78 index cc40c444bcd8..000000000000
79 --- a/dev-python/pygraphviz/pygraphviz-1.8.ebuild
80 +++ /dev/null
81 @@ -1,42 +0,0 @@
82 -# Copyright 1999-2022 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=8
86 -
87 -DISTUTILS_USE_PEP517=setuptools
88 -PYTHON_COMPAT=( python3_{8..10} )
89 -inherit distutils-r1
90 -
91 -DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
92 -HOMEPAGE="https://pygraphviz.github.io/"
93 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
94 -
95 -LICENSE="BSD"
96 -SLOT="0"
97 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~x86-linux ~ppc-macos ~x64-macos"
98 -
99 -# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
100 -RDEPEND="media-gfx/graphviz"
101 -DEPEND="${RDEPEND}"
102 -BDEPEND="
103 - app-arch/unzip
104 - dev-lang/swig:0
105 - test? ( dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] )"
106 -
107 -distutils_enable_tests pytest
108 -
109 -src_configure() {
110 - swig -python pygraphviz/graphviz.i || die
111 -}
112 -
113 -python_test() {
114 - cd "${BUILD_DIR}"/install || die
115 - epytest
116 -}
117 -
118 -python_install_all() {
119 - dodoc -r examples
120 - docompress -x /usr/share/doc/${PF}/examples
121 -
122 - distutils-r1_python_install_all
123 -}