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 CFC331382C5 for ; Mon, 15 Mar 2021 02:55:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05E7BE0830; Mon, 15 Mar 2021 02:55:04 +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 DE55BE0830 for ; Mon, 15 Mar 2021 02:55:03 +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 4ACED340DF2 for ; Mon, 15 Mar 2021 02:55:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C67C44A6 for ; Mon, 15 Mar 2021 02:55:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615776012.22413496c251e08a425785b4e83e6ce6587b3ce6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiofiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aiofiles/Manifest dev-python/aiofiles/aiofiles-0.6.0.ebuild X-VCS-Directories: dev-python/aiofiles/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 22413496c251e08a425785b4e83e6ce6587b3ce6 X-VCS-Branch: master Date: Mon, 15 Mar 2021 02:55:00 +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: f95e59f9-0732-4abe-9227-19c595cbe0be X-Archives-Hash: 833e5b478d35261cd75754cc2aeab88a commit: 22413496c251e08a425785b4e83e6ce6587b3ce6 Author: Sam James gentoo org> AuthorDate: Mon Mar 15 02:40:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 15 02:40:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22413496 dev-python/aiofiles: add 0.6.0 Signed-off-by: Sam James gentoo.org> dev-python/aiofiles/Manifest | 1 + dev-python/aiofiles/aiofiles-0.6.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/aiofiles/Manifest b/dev-python/aiofiles/Manifest index 2c0b011998d..a54b334c38e 100644 --- a/dev-python/aiofiles/Manifest +++ b/dev-python/aiofiles/Manifest @@ -1 +1,2 @@ DIST aiofiles-0.5.0.tar.gz 13332 BLAKE2B ccd044ce9fcd74b2a6419b4f0e9e3977086c9685741dbb734a7f9222ab96dca58b5330ad0d0cd9f10fce03ee123add7101825f047451344fc451c40a4352674e SHA512 89eb1af506bdf5f3f2e9c3afe90f17d521ada1cdeb449dcdc800d4faa4edc1c9ca93811915aa059d8c5a1b0a3aaa40231a46b3d041ca745e071628293bddf1b7 +DIST aiofiles-0.6.0.tar.gz 13585 BLAKE2B 4b81e8369f91b0406c9bd5025c4b5da91418dc810065f1979ec862299fd16976105b89282b22a3ae2e0151cc550c927524795d3c5d69c82809faeb4e16179b8d SHA512 2cf9e340eccfef3934bbd86338a235368b99a10e34526e8267232cef14b12e3d79d40350d82874841d5bf7fd0acf779b663288c57d150096f1275586d51583c4 diff --git a/dev-python/aiofiles/aiofiles-0.6.0.ebuild b/dev-python/aiofiles/aiofiles-0.6.0.ebuild new file mode 100644 index 00000000000..abe5dc24806 --- /dev/null +++ b/dev-python/aiofiles/aiofiles-0.6.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="File support for asyncio" +HOMEPAGE="https://github.com/Tinche/aiofiles" +SRC_URI="https://github.com/Tinche/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest