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/raet/
Date: Fri, 06 May 2022 20:38:42
Message-Id: 1651869059.eddb2da1be39a29c8c27c4d7a380b9061cfbd53f.mgorny@gentoo
1 commit: eddb2da1be39a29c8c27c4d7a380b9061cfbd53f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 20:30:59 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 20:30:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eddb2da1
7
8 dev-python/raet: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/raet/raet-0.6.8-r3.ebuild | 41 ------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/raet/raet-0.6.8-r3.ebuild b/dev-python/raet/raet-0.6.8-r3.ebuild
16 deleted file mode 100644
17 index e70391368374..000000000000
18 --- a/dev-python/raet/raet-0.6.8-r3.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{7..9} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Reliable Asynchronous Event Transport Protocol"
30 -HOMEPAGE="https://github.com/RaetProtocol/raet"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~arm64 x86"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38 -
39 -RDEPEND=">=dev-python/six-1.6.1[${PYTHON_USEDEP}]
40 - >=dev-python/libnacl-1.4.3[${PYTHON_USEDEP}]
41 - >=dev-python/ioflo-2.0[${PYTHON_USEDEP}]"
42 -BDEPEND="${RDEPEND}
43 - test? (
44 - >=dev-python/msgpack-1.0.0[${PYTHON_USEDEP}]
45 - )"
46 -
47 -PATCHES=(
48 - "${FILESDIR}/raet-0.6.8-msgpack-1.0.patch"
49 - "${FILESDIR}/raet-0.6.8-py310.patch"
50 -)
51 -
52 -python_prepare_all() {
53 - distutils-r1_python_prepare_all
54 - sed -e "/setuptools_git/d" -i setup.py || die
55 -}
56 -
57 -python_test() {
58 - pushd "${BUILD_DIR}"/lib || die
59 - ${EPYTHON} ${PN}/test/__init__.py || die "tests failed for ${EPYTHON}"
60 - popd || die
61 -}