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 A5E0313835A for ; Mon, 24 Aug 2020 22:33:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DBCFE088F; Mon, 24 Aug 2020 22:33:56 +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 4307DE088F for ; Mon, 24 Aug 2020 22:33:56 +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 E4F2E340D88 for ; Mon, 24 Aug 2020 22:33:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FED6332 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: <1598308367.98e523fcd420fc29d9e800ba1621af285ac970b0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dissononce/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dissononce/dissononce-0.34.3-r1.ebuild X-VCS-Directories: dev-python/dissononce/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 98e523fcd420fc29d9e800ba1621af285ac970b0 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: 293f3dce-2e83-4a0e-9569-542e6dd5ba89 X-Archives-Hash: 6aefe118eb5226ce9da58828da685ae4 commit: 98e523fcd420fc29d9e800ba1621af285ac970b0 Author: Conrad Kostecki gentoo org> AuthorDate: Mon Aug 24 20:43:37 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Aug 24 22:32:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e523fc dev-python/dissononce: add python3.9 support Also adjusted test deps and enabled tests. Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Conrad Kostecki gentoo.org> dev-python/dissononce/dissononce-0.34.3-r1.ebuild | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-python/dissononce/dissononce-0.34.3-r1.ebuild b/dev-python/dissononce/dissononce-0.34.3-r1.ebuild new file mode 100644 index 00000000000..57475f3014d --- /dev/null +++ b/dev-python/dissononce/dissononce-0.34.3-r1.ebuild @@ -0,0 +1,35 @@ +# 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="A python implementation for Noise Protocol Framework" +HOMEPAGE="https://github.com/tgalal/dissononce" +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples test" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/transitions[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-fix-test-requirements.patch" ) + +distutils_enable_tests pytest + +src_install() { + distutils-r1_src_install + + use examples && dodoc examples/patterns/*.py +}