diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-08-24 22:53:38 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-08-25 00:32:51 +0200 |
commit | 0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff (patch) | |
tree | 943a0d621e7e5397c2bfe8457caa235859ed936e /dev-python/consonance | |
parent | dev-python/python-axolotl: drop old version (diff) | |
download | gentoo-0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff.tar.gz gentoo-0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff.tar.bz2 gentoo-0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff.zip |
dev-python/consonance: add python3.9 support
Also updated test deps.
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-python/consonance')
-rw-r--r-- | dev-python/consonance/consonance-0.1.3-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/consonance/consonance-0.1.3-r1.ebuild b/dev-python/consonance/consonance-0.1.3-r1.ebuild new file mode 100644 index 000000000000..5d58d23a99bc --- /dev/null +++ b/dev-python/consonance/consonance-0.1.3-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="WhatsApp's handshake implementation using Noise Protocol" +HOMEPAGE="https://github.com/tgalal/consonance" +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples" + +# Tests require an active internet connection +RESTRICT="test" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/dissononce[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}] + dev-python/transitions[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest + +src_install() { + distutils-r1_src_install + + use examples && dodoc examples/*.py +} |