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/asgiref/
Date: Thu, 01 Jul 2021 22:30:05
Message-Id: 1625178594.fc5001e395dab4a774344067e45a3ede2ac9f4bf.mgorny@gentoo
1 commit: fc5001e395dab4a774344067e45a3ede2ac9f4bf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 22:09:47 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 22:29:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc5001e3
7
8 dev-python/asgiref: Bump to 3.4.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/asgiref/Manifest | 1 +
13 dev-python/asgiref/asgiref-3.4.1.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/asgiref/Manifest b/dev-python/asgiref/Manifest
17 index db3fdb7c35c..735c3399505 100644
18 --- a/dev-python/asgiref/Manifest
19 +++ b/dev-python/asgiref/Manifest
20 @@ -1,2 +1,3 @@
21 DIST asgiref-3.3.4.tar.gz 30780 BLAKE2B f14a5ae3cc3d0c67a827b4b8d002c9d92388285f7388b7ac439b11fbe2e72b6dee5a9c38637e6b5189e3a3625d24a806b5aeff1ffc41861fd4947d7b7c4621ba SHA512 e224ce82f9156e3efde316f3e209a9fbb9494cb9347d6652e19ed130921143de8d3e2a45f50352bf13fcdf229c291e68a0348fff31de144e58cd1a53b4eb0c31
22 DIST asgiref-3.4.0.tar.gz 32396 BLAKE2B bbf80c4f5bfc7eaf2f27896913a59f522643de35a5eac45807b88f0b2deef6acef408a6d3abb939c4653554415028b5eea68e99ee45247e384848c554ab61c7c SHA512 259dd6fafcd4db73554a4bd26f6000b33c61e8e4d42294bc22826bc95e89959bcc3f9f97d8f0b5dc7e0cf8420890ea8ab368232b4046254e8c91ad010f6509c0
23 +DIST asgiref-3.4.1.tar.gz 32529 BLAKE2B 4b5f3b33e165468d71711cf28a5a6161866cd7495140cb67ff028aba5a2586414783d2fa7ce744e99e269714d9d64a019a67c852fd4546ba1f71625473010b9f SHA512 af266fc3eac58c21f2ab3f66e522067388f9cf232b17344fb5afbc408c034e61a1cce02362ec5dc494985beef099800f75cf7de28dc057c45e4bcb973b0a6dbe
24
25 diff --git a/dev-python/asgiref/asgiref-3.4.1.ebuild b/dev-python/asgiref/asgiref-3.4.1.ebuild
26 new file mode 100644
27 index 00000000000..29fe309588a
28 --- /dev/null
29 +++ b/dev-python/asgiref/asgiref-3.4.1.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 2020-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="ASGI utilities (successor to WSGI)"
40 +HOMEPAGE="
41 + https://asgi.readthedocs.io/en/latest/
42 + https://github.com/django/asgiref/
43 + https://pypi.org/project/asgiref/"
44 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
49 +
50 +RDEPEND="
51 + $(python_gen_cond_dep '
52 + dev-python/typing-extensions[${PYTHON_USEDEP}]
53 + ' python3_7 pypy3)"
54 +BDEPEND="
55 + test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )"
56 +
57 +distutils_enable_tests pytest