summaryrefslogtreecommitdiff
path: root/dev-python/httpx
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-15 12:39:43 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-15 12:39:43 +0000
commit900fb1489f150f10356a7455bbe7565df7acfc9a (patch)
tree6a27ccc96bddfb5c6c3b6ceff6219b69438e5465 /dev-python/httpx
parent1718a3de3d39e0052f2bca93fe0662036915c9b6 (diff)
downloadbaldeagleos-repo-900fb1489f150f10356a7455bbe7565df7acfc9a.tar.gz
baldeagleos-repo-900fb1489f150f10356a7455bbe7565df7acfc9a.tar.xz
baldeagleos-repo-900fb1489f150f10356a7455bbe7565df7acfc9a.zip
Adding metadata
Diffstat (limited to 'dev-python/httpx')
-rw-r--r--dev-python/httpx/httpx-0.22.0-r3.ebuild (renamed from dev-python/httpx/httpx-0.22.0-r2.ebuild)13
1 files changed, 9 insertions, 4 deletions
diff --git a/dev-python/httpx/httpx-0.22.0-r2.ebuild b/dev-python/httpx/httpx-0.22.0-r3.ebuild
index e80b6c6686a9..cf895df43f8d 100644
--- a/dev-python/httpx/httpx-0.22.0-r2.ebuild
+++ b/dev-python/httpx/httpx-0.22.0-r3.ebuild
@@ -9,12 +9,17 @@ EAPI=8
# DOCS_AUTODOC=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{7,8,9,10} pypy3 )
+
inherit distutils-r1 optfeature # docs
DESCRIPTION="Fully-featured HTTP client which provides sync and async APIs"
-HOMEPAGE="https://www.python-httpx.org/"
+HOMEPAGE="
+ https://www.python-httpx.org/
+ https://github.com/encode/httpx/
+ https://pypi.org/project/httpx/
+"
SRC_URI="
- https://github.com/encode/${PN}/archive/${PV}.tar.gz
+ https://github.com/encode/httpx/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
@@ -29,7 +34,6 @@ RDEPEND="
dev-python/sniffio[${PYTHON_USEDEP}]
=dev-python/httpcore-0.14*[${PYTHON_USEDEP}]
>=dev-python/rfc3986-1.3[${PYTHON_USEDEP}]
- <dev-python/rfc3986-2[${PYTHON_USEDEP}]
cli? (
=dev-python/click-8*[${PYTHON_USEDEP}]
=dev-python/pygments-2*[${PYTHON_USEDEP}]
@@ -54,7 +58,8 @@ BDEPEND="
distutils_enable_tests pytest
src_prepare() {
- sed -i -e '/rich/s:==10[.][*]:<13:' setup.py || die
+ # unpin deps
+ sed -i -e 's:==[0-9.*]\+::' -e 's:,<[0-9.]\+::' setup.py || die
if ! use cli; then
sed -i -e '/console_scripts/d' setup.py || die
fi