summaryrefslogtreecommitdiff
path: root/dev-python/httplib2
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-04 19:14:59 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-04 19:14:59 +0000
commiteb879137397b2780739bdbeddd7ea01439186c1c (patch)
treeba318372285287dd4fa2c6661bc832810bd34b26 /dev-python/httplib2
parent50a73c5441045f14bdb49aededf33cd7f23ff891 (diff)
downloadbaldeagleos-repo-eb879137397b2780739bdbeddd7ea01439186c1c.tar.gz
baldeagleos-repo-eb879137397b2780739bdbeddd7ea01439186c1c.tar.xz
baldeagleos-repo-eb879137397b2780739bdbeddd7ea01439186c1c.zip
Adding metadata
Diffstat (limited to 'dev-python/httplib2')
-rw-r--r--dev-python/httplib2/Manifest1
-rw-r--r--dev-python/httplib2/httplib2-0.31.0.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/httplib2/Manifest b/dev-python/httplib2/Manifest
index 62685933e187..b9561638800b 100644
--- a/dev-python/httplib2/Manifest
+++ b/dev-python/httplib2/Manifest
@@ -1,2 +1 @@
-DIST httplib2-0.31.0.gh.tar.gz 277430 BLAKE2B adbf06ae9372ec1be4a7c268791964ae35a7468e29912a6345778bd3748abe57636ac26741700db77e2d4f073d9741eed27843df06ecf62fbdb745765c2cee40 SHA512 6dba1b02b1e08da782be3eff275fe1920dda80ac8c638ccc18c3cfdbef0daf6cda8ebb168469442b7233756fd8cd7b4585c0c0fe7e4eaf5ba45225b84ceab781
DIST httplib2-0.31.1.gh.tar.gz 277455 BLAKE2B 10f488d9a75a1a003d2a3d17d55af640824e7af57fc0005224586851a795e2a73d79e1be5d0ffaaa6a3b9b3bae26db6a0fc83dd009c240276aa61bb629d4e931 SHA512 c5b8ad2685ea7e26ab0b99c3856a64fc81f4986d4d925fee2391f3609abadfd76f1e5974ab3d93244f9b9dbd2260bbc3152842a8b14acb597f5bb998ddc91162
diff --git a/dev-python/httplib2/httplib2-0.31.0.ebuild b/dev-python/httplib2/httplib2-0.31.0.ebuild
deleted file mode 100644
index 1ea2ac631ebd..000000000000
--- a/dev-python/httplib2/httplib2-0.31.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="A comprehensive HTTP client library"
-HOMEPAGE="
- https://pypi.org/project/httplib2/
- https://github.com/httplib2/httplib2/
-"
-SRC_URI="
- https://github.com/httplib2/httplib2/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
-IUSE="socks5"
-
-RDEPEND="
- dev-python/certifi[${PYTHON_USEDEP}]
- dev-python/pyparsing[${PYTHON_USEDEP}]
- socks5? ( dev-python/pysocks[${PYTHON_USEDEP}] )
-"
-BDEPEND="
- test? (
- dev-libs/openssl
- dev-python/cryptography[${PYTHON_USEDEP}]
- dev-python/pysocks[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=( pytest-{forked,timeout} )
-# note: tests are racy with xdist
-distutils_enable_tests pytest
-
-src_prepare() {
- sed -i -e '/--cov/d' setup.cfg || die
- # remove bundled certs, we always want system certs via certifi
- rm httplib2/cacerts.txt || die
- distutils-r1_src_prepare
-}
-
-python_test() {
- # TODO: there is something broken with pytest.mark.forked in pytest>=8.3.3
- # work around that via --forked for now
- epytest --forked
-}