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: Thu, 08 Jul 2021 07:46:21
Message-Id: 1625730375.911f94f756bf78fdc35b5d3f4e8915936a220c62.mgorny@gentoo
1 commit: 911f94f756bf78fdc35b5d3f4e8915936a220c62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 8 07:45:12 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 8 07:46:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911f94f7
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-r1.ebuild | 40 ------------------------------------
13 1 file changed, 40 deletions(-)
14
15 diff --git a/dev-python/raet/raet-0.6.8-r1.ebuild b/dev-python/raet/raet-0.6.8-r1.ebuild
16 deleted file mode 100644
17 index 21243a0eb76..00000000000
18 --- a/dev-python/raet/raet-0.6.8-r1.ebuild
19 +++ /dev/null
20 @@ -1,40 +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..8})
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 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[${PYTHON_USEDEP}]
44 - )"
45 -
46 -PATCHES=(
47 - # This is from https://github.com/RaetProtocol/raet/pull/14/
48 - #${FILESDIR}/raet-0.6.8-msgpack-1.0.patch
49 -)
50 -
51 -python_prepare_all() {
52 - distutils-r1_python_prepare_all
53 - sed -i -e "/setuptools_git/d" setup.py || die
54 -}
55 -
56 -python_test() {
57 - pushd "${BUILD_DIR}"/lib || die
58 - ${EPYTHON} ${PN}/test/__init__.py || die "tests failed for ${EPYTHON}"
59 - popd || die
60 -}