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