requests-2.21.0
This commit is contained in:
parent
c725bb387a
commit
a4c1f5edf7
@ -1,4 +1,6 @@
|
||||
DIST requests-2.20.0.tar.gz 111179 BLAKE2B 642adfb54fb4ac1a4dee3b3b2d16386b099fe97f1713f77104a1402d17714886e954e4c476aa04ad1e0d17309e2d3d0e8d4098d66a48cd7a64399e2bdf5ad63f SHA512 d9d44ed56f868484e36686dee7a2507d8fef45f9cbd861971bb2b6956c7aecb20988f4830017f111027b5eebd00541805797820b0a455694fdbd1b5dce8907d2
|
||||
DIST requests-2.20.1.tar.gz 111475 BLAKE2B 3d57831915d7f27cbd0891799eb8eca3a1c28a2fc9096cf2189fb17351fbb1b35ac754d44b5c0c7f5df367d51b61287ef383b97cb983399df695954eae21b39e SHA512 631969fab07e6674afc8cc9707a2e18ea394c09cdef031894fd0b28cf94e20f4f24434901edf3233b84ce7be199cc8325b9fe975d9003334206bb4a85ca278ae
|
||||
DIST requests-2.21.0.tar.gz 111528 BLAKE2B 7b40f9f572a8efde41c177fb5d1e1eaf29ca60cad0661fa28ac0085f3700348380d619f68c0082f24044d1af82b16d6b1e7d5dd2c2a2329f85fcee7141b1fbf6 SHA512 385e1d80993a21c09e7c4682500ca8c24155962ba41ecd8e73612722b2ff6618b736e827fc48ad1683b0d2bc7a420cfe680f5107860aca52656ef777f1d60104
|
||||
EBUILD requests-2.20.0.ebuild 1426 BLAKE2B 24ce52d2cb0a623d17d45d963ff517115be73bea3fe153c905c66bd085f4cce75b70e8c6d48fe1e5cb8b2af1d6a8ffec3da6191cc7d78c07ba9f6c682a187856 SHA512 1efaf9b4f118a7fe0b4996d2e44f548e070716ab1543a83b4c768e67ef0a100926653e0189c8cdb1bdaed4c9cf7111c51c5b22eafe4183e955cc81a5b54c8a87
|
||||
EBUILD requests-2.20.1.ebuild 1426 BLAKE2B 77cf4ed13f1781c83de38010b52aeb3d273f8c7edfee80659903faa3674849a1f6c464ff9c6e53b2df7a495c8aa08ab566d0773a564b670d6cab2e4e39d08777 SHA512 7ec4abc5115bf85eeb2f93f6f417c7ed58215dd5e711810064e2809ef45bd693e73a9d0934bb25916794eec5fda68358be824852dc76b16811ac65beacf77fb6
|
||||
EBUILD requests-2.21.0.ebuild 1426 BLAKE2B 77cf4ed13f1781c83de38010b52aeb3d273f8c7edfee80659903faa3674849a1f6c464ff9c6e53b2df7a495c8aa08ab566d0773a564b670d6cab2e4e39d08777 SHA512 7ec4abc5115bf85eeb2f93f6f417c7ed58215dd5e711810064e2809ef45bd693e73a9d0934bb25916794eec5fda68358be824852dc76b16811ac65beacf77fb6
|
||||
|
52
dev-python/requests/requests-2.21.0.ebuild
Normal file
52
dev-python/requests/requests-2.21.0.ebuild
Normal file
@ -0,0 +1,52 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="HTTP library for human beings"
|
||||
HOMEPAGE="http://python-requests.org/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
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="socks5 +ssl"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
|
||||
>=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.5[${PYTHON_USEDEP}]
|
||||
<dev-python/idna-2.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/urllib3-1.24[${PYTHON_USEDEP}]
|
||||
socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
|
||||
ssl? (
|
||||
>=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyopenssl-0.14[$(python_gen_usedep 'python*' pypy)]
|
||||
)
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
# tests connect to various remote sites
|
||||
RESTRICT="test"
|
||||
|
||||
#DEPEND+="
|
||||
# test? (
|
||||
# dev-python/pytest[${PYTHON_USEDEP}]
|
||||
# dev-python/pytest-httpbin[${PYTHON_USEDEP}]
|
||||
# dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
# dev-python/pytest-xdist[${PYTHON_USEDEP}]
|
||||
# >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
|
||||
python_test() {
|
||||
py.test || die
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user