Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiofiles/
Date: Sat, 27 Nov 2021 21:18:32
Message-Id: 1638047905.cc989b91c9e8ca7ec211c1d7f9f66331fcf015b8.mgorny@gentoo
1 commit: cc989b91c9e8ca7ec211c1d7f9f66331fcf015b8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 27 20:18:29 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 27 21:18:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc989b91
7
8 dev-python/aiofiles: Bump to 0.8.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aiofiles/Manifest | 1 +
13 dev-python/aiofiles/aiofiles-0.8.0.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/aiofiles/Manifest b/dev-python/aiofiles/Manifest
17 index f7c707c9df6f..a40abbde07b6 100644
18 --- a/dev-python/aiofiles/Manifest
19 +++ b/dev-python/aiofiles/Manifest
20 @@ -1 +1,2 @@
21 DIST aiofiles-0.7.0.tar.gz 23245 BLAKE2B 5dcb743912555de9a4c58a37925ca08c4be7065ea78924854d548b32f31f93bdf1b231db840aa9ac822d467ffd8c7f57c506c5f6d550c662013008899da8b716 SHA512 75287266cd86c572db0795074d625dac8b3476c4d8ef9a193ce01ce80a423a4aa39f6e5ec5005fb441375ccb2a2ec84913634919ee5000bfb7623ac77a030b92
22 +DIST aiofiles-0.8.0.tar.gz 24139 BLAKE2B 0f113b75832219e63c0894e70ec613138db7e243ad032bc6d7bf715aab505b5246ab7a0add64b46a9b981801cf05885f7affa965cb625941dc57b805280f0ff1 SHA512 4f590baa0369d465a6139c0d4f50beeec60f8f213b607e0e41598f45f507a12edc67b29c77718b03eee7532f10ead8599f55aac3fcb78d0429435c25a58f6d2e
23
24 diff --git a/dev-python/aiofiles/aiofiles-0.8.0.ebuild b/dev-python/aiofiles/aiofiles-0.8.0.ebuild
25 new file mode 100644
26 index 000000000000..ea78ba811a39
27 --- /dev/null
28 +++ b/dev-python/aiofiles/aiofiles-0.8.0.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="File support for asyncio"
41 +HOMEPAGE="https://github.com/Tinche/aiofiles"
42 +SRC_URI="https://github.com/Tinche/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +BDEPEND="
49 + test? (
50 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
51 + )
52 +"
53 +
54 +distutils_enable_tests pytest