diff options
author | 2021-06-28 07:55:31 +0200 | |
---|---|---|
committer | 2021-06-28 11:10:20 +0200 | |
commit | 3611c094b66fb5dfe6e3dc4043a4cd0d5d4105e4 (patch) | |
tree | dc2bad70265f17ebb41b00d269a865e112f6fb3f | |
parent | dev-python/importlib_resources: Bump to 5.2.0 (diff) | |
download | gentoo-3611c094b66fb5dfe6e3dc4043a4cd0d5d4105e4.tar.gz gentoo-3611c094b66fb5dfe6e3dc4043a4cd0d5d4105e4.tar.bz2 gentoo-3611c094b66fb5dfe6e3dc4043a4cd0d5d4105e4.zip |
dev-python/asgiref: Bump to 3.4.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/asgiref/Manifest | 1 | ||||
-rw-r--r-- | dev-python/asgiref/asgiref-3.4.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/asgiref/Manifest b/dev-python/asgiref/Manifest index 6d2097599c32..db3fdb7c35c9 100644 --- a/dev-python/asgiref/Manifest +++ b/dev-python/asgiref/Manifest @@ -1 +1,2 @@ DIST asgiref-3.3.4.tar.gz 30780 BLAKE2B f14a5ae3cc3d0c67a827b4b8d002c9d92388285f7388b7ac439b11fbe2e72b6dee5a9c38637e6b5189e3a3625d24a806b5aeff1ffc41861fd4947d7b7c4621ba SHA512 e224ce82f9156e3efde316f3e209a9fbb9494cb9347d6652e19ed130921143de8d3e2a45f50352bf13fcdf229c291e68a0348fff31de144e58cd1a53b4eb0c31 +DIST asgiref-3.4.0.tar.gz 32396 BLAKE2B bbf80c4f5bfc7eaf2f27896913a59f522643de35a5eac45807b88f0b2deef6acef408a6d3abb939c4653554415028b5eea68e99ee45247e384848c554ab61c7c SHA512 259dd6fafcd4db73554a4bd26f6000b33c61e8e4d42294bc22826bc95e89959bcc3f9f97d8f0b5dc7e0cf8420890ea8ab368232b4046254e8c91ad010f6509c0 diff --git a/dev-python/asgiref/asgiref-3.4.0.ebuild b/dev-python/asgiref/asgiref-3.4.0.ebuild new file mode 100644 index 000000000000..d0582cfb5185 --- /dev/null +++ b/dev-python/asgiref/asgiref-3.4.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="ASGI utilities (successor to WSGI)" +HOMEPAGE=" + https://asgi.readthedocs.io/en/latest/ + https://github.com/django/asgiref/ + https://pypi.org/project/asgiref/" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/typing-extensions[${PYTHON_USEDEP}] + ' python3_7 pypy3)" +BDEPEND=" + test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest |