summaryrefslogtreecommitdiff
path: root/dev-python/asyncstdlib
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-27 01:38:46 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-27 01:38:46 +0000
commit9ed8764829768af0455855a700dce5cf45bee76a (patch)
tree1b585ebe476b976799d65b4ac9bd0b778a133c25 /dev-python/asyncstdlib
parentbadd84a7d64cec73e4b101ce480dc52e6f8ec019 (diff)
downloadbaldeagleos-repo-9ed8764829768af0455855a700dce5cf45bee76a.tar.gz
baldeagleos-repo-9ed8764829768af0455855a700dce5cf45bee76a.tar.xz
baldeagleos-repo-9ed8764829768af0455855a700dce5cf45bee76a.zip
Adding metadata
Diffstat (limited to 'dev-python/asyncstdlib')
-rw-r--r--dev-python/asyncstdlib/asyncstdlib-3.10.2-r1.ebuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/asyncstdlib/asyncstdlib-3.10.2-r1.ebuild b/dev-python/asyncstdlib/asyncstdlib-3.10.2-r1.ebuild
new file mode 100644
index 000000000000..1aa2468b33f5
--- /dev/null
+++ b/dev-python/asyncstdlib/asyncstdlib-3.10.2-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{6,7,8,9,10} )
+inherit distutils-r1
+
+DESCRIPTION="The missing async toolbox"
+HOMEPAGE="
+ https://github.com/maxfischer2781/asyncstdlib/
+ https://pypi.org/project/asyncstdlib/"
+SRC_URI="
+ https://github.com/maxfischer2781/asyncstdlib/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -i -e '2,3s:flit:&_core:' pyproject.toml || die
+ distutils-r1_src_prepare
+}