dev-python/treq: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2023-11-29 11:34:37 +01:00
parent ee459a3c8d
commit 0908c2eeaa
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 0 additions and 50 deletions

View File

@ -1,2 +1 @@
DIST treq-22.2.0.tar.gz 72922 BLAKE2B ab4637c801e5e777f81f6e6a6e12e36ef47e052a4103eb70bf4e10d3fb44b60f144f32734625b4babb375acc96e3cad1895634d3d2fc08ac3095769180e65328 SHA512 465a02481a51ac246ac85f561f2e7a59d97aeeda9f0953dd83678ff836802a187a6aedcce830a9e3095a9c72227bd06113610c3be0967f1362a645a31278bde0
DIST treq-23.11.0.tar.gz 74450 BLAKE2B 0e10b070e1623b1aaaaf8ce53c98d29a44e9e5e76a84d6004e21cac74564cbb4b22c4015b4d999967ee519f6356016d3cb3fd8304df68967ec46dd2c1005d3ee SHA512 bf62373f51a0552e040a628c86fe0f8d136ab5dfefaa2fa46d9ab173a58c20c0211f94370561e07fafb7da87140e88c10cf336ff7a61e5b3fc1a47fd1193cc27

View File

@ -1,49 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="A requests-like API built on top of twisted.web's Agent"
HOMEPAGE="
https://github.com/twisted/treq/
https://pypi.org/project/treq/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-python/attrs[${PYTHON_USEDEP}]
>=dev-python/hyperlink-21.0.0[${PYTHON_USEDEP}]
dev-python/incremental[${PYTHON_USEDEP}]
>=dev-python/requests-2.1.0[${PYTHON_USEDEP}]
|| (
>=dev-python/twisted-18.7.0[ssl(-),${PYTHON_USEDEP}]
>=dev-python/twisted-18.7.0[crypt(-),${PYTHON_USEDEP}]
)
"
BDEPEND="
test? (
dev-python/httpbin[${PYTHON_USEDEP}]
)
"
distutils_enable_sphinx docs
src_prepare() {
# fix relative path for docs generation
sed -e "s@('..')@('../src')@" -i docs/conf.py || die
distutils-r1_src_prepare
}
python_test() {
"${EPYTHON}" -m twisted.trial treq || die "Tests failed with ${EPYTHON}"
}