add sniffio-1.1.0

This commit is contained in:
Andreas Billmeier 2020-07-25 11:07:42 +02:00 committed by Andreas Billmeier
parent 518d3d4150
commit 53b63850f6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* add httpx-0.13.3
* add hstspreload-2020.7.22
* add httpcore-0.9.1
* add sniffio-1.1.0
2020-07-18 homeassistant-0.112.5.ebuild
* remove typing

View File

@ -0,0 +1,3 @@
DIST sniffio-1.1.0.tar.gz 15285 BLAKE2B fc2887150c8b64cc9ba5eb261d2f04650033279e5b5a6527f28fa8eff6cda409ffddb0986bba1358288fd35e0bbd09d90a7c4a0893a612f1efdbec393c2d9e3c SHA512 f315c79245ccec8e1e6e0f8ffe4cf42fdab7f5fe3e680ddc05c65732a6d26989ac1459135f13938380928b02802bc0a6b1174c83118a60b0ad15f59730927912
EBUILD sniffio-1.1.0.ebuild 715 BLAKE2B fc1712c5dc64b5944a94ada53daff1ee509335a93d69acc85d322b85b0fca438376adf0355829645f204b580cc5b9e900e322d1e24fff454c6fe4e19d963c23a SHA512 5459dfc9c804b746424cde91d4e4f69b41df1b8a18d83267c2cd82be26890cd3ed3f3902e98d3a1958b8015f212f1bba5e29dcc44bc1d195e247126e921bc498
MISC metadata.xml 451 BLAKE2B 5bf845d335de2deefc82763308d208c77d077ed94a112f0f43109334319c0bdb8e7c5b39ac5423f0f4d9bd4bc1f0a689c2a24ce87c231b817245c4baf708b56b SHA512 0a4c24dbfb463c0aa381e13fa1d9c9838753c1edb11419651d82ff12604b36fff1334b1f587f2c69b7f53494f094a8c0079d537ba19d666babe6c161a6d0ddf0

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">sniffio</remote-id>
<maintainer status="unknown">
<email>njs@pobox.com</email>
<name>Nathaniel J. Smith</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Sniff out which async library your code is running under"
HOMEPAGE="https://github.com/python-trio/sniffio https://pypi.org/project/sniffio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~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
}