Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/consonance/
Date: Mon, 24 Aug 2020 22:34:00
Message-Id: 1598308372.e4aad03d817c215939022b549511771f78487508.conikost@gentoo
1 commit: e4aad03d817c215939022b549511771f78487508
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 20:56:50 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 22:32:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4aad03d
7
8 dev-python/consonance: drop old version
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-python/consonance/consonance-0.1.3.ebuild | 42 ---------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/dev-python/consonance/consonance-0.1.3.ebuild b/dev-python/consonance/consonance-0.1.3.ebuild
17 deleted file mode 100644
18 index 68b4e499ab9..00000000000
19 --- a/dev-python/consonance/consonance-0.1.3.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6,7,8} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="WhatsApp's handshake implementation using Noise Protocol"
32 -HOMEPAGE="https://github.com/tgalal/consonance"
33 -SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-3+"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="examples"
39 -
40 -# Tests require an active internet connection
41 -RESTRICT="test"
42 -
43 -RDEPEND="
44 - dev-python/cryptography[${PYTHON_USEDEP}]
45 - dev-python/dissononce[${PYTHON_USEDEP}]
46 - dev-python/protobuf-python[${PYTHON_USEDEP}]
47 - dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}]
48 - dev-python/transitions[${PYTHON_USEDEP}]
49 -"
50 -
51 -DEPEND="${RDEPEND}"
52 -
53 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
54 -
55 -python_test() {
56 - esetup.py test
57 -}
58 -
59 -src_install() {
60 - distutils-r1_src_install
61 -
62 - use examples && dodoc examples/*.py
63 -}