diff options
author | Sam James <sam@gentoo.org> | 2021-04-19 20:38:19 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-19 20:40:41 +0100 |
commit | eb03b0bb73d7d983c85cd620f6394a84f508ec9f (patch) | |
tree | f83430bcfcd7847d6e9f1ab74c691344ece226fb /net-misc/httpie | |
parent | sys-libs/libstatgrab: drop 0.91 (diff) | |
download | gentoo-eb03b0bb73d7d983c85cd620f6394a84f508ec9f.tar.gz gentoo-eb03b0bb73d7d983c85cd620f6394a84f508ec9f.tar.bz2 gentoo-eb03b0bb73d7d983c85cd620f6394a84f508ec9f.zip |
net-misc/httpie: drop 2.3.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/httpie')
-rw-r--r-- | net-misc/httpie/Manifest | 1 | ||||
-rw-r--r-- | net-misc/httpie/httpie-2.3.0.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest index 0176057ddb6d..9fc9517f5432 100644 --- a/net-misc/httpie/Manifest +++ b/net-misc/httpie/Manifest @@ -1,2 +1 @@ -DIST httpie-2.3.0.tar.gz 1769401 BLAKE2B e9bb5ca9ebb5fde3bed66ba15c46cccff1f8d5d01841f954fe4d19be92d3282cd3c19e1fc34b42fe1c36798438aa116f5bb91147864be9d8ee37030cb7796e16 SHA512 d0c5b46075892e9d6df76c1e3b430fcd768238c7fbdeda51368dc1bc7c657efc901088ccb7f1e6fc6e4f54dde4c9bcbe626dfa926c8ca1a6bcfd12e522414505 DIST httpie-2.4.0.tar.gz 1772537 BLAKE2B 111451cc7dc353d5b586554f98ac715a3198f03e74d261944a5f021d2dcc948455500800222b323d182a2a067d0549bda7c318ab3a6c934b9a9beec64aff2db2 SHA512 44cc7ff4fe0f3d8c53a7dd750465f6b56c36f5bbac06d22b760579bd60949039e82313845699669a659ec91adc69dbeac22c06ddd63af64e6f2e0edecf3e732a diff --git a/net-misc/httpie/httpie-2.3.0.ebuild b/net-misc/httpie/httpie-2.3.0.ebuild deleted file mode 100644 index fb68e7636b15..000000000000 --- a/net-misc/httpie/httpie-2.3.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7,8,9} ) -PYTHON_REQ_USE="ssl(+)" - -inherit bash-completion-r1 distutils-r1 - -DESCRIPTION="Modern command line HTTP client" -HOMEPAGE="https://httpie.org/ https://pypi.org/project/httpie/" -SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pygments[${PYTHON_USEDEP}] - >=dev-python/requests-2.22.0[${PYTHON_USEDEP}] - >=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]" -BDEPEND="test? ( - ${RDEPEND} - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] - dev-python/pytest-httpbin[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -python_test() { - local skipped_tests=() - - if has network-sandbox ${FEATURES} ; then - skipped_tests+=( - tests/test_uploads.py::test_chunked_json - tests/test_uploads.py::test_chunked_form - tests/test_uploads.py::test_chunked_stdin - tests/test_uploads.py::TestMultipartFormDataFileUpload::test_multipart_chunked - tests/test_uploads.py::TestRequestBodyFromFilePath::test_request_body_from_file_by_path_chunked - ) - fi - - pytest -v ${skipped_tests[@]/#/--deselect } || die "Tests failed with ${EPYTHON}" -} - -python_install_all() { - newbashcomp extras/httpie-completion.bash http - insinto /usr/share/fish/vendor_completions.d - newins extras/httpie-completion.fish http.fish - distutils-r1_python_install_all -} |