add requests-futures-0.9.9-r1

This commit is contained in:
layman 2021-04-23 16:34:16 -07:00
parent e8efd47132
commit d7231aa464
2 changed files with 33 additions and 0 deletions

View File

@ -1,2 +1,3 @@
DIST requests-futures-0.9.9.tar.gz 7305 BLAKE2B b31cefe6c4c26bf4322828c761091f8c80231033ae570d4383f1a4374b88d2df892a6191c7e18ee65b469dbd72aaddceb57eef5f0dc0ee1e35df2c720985f1e8 SHA512 dba22ea9e6f4dfe5ec80464eb2f8ca9a975596c9ab8a379332779b30834d46bdc9bc26d0d911b20f386257cddecf59e37049648ebd599d9c246c80be80f1f63f
EBUILD requests-futures-0.9.9-r1.ebuild 774 BLAKE2B 265d2b54d54ea114c6f5479d34493a51488eadf6d85c4b0eb87898aa68e53467a3a3a0eac2e196ad85d5b32654c60acac1096f570cbfaa4ce698017ff63cc6c3 SHA512 ac82f51088e5cfef39284c8a06aada32085a71f74424f0c59f7ea13e4a8310b9f4a0cfda4a331209fd513c2b0b81feeabfd37b43b5699c2797df81a3e6e3553b
EBUILD requests-futures-0.9.9.ebuild 776 BLAKE2B 7e47e8280e873940dde4847337f37b9568cd746294d04776cdd8c84fc7a358865b52a49eee4f163daa3f8cba39977716408d8be34b5f994348218d21629d9715 SHA512 e5cba41c8802fc3f3c526558c8c8337e1e510f514c68500288253b05a564218cda68a81c5307628c6499e717363daa88678c14feb074de9e2ec577c84f9c9dd7

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=(python3_{8,9})
inherit distutils-r1
DESCRIPTION="Asynchronous HTTP for Humans"
HOMEPAGE="https://github.com/ross/requests-futures"
SRC_URI="https://github.com/ross/requests-futures/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
IUSE=""
RDEPEND="
>=dev-python/requests-2.21.0[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
"
# tests connect to various remote sites
RESTRICT="test"
python_test() {
py.test || die
}