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 E676B158090 for ; Fri, 13 May 2022 16:31:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37642E08FA; Fri, 13 May 2022 16:31:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2233CE08FA for ; Fri, 13 May 2022 16:31:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 675AC34172E for ; Fri, 13 May 2022 16:31:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7600F46D for ; Fri, 13 May 2022 16:31:53 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1652459487.3151ab226751d27146d2febbf76e22d1d6ebe2ee.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-stream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild X-VCS-Directories: dev-python/jaraco-stream/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 3151ab226751d27146d2febbf76e22d1d6ebe2ee X-VCS-Branch: master Date: Fri, 13 May 2022 16:31: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: 740707ec-edac-4982-b1de-31477fd94422 X-Archives-Hash: 3c635127ef7c5a4670c83d91e40f9946 commit: 3151ab226751d27146d2febbf76e22d1d6ebe2ee Author: Arthur Zamarin gentoo org> AuthorDate: Fri May 13 16:17:40 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri May 13 16:31:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3151ab22 dev-python/jaraco-stream: Use PEP517 Signed-off-by: Arthur Zamarin gentoo.org> .../jaraco-stream/jaraco-stream-3.0.3-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild b/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild new file mode 100644 index 000000000000..601d78e3abe3 --- /dev/null +++ b/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) +inherit distutils-r1 + +MY_P=${P/-/.} +DESCRIPTION="Routines for handling streaming data" +HOMEPAGE="https://github.com/jaraco/jaraco.stream" +SRC_URI="mirror://pypi/${MY_P::1}/${PN/-/.}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +BDEPEND=" + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] + test? ( + dev-python/more-itertools[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs \ + ">=dev-python/jaraco-packaging-3.2" \ + ">=dev-python/rst-linker-1.9" +distutils_enable_tests pytest