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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 523EE15800F for ; Wed, 22 Feb 2023 19:10:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A888E077C; Wed, 22 Feb 2023 19:10:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42472E077C for ; Wed, 22 Feb 2023 19:10:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E66334095A for ; Wed, 22 Feb 2023 19:10:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E589575 for ; Wed, 22 Feb 2023 19:10:50 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1677093047.bd894c5ea006c839b7c6a45fe0599e16bc0bbe76.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/raet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/raet/raet-0.6.8-r5.ebuild X-VCS-Directories: dev-python/raet/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd894c5ea006c839b7c6a45fe0599e16bc0bbe76 X-VCS-Branch: master Date: Wed, 22 Feb 2023 19:10:50 +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: af7ccfa5-fd11-4cf8-b055-d7ffba0e1150 X-Archives-Hash: ef5a796c37dcf765655d59bf65374a66 commit: bd894c5ea006c839b7c6a45fe0599e16bc0bbe76 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 22 19:08:44 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 22 19:10:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd894c5e dev-python/raet: PEP517, py3.11, pypi.eclass Signed-off-by: Michał Górny gentoo.org> dev-python/raet/raet-0.6.8-r5.ebuild | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/dev-python/raet/raet-0.6.8-r5.ebuild b/dev-python/raet/raet-0.6.8-r5.ebuild new file mode 100644 index 000000000000..6736cf75d4d0 --- /dev/null +++ b/dev-python/raet/raet-0.6.8-r5.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Reliable Asynchronous Event Transport Protocol" +HOMEPAGE=" + https://github.com/RaetProtocol/raet/ + https://pypi.org/project/raet/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/six-1.6.1[${PYTHON_USEDEP}] + >=dev-python/libnacl-1.4.3[${PYTHON_USEDEP}] + >=dev-python/ioflo-2.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/msgpack-1.0.0[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/raet-0.6.8-msgpack-1.0.patch" + "${FILESDIR}/raet-0.6.8-py310.patch" +) + +python_prepare_all() { + distutils-r1_python_prepare_all + sed -e "/setuptools_git/d" -i setup.py || die +} + +python_test() { + cd "${BUILD_DIR}/install$(python_get_sitedir)" || die + "${EPYTHON}" raet/test/__init__.py || die "tests failed for ${EPYTHON}" +}