add envoy-reader-0.8.6 and requests-async-0.6.2

This commit is contained in:
2019-08-06 19:46:10 +02:00
parent 3fe9eca370
commit d851fdc574
7 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST requests-async-0.6.2.tar.gz 12856 BLAKE2B 4552f1e26e730e5109b41a93994e3f44f8d1789ea3026847332fb2a0ac1d19ecf205505ac6347c368e9a3a56bad9fce5914b2e2fa3513afcd36c180db82149a8 SHA512 cd56e8267b766d99ab69b878ecf0c6df9e5eecec4fbf7241fc2a2c4a7d5bc00c023be993f49e034c2f874ccb4377f86f2bbdbdec533e5be030b8995eaaf5d462
EBUILD requests-async-0.6.2.ebuild 714 BLAKE2B 5e9b627315fbb41edf9088758e6fee823ee512f47bbbabeb6c8df8a5d64723252dd6ba9a0ce6c04b9318fa2ebc88a6762fef6c585359524d77e378f1f9049715 SHA512 d9343c324e22f9afad4797d052959a4d999e0c734d0b2015171f9fc4583661aecffd64e78945723dfbf8de12f04e1dfc756e8d33a18516d0dc20522984603413
MISC metadata.xml 465 BLAKE2B f034f0ead522f3ca22f18cbd0aa0d87f44c0046a2bc30484ea6c5f4ee1151634f897bd9893e260691eff69151b36276dc47bb062af9aadcf0303329185f9dacd SHA512 94dd18857f4c3530b6862d97737809727bd82eff69a0d3360d632ef9bec86536fbc8bf65fd943a9c78147c85300a6b5517779ad9f6e7f75e5ef3a193448fe00c

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">requests-async</remote-id>
<maintainer status="unknown">
<email>tom@tomchristie.com</email>
<name>Tom Christie</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="async-await support for requests."
HOMEPAGE="https://github.com/encode/requests-async https://pypi.org/project/requests-async/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}