From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A98C138359 for ; Mon, 24 Aug 2020 22:34:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A839E08BD; Mon, 24 Aug 2020 22:33:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82316E08BD for ; Mon, 24 Aug 2020 22:33:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77556340D68 for ; Mon, 24 Aug 2020 22:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD1B9339 for ; Mon, 24 Aug 2020 22:33:53 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1598308371.0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/consonance/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/consonance/consonance-0.1.3-r1.ebuild X-VCS-Directories: dev-python/consonance/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff X-VCS-Branch: master Date: Mon, 24 Aug 2020 22:33:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 744ee7cc-fad6-4d86-9de5-b4ba672eb050 X-Archives-Hash: 3a659d648668d0655edba30a69d0262d commit: 0f8ada7f5a88edf2db7e4a8c7eb4f3ba6a2822ff Author: Conrad Kostecki gentoo org> AuthorDate: Mon Aug 24 20:53:38 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Aug 24 22:32:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f8ada7f 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 gentoo.org> dev-python/consonance/consonance-0.1.3-r1.ebuild | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) 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 00000000000..5d58d23a99b --- /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 +}