diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-07-07 10:16:30 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-07-07 10:16:30 +0100 |
commit | 2c9fab2a3468abc6862cb3115c9ff63aa266bf57 (patch) | |
tree | b9249df06dd8229d7f334cb2e536d5c56ac81d3c /dev-python/httpx-socks | |
parent | 0735b7c70f35339a20b45aee2a0a0ad80d118550 (diff) |
gentoo auto-resync : 07:07:2023 - 10:16:30
Diffstat (limited to 'dev-python/httpx-socks')
-rw-r--r-- | dev-python/httpx-socks/Manifest | 2 | ||||
-rw-r--r-- | dev-python/httpx-socks/httpx-socks-0.7.7.ebuild | 44 |
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/httpx-socks/Manifest b/dev-python/httpx-socks/Manifest index d1fb0ce8adfa..dad16d427031 100644 --- a/dev-python/httpx-socks/Manifest +++ b/dev-python/httpx-socks/Manifest @@ -1,3 +1,5 @@ DIST httpx-socks-0.7.6.gh.tar.gz 15116 BLAKE2B d94e13cf61a831cc36486962dd493ebfff4822a73c39f9be30fb2c13720330ec6e6ec1fb763ef1551f00fd97270a8b288e4ed7fc2b30c2f78cd8f608e88d77a6 SHA512 08e2d72d93896c15cc9e455f5d878d1015b72da48b17e53a361f7af2d0890caca42478a0f295332093afa19735a0a2fd4fddf13d09c7baf57575cd6534f9cdf9 +DIST httpx-socks-0.7.7.gh.tar.gz 15127 BLAKE2B 7cdc74de0860edfab5e7bf3ef00312fe813d322c25800fc62985cfe45cc2d16ff2fe03d8b24779e6ba1a065797c8e56a61e025da263d4437e5f04e13fba3f7a7 SHA512 70cccf16245fa364a5f91718e708d67c3ce8fc4bf5bf37a43c620b76b6b294df6d5dc971c1fd69bd3f75d5543b87a0d7eb2f3348492f807517224b0f7e62fe1f EBUILD httpx-socks-0.7.6.ebuild 1195 BLAKE2B b45113883e8b98880451dcc1b85a9ba9d8ca5b5392631e4118b0844c50d26a1f0338f69c29652cb5d06c7299fe3006adc89d4931949a2163fcbb2c48c2873e16 SHA512 16eb2bedb010d6b5e84eadab04a4582bc4d7fd921b302236e98fd6dfa526a06e7226028f989c880386319b34549dabc9ee2d802dbcf0e5860b480924bd8d7c7e +EBUILD httpx-socks-0.7.7.ebuild 1203 BLAKE2B 4bde9351fd5c86926d9dbfe88ff29cd69cb10a7032fc3ad90fe6f8b4295834f4abed1ac006f2cb36d40705cd90e92bb6861a75597a20cb60ad91591602100c8d SHA512 d1dc3006c2388ebe87e252613d99c56302a078f70d458d43d6d05043138f849b8f3af642b7bccbb843eb89e87a6e7582a9c750f1051f379459a0e68902f11ab9 MISC metadata.xml 400 BLAKE2B b244ebd9f79b1c3313797b0384339d17df61913473cd26ab01c8490fe02cbe735609dbd2b2d76e7b1b7f716bbb3038590517481a05c1b7886ad49905f171f5e3 SHA512 3cb1600426cdc5b9ec3bd5d18b547dedb961bbc341891293f828e70d5156d845c8676ba25244804d32c702fab40134c39237e5ce4fc518104a969a8f8ffb282f diff --git a/dev-python/httpx-socks/httpx-socks-0.7.7.ebuild b/dev-python/httpx-socks/httpx-socks-0.7.7.ebuild new file mode 100644 index 000000000000..dfe2e7e85e81 --- /dev/null +++ b/dev-python/httpx-socks/httpx-socks-0.7.7.ebuild @@ -0,0 +1,44 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Proxy (HTTP, SOCKS) transports for httpx" +HOMEPAGE=" + https://github.com/romis2012/httpx-socks/ + https://pypi.org/project/httpx-socks/ +" +# no tests in sdist, as of 0.7.6 +SRC_URI=" + https://github.com/romis2012/httpx-socks/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + <dev-python/httpx-0.25.0[${PYTHON_USEDEP}] + >=dev-python/httpx-0.21.0[${PYTHON_USEDEP}] + <dev-python/httpcore-0.18.0[${PYTHON_USEDEP}] + >=dev-python/httpcore-0.17.3[${PYTHON_USEDEP}] + >=dev-python/python-socks-2.0.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/hypercorn-0.12.0[${PYTHON_USEDEP}] + >=dev-python/pytest-asyncio-0.18.3[${PYTHON_USEDEP}] + >=dev-python/pytest-trio-0.7.0[${PYTHON_USEDEP}] + >=dev-python/starlette-0.19.1[${PYTHON_USEDEP}] + >=dev-python/trio-0.18.0[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6.3[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |