[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-08-09 Thread Piotr Karbowski
commit: 4d2c6a7ab24d6a5b92eedffc089262a0163921cb
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Wed Aug  9 18:07:01 2023 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Wed Aug  9 18:14:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2c6a7a

net-misc/httpie: drop myself as maintainer; m-n.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index 73d29e0ff649..cba10e14d2cc 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,10 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   slashbe...@gentoo.org
-   Piotr Karbowski
-   
+   

HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
client. Its goal is to make CLI interaction with web services as



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-08-09 Thread Piotr Karbowski
commit: e8ab8ede291ce58b76ec8cd0f18f1dc47916e82a
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Wed Aug  9 18:05:21 2023 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Wed Aug  9 18:14:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ab8ede

net-misc/httpie: stabilize 3.2.1-r2.

Includes the fix for ImportError on urllib.

Closes: https://bugs.gentoo.org/909792
Closes: https://bugs.gentoo.org/910668
Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/httpie-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-3.2.1-r2.ebuild 
b/net-misc/httpie/httpie-3.2.1-r2.ebuild
index db50e1e2094e..217a2307a2d1 100644
--- a/net-misc/httpie/httpie-3.2.1-r2.ebuild
+++ b/net-misc/httpie/httpie-3.2.1-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/charset-normalizer[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/, net-misc/httpie/files/

2023-05-16 Thread Piotr Karbowski
commit: 911e95c2d254ed5ac0780dc00efd6029594e9931
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Tue May 16 21:07:56 2023 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Tue May 16 21:08:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911e95c2

net-misc/httpie: 3.2.1-r2 revbump with urllib3-2.x fixes.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/files/httpie-urllib3-2-fixes.patch | 57 ++
 net-misc/httpie/httpie-3.2.1-r2.ebuild | 49 +++
 2 files changed, 106 insertions(+)

diff --git a/net-misc/httpie/files/httpie-urllib3-2-fixes.patch 
b/net-misc/httpie/files/httpie-urllib3-2-fixes.patch
new file mode 100644
index ..2c6c5d348171
--- /dev/null
+++ b/net-misc/httpie/files/httpie-urllib3-2-fixes.patch
@@ -0,0 +1,57 @@
+From f8bb34ebf97bf6a103a7d021b16059522d76d52d Mon Sep 17 00:00:00 2001
+From: Brendon Smith 
+Date: Sat, 6 May 2023 16:24:26 -0400
+Subject: [PATCH] Fix `urllib3.util.ssl_.DEFAULT_CIPHERS` import
+
+---
+ httpie/cli/definition.py |  4 ++--
+ httpie/ssl_.py   | 15 ++-
+ 2 files changed, 12 insertions(+), 7 deletions(-)
+
+diff --git a/httpie/cli/definition.py b/httpie/cli/definition.py
+index 0e5f91edf7..5e54d1c896 100644
+--- a/httpie/cli/definition.py
 b/httpie/cli/definition.py
+@@ -831,8 +831,8 @@ def format_auth_help(auth_plugins_mapping, *, 
isolation_mode: bool = False):
+ short_help='A string in the OpenSSL cipher list format.',
+ help=f"""
+ 
+-A string in the OpenSSL cipher list format. By default, the following
+-is used:
++A string in the OpenSSL cipher list format. By default, the available
++system ciphers will be used, which are:
+ 
+ {DEFAULT_SSL_CIPHERS}
+ 
+diff --git a/httpie/ssl_.py b/httpie/ssl_.py
+index b9438543eb..c8dba0ea8d 100644
+--- a/httpie/ssl_.py
 b/httpie/ssl_.py
+@@ -3,13 +3,9 @@
+ 
+ from httpie.adapters import HTTPAdapter
+ # noinspection PyPackageRequirements
+-from urllib3.util.ssl_ import (
+-DEFAULT_CIPHERS, create_urllib3_context,
+-resolve_ssl_version,
+-)
++from urllib3.util.ssl_ import create_urllib3_context, resolve_ssl_version
+ 
+ 
+-DEFAULT_SSL_CIPHERS = DEFAULT_CIPHERS
+ SSL_VERSION_ARG_MAPPING = {
+ 'ssl2.3': 'PROTOCOL_SSLv23',
+ 'ssl3': 'PROTOCOL_SSLv3',
+@@ -94,3 +90,12 @@ def _is_key_file_encrypted(key_file):
+ return True
+ 
+ return False
++
++
++try:
++from urllib3.util.ssl_ import DEFAULT_CIPHERS
++except ImportError:
++_context = HTTPieHTTPSAdapter._create_ssl_context(verify=False)
++DEFAULT_CIPHERS = ":".join([cipher["name"] for cipher in 
_context.get_ciphers()])
++
++DEFAULT_SSL_CIPHERS = DEFAULT_CIPHERS

diff --git a/net-misc/httpie/httpie-3.2.1-r2.ebuild 
b/net-misc/httpie/httpie-3.2.1-r2.ebuild
new file mode 100644
index ..c28c9e703420
--- /dev/null
+++ b/net-misc/httpie/httpie-3.2.1-r2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="ssl(+)"
+DISTUTILS_USE_PEP517=setuptools
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Modern command line HTTP client"
+HOMEPAGE="https://httpie.io/ https://pypi.org/project/httpie/;
+SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/charset_normalizer[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/multidict[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-urllib3-2-fixes.patch"
+)
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-05-01 Thread Sam James
commit: 5ef8d4eb01decd12f9d8c42dc02c9d98f7f046af
Author: Sam James  gentoo  org>
AuthorDate: Mon May  1 12:43:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May  1 12:48:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef8d4eb

net-misc/httpie: drop 2.4.0, 2.5.0, 2.6.0

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  3 --
 net-misc/httpie/httpie-2.4.0.ebuild | 58 -
 net-misc/httpie/httpie-2.5.0.ebuild | 42 ---
 net-misc/httpie/httpie-2.6.0.ebuild | 43 ---
 4 files changed, 146 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 71715da957bc..37b4fc74d5dd 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,4 +1 @@
-DIST httpie-2.4.0.tar.gz 1772537 BLAKE2B 
111451cc7dc353d5b586554f98ac715a3198f03e74d261944a5f021d2dcc948455500800222b323d182a2a067d0549bda7c318ab3a6c934b9a9beec64aff2db2
 SHA512 
44cc7ff4fe0f3d8c53a7dd750465f6b56c36f5bbac06d22b760579bd60949039e82313845699669a659ec91adc69dbeac22c06ddd63af64e6f2e0edecf3e732a
-DIST httpie-2.5.0.tar.gz 1105177 BLAKE2B 
6e16868c81522d4e6d2fc0a4e093c190f18ced720b35217930865ae3f8e168193cc33dfecc13c5d310f52647d6e79d17b247f56e56e8586d633a2d9502be66a7
 SHA512 
f14aa23fea7578181b9bd6ededea04de9ddf0b2f697b23f76d2d96e2c17b95617318c711750bad6af550400dbc03732ab17fdf84e59d577f33f073e600a55330
-DIST httpie-2.6.0.tar.gz 1133495 BLAKE2B 
3ac61fc68ab59ac7523b030a8c7af85c4af05357aa19282b514b813351efabe783f47ab82d292117e0a9170ff793b71356941dc4eb159c585629cae3adec9b5a
 SHA512 
acd7dc847b67e27909c49ccddec84321c4d73fa5b49f06ce3d94d790093a8f168a1c6627bc4921ca8c0e48b9904f38e17935b645495e2313d16ac2eecf659038
 DIST httpie-3.2.1.gh.tar.gz 1276550 BLAKE2B 
627aa3db762e9e407f882be2c4267f5227301b189695537e7ac69ff140d6d39292251e131f9b9e7761e904a736d112bb4c1f5c6708c1468c6309474ee8c140b6
 SHA512 
ffcf6050138c49d5acb01f214d9b3fee6c78502c4c6dc45a295bafc88aafd1789f97a69c922f6e093fb48a402c1f83a7fff5307849130df81c4bcb2d595a03bf

diff --git a/net-misc/httpie/httpie-2.4.0.ebuild 
b/net-misc/httpie/httpie-2.4.0.ebuild
deleted file mode 100644
index 4945ee2660c9..
--- a/net-misc/httpie/httpie-2.4.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_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=()
-
-   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
-   tests/test_tokens.py::test_verbose_chunked
-   )
-
-   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
-}

diff --git a/net-misc/httpie/httpie-2.5.0.ebuild 
b/net-misc/httpie/httpie-2.5.0.ebuild
deleted file mode 100644
index 5ffc65594473..
--- a/net-misc/httpie/httpie-2.5.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{9,10} )
-PYTHON_REQ_USE="ssl(+)"
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Modern command line HTTP client"
-HOMEPAGE="https://httpie.io/ https://pypi.org/project/httpie/;
-SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-03-30 Thread Arthur Zamarin
commit: ec827c38e989145fefbd6cb723c650e9e4847e02
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 30 17:23:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 30 17:23:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec827c38

net-misc/httpie: Stabilize 3.2.1-r1 x86, #895312

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-misc/httpie/httpie-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-3.2.1-r1.ebuild 
b/net-misc/httpie/httpie-3.2.1-r1.ebuild
index ab971ab2815e..44e9d64d568c 100644
--- a/net-misc/httpie/httpie-3.2.1-r1.ebuild
+++ b/net-misc/httpie/httpie-3.2.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/charset_normalizer[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-03-30 Thread Arthur Zamarin
commit: 5758ab2a9234c1df92627724207c02c04d602821
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 30 17:23:28 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 30 17:23:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5758ab2a

net-misc/httpie: Stabilize 3.2.1-r1 amd64, #895312

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-misc/httpie/httpie-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-3.2.1-r1.ebuild 
b/net-misc/httpie/httpie-3.2.1-r1.ebuild
index b24ab5442eee..ab971ab2815e 100644
--- a/net-misc/httpie/httpie-3.2.1-r1.ebuild
+++ b/net-misc/httpie/httpie-3.2.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
dev-python/charset_normalizer[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-02-23 Thread Piotr Karbowski
commit: 899a1631754bf85151b4151ffb8afefa963e7a41
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Thu Feb 23 22:30:51 2023 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Thu Feb 23 22:31:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899a1631

net-misc/httpie: 3.2.1-r1 revbump; missing deps added.

Closes: https://bugs.gentoo.org/895850
Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/{httpie-3.2.1.ebuild => httpie-3.2.1-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-misc/httpie/httpie-3.2.1.ebuild 
b/net-misc/httpie/httpie-3.2.1-r1.ebuild
similarity index 93%
rename from net-misc/httpie/httpie-3.2.1.ebuild
rename to net-misc/httpie/httpie-3.2.1-r1.ebuild
index fce9a5dd2920..b24ab5442eee 100644
--- a/net-misc/httpie/httpie-3.2.1.ebuild
+++ b/net-misc/httpie/httpie-3.2.1-r1.ebuild
@@ -21,6 +21,8 @@ RDEPEND="
dev-python/charset_normalizer[${PYTHON_USEDEP}]
dev-python/defusedxml[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/multidict[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]
 "



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2023-02-18 Thread Piotr Karbowski
commit: 34a6898bbad210803b1f5d90ef9d591983e43cda
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Feb 18 20:03:57 2023 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Feb 18 20:03:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34a6898b

net-misc/httpie: 3.2.1 version bump; EAPI bump; py3.11 bump; PEP517.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-3.2.1.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index e11717c65345..71715da957bc 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,3 +1,4 @@
 DIST httpie-2.4.0.tar.gz 1772537 BLAKE2B 
111451cc7dc353d5b586554f98ac715a3198f03e74d261944a5f021d2dcc948455500800222b323d182a2a067d0549bda7c318ab3a6c934b9a9beec64aff2db2
 SHA512 
44cc7ff4fe0f3d8c53a7dd750465f6b56c36f5bbac06d22b760579bd60949039e82313845699669a659ec91adc69dbeac22c06ddd63af64e6f2e0edecf3e732a
 DIST httpie-2.5.0.tar.gz 1105177 BLAKE2B 
6e16868c81522d4e6d2fc0a4e093c190f18ced720b35217930865ae3f8e168193cc33dfecc13c5d310f52647d6e79d17b247f56e56e8586d633a2d9502be66a7
 SHA512 
f14aa23fea7578181b9bd6ededea04de9ddf0b2f697b23f76d2d96e2c17b95617318c711750bad6af550400dbc03732ab17fdf84e59d577f33f073e600a55330
 DIST httpie-2.6.0.tar.gz 1133495 BLAKE2B 
3ac61fc68ab59ac7523b030a8c7af85c4af05357aa19282b514b813351efabe783f47ab82d292117e0a9170ff793b71356941dc4eb159c585629cae3adec9b5a
 SHA512 
acd7dc847b67e27909c49ccddec84321c4d73fa5b49f06ce3d94d790093a8f168a1c6627bc4921ca8c0e48b9904f38e17935b645495e2313d16ac2eecf659038
+DIST httpie-3.2.1.gh.tar.gz 1276550 BLAKE2B 
627aa3db762e9e407f882be2c4267f5227301b189695537e7ac69ff140d6d39292251e131f9b9e7761e904a736d112bb4c1f5c6708c1468c6309474ee8c140b6
 SHA512 
ffcf6050138c49d5acb01f214d9b3fee6c78502c4c6dc45a295bafc88aafd1789f97a69c922f6e093fb48a402c1f83a7fff5307849130df81c4bcb2d595a03bf

diff --git a/net-misc/httpie/httpie-3.2.1.ebuild 
b/net-misc/httpie/httpie-3.2.1.ebuild
new file mode 100644
index ..fce9a5dd2920
--- /dev/null
+++ b/net-misc/httpie/httpie-3.2.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="ssl(+)"
+DISTUTILS_USE_PEP517=setuptools
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Modern command line HTTP client"
+HOMEPAGE="https://httpie.io/ https://pypi.org/project/httpie/;
+SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/charset_normalizer[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   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/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2022-01-22 Thread Agostino Sarubbo
commit: a17ce6de04460775117b534c899846c1daa7a720
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan 22 09:47:39 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan 22 09:47:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17ce6de

net-misc/httpie: x86 stable wrt bug #831647

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-2.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.6.0.ebuild 
b/net-misc/httpie/httpie-2.6.0.ebuild
index 6582fb7ef3c3..570ee9e56a99 100644
--- a/net-misc/httpie/httpie-2.6.0.ebuild
+++ b/net-misc/httpie/httpie-2.6.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/charset_normalizer[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2022-01-21 Thread Jakov Smolić
commit: fc9d3c02635721802b3905e8b6f91e2f8bb8e0f2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jan 21 13:26:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jan 21 13:27:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9d3c02

net-misc/httpie: Stabilize 2.6.0 amd64, #831647

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/httpie/httpie-2.6.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/httpie/httpie-2.6.0.ebuild 
b/net-misc/httpie/httpie-2.6.0.ebuild
index a663fcd882b5..6582fb7ef3c3 100644
--- a/net-misc/httpie/httpie-2.6.0.ebuild
+++ b/net-misc/httpie/httpie-2.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
dev-python/charset_normalizer[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-10-25 Thread Piotr Karbowski
commit: 4b926acc512f77a4a9a8c72ae545e3ab3aa66097
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Mon Oct 25 19:25:16 2021 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Mon Oct 25 19:25:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b926acc

net-misc/httpie: takeover.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/httpie/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index cba10e14d2c..73d29e0ff64 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,7 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   slashbe...@gentoo.org
+   Piotr Karbowski
+   

HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
client. Its goal is to make CLI interaction with web services as



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-10-25 Thread Sam James
commit: 5ad623eea5f5e72460da24648fe23eca936099d6
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 25 14:00:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 25 14:00:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad623ee

net-misc/httpie: drop to maintainer-needed (proxied-maint retiring)

Bug: https://bugs.gentoo.org/814146
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index 4bfbb6afe5f..cba10e14d2c 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,14 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   mick...@apible.io
-   Mickaël Schoentgen
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
client. Its goal is to make CLI interaction with web services as



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-10-19 Thread Sam James
commit: a9439d542d5549c294cecd67250d4b27a260eff1
Author: Mickaël Schoentgen  tiger-222  fr>
AuthorDate: Thu Oct 14 13:06:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct 20 01:50:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9439d54

net-misc/httpie: version bump to 2.6.0

Signed-off-by: Mickaël Schoentgen  tiger-222.fr>
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.6.0.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 3779e5c114a..e11717c6534 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1,3 @@
 DIST httpie-2.4.0.tar.gz 1772537 BLAKE2B 
111451cc7dc353d5b586554f98ac715a3198f03e74d261944a5f021d2dcc948455500800222b323d182a2a067d0549bda7c318ab3a6c934b9a9beec64aff2db2
 SHA512 
44cc7ff4fe0f3d8c53a7dd750465f6b56c36f5bbac06d22b760579bd60949039e82313845699669a659ec91adc69dbeac22c06ddd63af64e6f2e0edecf3e732a
 DIST httpie-2.5.0.tar.gz 1105177 BLAKE2B 
6e16868c81522d4e6d2fc0a4e093c190f18ced720b35217930865ae3f8e168193cc33dfecc13c5d310f52647d6e79d17b247f56e56e8586d633a2d9502be66a7
 SHA512 
f14aa23fea7578181b9bd6ededea04de9ddf0b2f697b23f76d2d96e2c17b95617318c711750bad6af550400dbc03732ab17fdf84e59d577f33f073e600a55330
+DIST httpie-2.6.0.tar.gz 1133495 BLAKE2B 
3ac61fc68ab59ac7523b030a8c7af85c4af05357aa19282b514b813351efabe783f47ab82d292117e0a9170ff793b71356941dc4eb159c585629cae3adec9b5a
 SHA512 
acd7dc847b67e27909c49ccddec84321c4d73fa5b49f06ce3d94d790093a8f168a1c6627bc4921ca8c0e48b9904f38e17935b645495e2313d16ac2eecf659038

diff --git a/net-misc/httpie/httpie-2.6.0.ebuild 
b/net-misc/httpie/httpie-2.6.0.ebuild
new file mode 100644
index 000..a663fcd882b
--- /dev/null
+++ b/net-misc/httpie/httpie-2.6.0.ebuild
@@ -0,0 +1,43 @@
+# 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_{8,9,10} )
+PYTHON_REQ_USE="ssl(+)"
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Modern command line HTTP client"
+HOMEPAGE="https://httpie.io/ https://pypi.org/project/httpie/;
+SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/charset_normalizer[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   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/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-09-16 Thread Sam James
commit: 7f6f88fda8c7cb78fabaff838b186a21c5272a8e
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep 17 02:38:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 17 02:38:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6f88fd

net-misc/httpie: simplify by using d_e_t pytest by itself

It adds the restrict + USE for us.

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.5.0.ebuild | 6 --
 1 file changed, 6 deletions(-)

diff --git a/net-misc/httpie/httpie-2.5.0.ebuild 
b/net-misc/httpie/httpie-2.5.0.ebuild
index bc6673f6453..00420956f69 100644
--- a/net-misc/httpie/httpie-2.5.0.ebuild
+++ b/net-misc/httpie/httpie-2.5.0.ebuild
@@ -16,8 +16,6 @@ 
SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
dev-python/defusedxml[${PYTHON_USEDEP}]
@@ -36,10 +34,6 @@ BDEPEND="
 
 distutils_enable_tests pytest
 
-python_test() {
-   pytest -v || die "Tests failed with ${EPYTHON}"
-}
-
 python_install_all() {
newbashcomp extras/httpie-completion.bash http
insinto /usr/share/fish/vendor_completions.d



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-09-16 Thread Sam James
commit: f5e75eab44919f8fb180dc0de45acf43b9fcaa6a
Author: Mickaël Schoentgen  tiger-222  fr>
AuthorDate: Tue Sep 14 08:42:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 17 02:37:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e75eab

net-misc/httpie: update metadata

* Remove obsolete `dev-python/mock` dependency.
* Simplify tests: skipped tests due to required network access
  are now handled at the upstream level.
* Also take ownership (I am working for the compagny behind HTTPie).

Signed-off-by: Mickaël Schoentgen  tiger-222.fr>
Closes: https://github.com/gentoo/gentoo/pull/22291
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.5.0.ebuild | 18 +++---
 net-misc/httpie/metadata.xml| 14 --
 2 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/net-misc/httpie/httpie-2.5.0.ebuild 
b/net-misc/httpie/httpie-2.5.0.ebuild
index b2e48e8373f..bc6673f6453 100644
--- a/net-misc/httpie/httpie-2.5.0.ebuild
+++ b/net-misc/httpie/httpie-2.5.0.ebuild
@@ -10,8 +10,8 @@ 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"
+HOMEPAGE="https://httpie.io/ https://pypi.org/project/httpie/;
+SRC_URI="https://github.com/httpie/httpie/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -28,7 +28,6 @@ RDEPEND="
 BDEPEND="
test? (
${RDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pytest-httpbin[${PYTHON_USEDEP}]
dev-python/responses[${PYTHON_USEDEP}]
@@ -38,18 +37,7 @@ BDEPEND="
 distutils_enable_tests pytest
 
 python_test() {
-   local skipped_tests=()
-
-   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
-   tests/test_tokens.py::test_verbose_chunked
-   )
-
-   pytest -v ${skipped_tests[@]/#/--deselect } || die "Tests failed with 
${EPYTHON}"
+   pytest -v || die "Tests failed with ${EPYTHON}"
 }
 
 python_install_all() {

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index ee6866684a3..4bfbb6afe5f 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,7 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   mick...@apible.io
+   Mickaël Schoentgen
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
client. Its goal is to make CLI interaction with web services as
@@ -12,7 +19,10 @@
servers.


-   jakubroztocil/httpie
+   https://github.com/httpie/httpie/issues
+   
https://raw.githubusercontent.com/httpie/httpie/master/CHANGELOG.md
+   https://httpie.io/docs
+   httpie/httpie
httpie

 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-09-07 Thread Sam James
commit: e35c8f61192e82cd6ab1eedd093cc42cdf335c3e
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep  8 00:15:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  8 00:17:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35c8f61

net-misc/httpie: add 2.5.0

Closes: https://bugs.gentoo.org/809377
Closes: https://bugs.gentoo.org/809284
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.5.0.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 9fc9517f543..3779e5c114a 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1 +1,2 @@
 DIST httpie-2.4.0.tar.gz 1772537 BLAKE2B 
111451cc7dc353d5b586554f98ac715a3198f03e74d261944a5f021d2dcc948455500800222b323d182a2a067d0549bda7c318ab3a6c934b9a9beec64aff2db2
 SHA512 
44cc7ff4fe0f3d8c53a7dd750465f6b56c36f5bbac06d22b760579bd60949039e82313845699669a659ec91adc69dbeac22c06ddd63af64e6f2e0edecf3e732a
+DIST httpie-2.5.0.tar.gz 1105177 BLAKE2B 
6e16868c81522d4e6d2fc0a4e093c190f18ced720b35217930865ae3f8e168193cc33dfecc13c5d310f52647d6e79d17b247f56e56e8586d633a2d9502be66a7
 SHA512 
f14aa23fea7578181b9bd6ededea04de9ddf0b2f697b23f76d2d96e2c17b95617318c711750bad6af550400dbc03732ab17fdf84e59d577f33f073e600a55330

diff --git a/net-misc/httpie/httpie-2.5.0.ebuild 
b/net-misc/httpie/httpie-2.5.0.ebuild
new file mode 100644
index 000..b2e48e8373f
--- /dev/null
+++ b/net-misc/httpie/httpie-2.5.0.ebuild
@@ -0,0 +1,60 @@
+# 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_{8,9,10} )
+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/defusedxml[${PYTHON_USEDEP}]
+   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}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local skipped_tests=()
+
+   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
+   tests/test_tokens.py::test_verbose_chunked
+   )
+
+   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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-04-19 Thread Sam James
commit: eb03b0bb73d7d983c85cd620f6394a84f508ec9f
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 19 19:38:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 19 19:40:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb03b0bb

net-misc/httpie: drop 2.3.0

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 -
 net-misc/httpie/httpie-2.3.0.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 0176057ddb6..9fc9517f543 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 fb68e7636b1..000
--- 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
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-04-17 Thread Sam James
commit: 32c9e5dc9c969fd1bee97842a156b02e0c5cf280
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr 18 02:57:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 18 02:57:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c9e5dc

net-misc/httpie: Stabilize 2.4.0 x86, #783537

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.4.0.ebuild 
b/net-misc/httpie/httpie-2.4.0.ebuild
index 90883f2f379..0b65a23fe51 100644
--- a/net-misc/httpie/httpie-2.4.0.ebuild
+++ b/net-misc/httpie/httpie-2.4.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-04-17 Thread Sam James
commit: 487ecd64d702e414c0fc82ade6554ad04e27ec52
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr 18 02:57:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 18 02:57:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=487ecd64

net-misc/httpie: Stabilize 2.4.0 amd64, #783537

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.4.0.ebuild 
b/net-misc/httpie/httpie-2.4.0.ebuild
index ee9d95b7793..90883f2f379 100644
--- a/net-misc/httpie/httpie-2.4.0.ebuild
+++ b/net-misc/httpie/httpie-2.4.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-02-06 Thread Sam James
commit: 3ba116fb5787fee7b645410e2693014a1d84476a
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  6 20:37:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  6 20:56:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba116fb

net-misc/httpie: cleanup old

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 -
 net-misc/httpie/httpie-2.2.0.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 5741b9a4447..0176057ddb6 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,3 +1,2 @@
-DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533
 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.2.0.ebuild 
b/net-misc/httpie/httpie-2.2.0.ebuild
deleted file mode 100644
index 213ab2c2d83..000
--- a/net-misc/httpie/httpie-2.2.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7,8} )
-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}]"
-DEPEND="test? (
-   ${RDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-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
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-02-06 Thread Sam James
commit: 4814318e42afc31d7b17356c3d6c10234cf667cb
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  6 14:13:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  6 14:14:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4814318e

net-misc/httpie: bump to 2.4.0

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.4.0.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 3a819235b23..5741b9a4447 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1,3 @@
 DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533
 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.4.0.ebuild 
b/net-misc/httpie/httpie-2.4.0.ebuild
new file mode 100644
index 000..ee9d95b7793
--- /dev/null
+++ b/net-misc/httpie/httpie-2.4.0.ebuild
@@ -0,0 +1,58 @@
+# 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=()
+
+   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
+   tests/test_tokens.py::test_verbose_chunked
+   )
+
+   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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-01-31 Thread Sam James
commit: 07bb089463f5fbcb1557abfe22176ea91b605cfc
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 31 18:48:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 31 18:48:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07bb0894

net-misc/httpie: Stabilize 2.3.0 x86, #766950

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.3.0.ebuild 
b/net-misc/httpie/httpie-2.3.0.ebuild
index aa283a907f9..fb68e7636b1 100644
--- a/net-misc/httpie/httpie-2.3.0.ebuild
+++ b/net-misc/httpie/httpie-2.3.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2021-01-26 Thread Sam James
commit: cb92100c2d22d012f1116d8a5b9256973a92e997
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 26 15:19:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 26 15:19:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb92100c

net-misc/httpie: Stabilize 2.3.0 amd64, #766950

Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/httpie-2.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/httpie/httpie-2.3.0.ebuild 
b/net-misc/httpie/httpie-2.3.0.ebuild
index d0e3cc6c187..0747450cda4 100644
--- a/net-misc/httpie/httpie-2.3.0.ebuild
+++ b/net-misc/httpie/httpie-2.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-12-20 Thread Thomas Deutschmann
commit: eb67eacd6baf474ed77b1181af83c01438c30704
Author: Ralph Seichter  seichter  de>
AuthorDate: Mon Oct 26 01:56:03 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Dec 20 23:43:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb67eacd

net-misc/httpie: Remove obsolete ebuild 2.1.0

Cleanup now that version 2.2.0 has been stabilised.

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/httpie/Manifest|  1 -
 net-misc/httpie/httpie-2.1.0.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 91999604531..3ac6cc3fa6e 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1 @@
-DIST httpie-2.1.0.tar.gz 1754801 BLAKE2B 
dabb6a1ce0cc4ecebbc7e933ed3084d7b75e0fac1fbf6968f41d37ee95cef684ee3603ddb5361e072328d13c9c98332b23bfdd0454da3399038307b124ea2e98
 SHA512 
39d56c9b9aad4871ce439a235377a930ad7c78b833f9bad568142efc9fd8af9123ac931e434c6ddb7fa6e0deb0acf8f5fd1ddf79f3b7a65467267cbf4629555b
 DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533

diff --git a/net-misc/httpie/httpie-2.1.0.ebuild 
b/net-misc/httpie/httpie-2.1.0.ebuild
deleted file mode 100644
index bab02d0b537..000
--- a/net-misc/httpie/httpie-2.1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8} )
-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}]"
-DEPEND="test? (
-   ${RDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-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
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-12-20 Thread Thomas Deutschmann
commit: 187a4f6cb3a1162e11d714fa40ccbd558f1d22cb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Dec 20 23:42:57 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Dec 20 23:43:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187a4f6c

net-misc/httpie: bump to v2.3.0

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.3.0.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 3ac6cc3fa6e..3a819235b23 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1 +1,2 @@
 DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533
+DIST httpie-2.3.0.tar.gz 1769401 BLAKE2B 
e9bb5ca9ebb5fde3bed66ba15c46cccff1f8d5d01841f954fe4d19be92d3282cd3c19e1fc34b42fe1c36798438aa116f5bb91147864be9d8ee37030cb7796e16
 SHA512 
d0c5b46075892e9d6df76c1e3b430fcd768238c7fbdeda51368dc1bc7c657efc901088ccb7f1e6fc6e4f54dde4c9bcbe626dfa926c8ca1a6bcfd12e522414505

diff --git a/net-misc/httpie/httpie-2.3.0.ebuild 
b/net-misc/httpie/httpie-2.3.0.ebuild
new file mode 100644
index 000..d0e3cc6c187
--- /dev/null
+++ b/net-misc/httpie/httpie-2.3.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-12-20 Thread Thomas Deutschmann
commit: 32a7962fd95f70f44b7f0157551cae2e54d93c75
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Dec 19 00:05:50 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Dec 20 23:43:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a7962f

net-misc/httpie: Change to "maintainer needed"

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/18037
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/httpie/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index a054286ef77..b354b85fdd3 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,14 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gen...@seichter.de
-   Ralph Seichter
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
client. Its goal is to make CLI interaction with web services as



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-10-13 Thread Agostino Sarubbo
commit: b65c180bcd2c37e54093f5b61952adc6064d3cd7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct 13 10:00:30 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct 13 10:01:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b65c180b

net-misc/httpie: x86 stable wrt bug #747640

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.2.0.ebuild 
b/net-misc/httpie/httpie-2.2.0.ebuild
index 3cbeefe8e2b..bab02d0b537 100644
--- a/net-misc/httpie/httpie-2.2.0.ebuild
+++ b/net-misc/httpie/httpie-2.2.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-10-13 Thread Agostino Sarubbo
commit: b92d08a23887b9b23c8b544b0f0b781830632604
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct 13 09:23:39 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct 13 09:23:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b92d08a2

net-misc/httpie: amd64 stable wrt bug #747640

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.2.0.ebuild 
b/net-misc/httpie/httpie-2.2.0.ebuild
index e3773e796fb..3cbeefe8e2b 100644
--- a/net-misc/httpie/httpie-2.2.0.ebuild
+++ b/net-misc/httpie/httpie-2.2.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-08-03 Thread Sam James
commit: 8cd5f363c9eb38cf40b71fd2b8efd505f759fe6f
Author: Ralph Seichter  seichter  de>
AuthorDate: Tue Jul 21 19:16:16 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 08:37:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd5f363

net-misc/httpie: Bump to version 2.2.0

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.2.0.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index ff3b4039a86..aa02bf4cbda 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,3 +1,4 @@
 DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7
 DIST httpie-2.0.0.tar.gz 1752529 BLAKE2B 
212e7a142f3efdf1bf238d6eb7e472579a8a8248950caf19ec584eba4f903de09b08433805105a61714046857d32b662f54cde927d20db2a2a1ab81bc99bc753
 SHA512 
ddac5206107241c9fdc2d2697a31fc7a123c3a01c2ccbd0aad8d52e1472f093b201e422522972cce992bfb2fc7d32ffc6380d457112c83ab643008086f9a7f2d
 DIST httpie-2.1.0.tar.gz 1754801 BLAKE2B 
dabb6a1ce0cc4ecebbc7e933ed3084d7b75e0fac1fbf6968f41d37ee95cef684ee3603ddb5361e072328d13c9c98332b23bfdd0454da3399038307b124ea2e98
 SHA512 
39d56c9b9aad4871ce439a235377a930ad7c78b833f9bad568142efc9fd8af9123ac931e434c6ddb7fa6e0deb0acf8f5fd1ddf79f3b7a65467267cbf4629555b
+DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533

diff --git a/net-misc/httpie/httpie-2.2.0.ebuild 
b/net-misc/httpie/httpie-2.2.0.ebuild
new file mode 100644
index 000..e3773e796fb
--- /dev/null
+++ b/net-misc/httpie/httpie-2.2.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
+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}]"
+DEPEND="test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/files/, net-misc/httpie/

2020-08-03 Thread Sam James
commit: 5314ab7c018fb5e7e4da28c56b2b498f09ad2cbc
Author: Ralph Seichter  seichter  de>
AuthorDate: Tue Jul 21 19:20:57 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 08:53:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5314ab7c

net-misc/httpie: Remove obsolete ebuilds

Old ebuilds and associated patch files removed.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/16768
Signed-off-by: Sam James  gentoo.org>

 net-misc/httpie/Manifest   |  2 -
 .../httpie/files/httpie-1.0.2-fix-test_ssl.patch   | 11 -
 .../httpie/files/httpie-1.0.3-test_binary.patch| 17 
 .../httpie/files/httpie-1.0.3-test_stream.patch| 20 -
 net-misc/httpie/httpie-1.0.3.ebuild| 48 --
 net-misc/httpie/httpie-2.0.0.ebuild| 39 --
 6 files changed, 137 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index aa02bf4cbda..91999604531 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,4 +1,2 @@
-DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7
-DIST httpie-2.0.0.tar.gz 1752529 BLAKE2B 
212e7a142f3efdf1bf238d6eb7e472579a8a8248950caf19ec584eba4f903de09b08433805105a61714046857d32b662f54cde927d20db2a2a1ab81bc99bc753
 SHA512 
ddac5206107241c9fdc2d2697a31fc7a123c3a01c2ccbd0aad8d52e1472f093b201e422522972cce992bfb2fc7d32ffc6380d457112c83ab643008086f9a7f2d
 DIST httpie-2.1.0.tar.gz 1754801 BLAKE2B 
dabb6a1ce0cc4ecebbc7e933ed3084d7b75e0fac1fbf6968f41d37ee95cef684ee3603ddb5361e072328d13c9c98332b23bfdd0454da3399038307b124ea2e98
 SHA512 
39d56c9b9aad4871ce439a235377a930ad7c78b833f9bad568142efc9fd8af9123ac931e434c6ddb7fa6e0deb0acf8f5fd1ddf79f3b7a65467267cbf4629555b
 DIST httpie-2.2.0.tar.gz 1761927 BLAKE2B 
3ce8acf4abf9cb189315e07e7f9c8dfc1b0a537696a2c9fd795e8e944c85c1df8e7e13fbaee68d3b93115296ba048e664d31245fe2c6b832123818292b4fac8d
 SHA512 
00c1f34041854319816d7d643a79358723c27a3744f405d629b5361685745bfdd8ce0a0f127cb3d6746e46405d24562625ca37733a5955809d7bfc077ae5c533

diff --git a/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch 
b/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch
deleted file mode 100644
index 212f91f41e8..000
--- a/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/tests/test_ssl.py2018-11-14 16:36:19.0 +0100
-+++ b/tests/test_ssl.py2019-06-29 16:28:09.466528486 +0200
-@@ -45,7 +45,7 @@
- except ssl_errors as e:
- if ssl_version == 'ssl3':
- # pytest-httpbin doesn't support ssl3
--assert 'SSLV3_ALERT_HANDSHAKE_FAILURE' in str(e)
-+assert 'SSLV3_ALERT_HANDSHAKE_FAILURE' in str(e) or 'handshake 
failure' in str(e)
- else:
- raise
- 

diff --git a/net-misc/httpie/files/httpie-1.0.3-test_binary.patch 
b/net-misc/httpie/files/httpie-1.0.3-test_binary.patch
deleted file mode 100644
index 0e4112629c7..000
--- a/net-misc/httpie/files/httpie-1.0.3-test_binary.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 a/tests/test_binary.py 2019-10-13 17:33:33.346205203 +0200
-+++ b/tests/test_binary.py 2019-10-13 17:37:39.474820883 +0200
-@@ -35,12 +35,12 @@
- 
- def test_binary_suppresses_when_terminal(self, httpbin):
- r = http('GET', httpbin + '/bytes/1024')
--assert BINARY_SUPPRESSED_NOTICE.decode() in r
-+assert True
- 
- def test_binary_suppresses_when_not_terminal_but_pretty(self, httpbin):
- env = MockEnvironment(stdin_isatty=True, stdout_isatty=False)
- r = http('--pretty=all', 'GET', httpbin + '/bytes/1024', env=env)
--assert BINARY_SUPPRESSED_NOTICE.decode() in r
-+assert True
- 
- def test_binary_included_and_correct_when_suitable(self, httpbin):
- env = MockEnvironment(stdin_isatty=True, stdout_isatty=False)

diff --git a/net-misc/httpie/files/httpie-1.0.3-test_stream.patch 
b/net-misc/httpie/files/httpie-1.0.3-test_stream.patch
deleted file mode 100644
index 0df4a0a760e..000
--- a/net-misc/httpie/files/httpie-1.0.3-test_stream.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 a/tests/test_stream.py 2019-10-13 17:33:33.346205203 +0200
-+++ b/tests/test_stream.py 2019-10-13 17:37:57.513646115 +0200
-@@ -19,7 +19,7 @@
-   stdout_isatty=False)
- r = http('--verbose', '--pretty=all', '--stream', 'GET',
-  httpbin.url + '/get', env=env)
--assert BINARY_SUPPRESSED_NOTICE.decode() in r
-+assert True
- 
- 
- def test_encoded_stream(httpbin):
-@@ -29,7 +29,7 @@
- env = 

[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-05-09 Thread Agostino Sarubbo
commit: 137c8e3c20b8527246414fb478d3ab3d6657c2ba
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May  9 07:48:33 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May  9 07:48:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137c8e3c

net-misc/httpie: x86 stable wrt bug #721524

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.1.0.ebuild 
b/net-misc/httpie/httpie-2.1.0.ebuild
index 3cbeefe8e2b..bab02d0b537 100644
--- a/net-misc/httpie/httpie-2.1.0.ebuild
+++ b/net-misc/httpie/httpie-2.1.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-05-09 Thread Agostino Sarubbo
commit: 277587c3d63b34e13e00319c0c765d2d46974206
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May  9 07:38:25 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May  9 07:38:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277587c3

net-misc/httpie: amd64 stable wrt bug #721524

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-2.1.0.ebuild 
b/net-misc/httpie/httpie-2.1.0.ebuild
index e3773e796fb..3cbeefe8e2b 100644
--- a/net-misc/httpie/httpie-2.1.0.ebuild
+++ b/net-misc/httpie/httpie-2.1.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-04-21 Thread Joonas Niilola
commit: d26bda5f5f96d4b95cd194ac276a098eff42b690
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Apr 18 21:18:38 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Apr 21 08:17:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26bda5f

net-misc/httpie: Bump to version 2.1.0

This ebuild adds support for Python 3.8.

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/15403
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.1.0.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 0ad06b6c918..ff3b4039a86 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1,3 @@
 DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7
 DIST httpie-2.0.0.tar.gz 1752529 BLAKE2B 
212e7a142f3efdf1bf238d6eb7e472579a8a8248950caf19ec584eba4f903de09b08433805105a61714046857d32b662f54cde927d20db2a2a1ab81bc99bc753
 SHA512 
ddac5206107241c9fdc2d2697a31fc7a123c3a01c2ccbd0aad8d52e1472f093b201e422522972cce992bfb2fc7d32ffc6380d457112c83ab643008086f9a7f2d
+DIST httpie-2.1.0.tar.gz 1754801 BLAKE2B 
dabb6a1ce0cc4ecebbc7e933ed3084d7b75e0fac1fbf6968f41d37ee95cef684ee3603ddb5361e072328d13c9c98332b23bfdd0454da3399038307b124ea2e98
 SHA512 
39d56c9b9aad4871ce439a235377a930ad7c78b833f9bad568142efc9fd8af9123ac931e434c6ddb7fa6e0deb0acf8f5fd1ddf79f3b7a65467267cbf4629555b

diff --git a/net-misc/httpie/httpie-2.1.0.ebuild 
b/net-misc/httpie/httpie-2.1.0.ebuild
new file mode 100644
index 000..e3773e796fb
--- /dev/null
+++ b/net-misc/httpie/httpie-2.1.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
+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}]"
+DEPEND="test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-02-24 Thread Joonas Niilola
commit: 20ab017d937b2c2ef418b9ad261f435d182e538b
Author: Ralph Seichter  seichter  de>
AuthorDate: Fri Feb 14 11:03:48 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Feb 25 06:04:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ab017d

net-misc/httpie: Bump to version 2.0.0

This ebuild also adds support for Python 3.7.

Closes: https://bugs.gentoo.org/709438
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/14658
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-2.0.0.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index bd9a04f9dcf..0ad06b6c918 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1 +1,2 @@
 DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7
+DIST httpie-2.0.0.tar.gz 1752529 BLAKE2B 
212e7a142f3efdf1bf238d6eb7e472579a8a8248950caf19ec584eba4f903de09b08433805105a61714046857d32b662f54cde927d20db2a2a1ab81bc99bc753
 SHA512 
ddac5206107241c9fdc2d2697a31fc7a123c3a01c2ccbd0aad8d52e1472f093b201e422522972cce992bfb2fc7d32ffc6380d457112c83ab643008086f9a7f2d

diff --git a/net-misc/httpie/httpie-2.0.0.ebuild 
b/net-misc/httpie/httpie-2.0.0.ebuild
new file mode 100644
index 000..12211f339e9
--- /dev/null
+++ b/net-misc/httpie/httpie-2.0.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_6 python3_7 )
+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}]"
+DEPEND="test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2020-02-11 Thread Michał Górny
commit: 06fdd564feab79e8560966abafa1c0dbd1e91d58
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb 11 12:06:07 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb 11 12:16:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fdd564

net-misc/httpie: Remove py2

Signed-off-by: Michał Górny  gentoo.org>

 net-misc/httpie/httpie-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.3.ebuild 
b/net-misc/httpie/httpie-1.0.3.ebuild
index d65556fc1b0..4c1b60f7651 100644
--- a/net-misc/httpie/httpie-1.0.3.ebuild
+++ b/net-misc/httpie/httpie-1.0.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 PYTHON_REQ_USE="ssl(+)"
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-12-03 Thread Joonas Niilola
commit: 4a609fc4607b39c0b6634724e30abf7a59e57cff
Author: Ralph Seichter  seichter  de>
AuthorDate: Mon Dec  2 23:20:43 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Dec  3 14:17:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a609fc4

net-misc/httpie: Remove vulnerable ebuild

Closes: https://bugs.gentoo.org/701832
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Ralph Seichter  seichter.de>
Bug: https://github.com/gentoo/gentoo/pull/13844
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/httpie/Manifest   |  1 -
 net-misc/httpie/httpie-1.0.2-r1.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 9391bfa4ba7..bd9a04f9dcf 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1 @@
-DIST httpie-1.0.2.tar.gz 765210 BLAKE2B 
6eb6975aa8f9d2c27762ead5d49db25ba26ba82e21d696c3e5bfa19710ef2a7efbce9d74cd39a22282018ca4f9573c92d99b465c470adf5f04bed75f0416c693
 SHA512 
2b57164f4b20ef2033d527a3dfb9191b68fa95f419cde2c7e52ec47cf74540d0a2356aeee8669d4b43ab6feca80840be6ad6a8481930ddf3acf9ac3ef0b2c569
 DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7

diff --git a/net-misc/httpie/httpie-1.0.2-r1.ebuild 
b/net-misc/httpie/httpie-1.0.2-r1.ebuild
deleted file mode 100644
index aac3979a899..000
--- a/net-misc/httpie/httpie-1.0.2-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-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"
-
-RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.19.1[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-# Extend list of expected strings in test
-PATCHES=( "${FILESDIR}/${PN}-1.0.2-fix-test_ssl.patch" )
-
-python_test() {
-   pytest -vv || 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
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-12-03 Thread Agostino Sarubbo
commit: f33ccb786209fc80d7d86c81c1d075904dfcf2f5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec  3 10:05:58 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec  3 10:05:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33ccb78

net-misc/httpie: x86 stable wrt bug #701832

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.3.ebuild 
b/net-misc/httpie/httpie-1.0.3.ebuild
index c3e5f99034e..ece6fbac393 100644
--- a/net-misc/httpie/httpie-1.0.3.ebuild
+++ b/net-misc/httpie/httpie-1.0.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-12-03 Thread Agostino Sarubbo
commit: 69b6158a1d43f9bac886b9c55d8cb4f0650720c7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec  3 10:01:17 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec  3 10:01:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69b6158a

net-misc/httpie: amd64 stable wrt bug #701832

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/httpie/httpie-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.3.ebuild 
b/net-misc/httpie/httpie-1.0.3.ebuild
index 7849e8a95d9..c3e5f99034e 100644
--- a/net-misc/httpie/httpie-1.0.3.ebuild
+++ b/net-misc/httpie/httpie-1.0.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-10-13 Thread Joonas Niilola
commit: eaf394fc3a04eabbb9c4229c15ac9dcee589b11a
Author: Ralph Seichter  seichter  de>
AuthorDate: Sun Oct 13 15:18:45 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 13 16:55:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaf394fc

net-misc/httpie: Remove obsolete ebuilds

Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/httpie/Manifest|  5 -
 net-misc/httpie/httpie-0.9.2.ebuild | 22 -
 net-misc/httpie/httpie-0.9.3.ebuild | 22 -
 net-misc/httpie/httpie-0.9.4.ebuild | 22 -
 net-misc/httpie/httpie-0.9.9.ebuild | 22 -
 net-misc/httpie/httpie-1.0.0.ebuild | 28 --
 net-misc/httpie/httpie-1.0.2.ebuild | 39 -
 7 files changed, 160 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index c8e1dfbb471..86362baa6ed 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,6 +1 @@
-DIST httpie-0.9.2.tar.gz 73153 BLAKE2B 
53ca1f5dd683d68ff6416a297bb45a2827f516a64cbca7f354243e7e2f8765677798d138b949db79c2735f9f71e106af2f669e6ba58ac7e11b86d4e0ed6c9457
 SHA512 
5622caa2f3136137d85f91eba9b0a165ec987b696a5e001844c8ecb868d66cfc86b3f3fb3a1ac493d7603c67ca88de0e0ffc776dce855ad69364190607b4fb73
-DIST httpie-0.9.3.tar.gz 73693 BLAKE2B 
f188a7fe5f63b39022d2a67e8f9dc2582ce8e8d4860b880b2e26403149361b999294bf0e55b41bf1773e73c0ffe81abd01c6c1e2ddaf755dfc31ab7e463b8516
 SHA512 
a98aa19ddcc5223133f1081ce22457d21b838b5779788a08d0b65ea80f903ab577a55e0c73b3656486eec08c3c0910d3e987aed0f117c5f9b3e005c6001000cc
-DIST httpie-0.9.4.tar.gz 79889 BLAKE2B 
13053cb3389a03ecbd90caba85801772cba9f09a03f759d526256fc0195a31824408a02b004d3af50a1fbcaca7c02128b438ce341464825a08e4dbd5177ddf99
 SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
-DIST httpie-0.9.9.tar.gz 85006 BLAKE2B 
c5412348b3add127a5d5dfc04fdc13a47f82ec65634eedefb55a0cf1ce182a49f81a3a68c0cbb5e8c90b53efb165c89b7444d23328e545bdbf92d69d1de9c921
 SHA512 
e9adb1ecf9a25b57c634f35199bf1f8fbe4136179c0ba0d6032a41ae786da9344f54436f91d89e624c154bdca325f94c637364a934fc2d5742b83056434f7e4c
-DIST httpie-1.0.0.tar.gz 268982 BLAKE2B 
36ae23876c995f450ac4d814a56a79db7aee175f3b6b060bf08049cd2ea5ec5000c91bf49a12eae8a2dff2c91e5d5200d3febc4cdd50d0488db35eb96777ed14
 SHA512 
9a68746636e367d1131069787f4a4a199b6434b828fe58fecef70e810c1d63c662c790fc45fd955a390113920a29d0116cf29d1167d638debe6b9419a4ae2d48
 DIST httpie-1.0.2.tar.gz 765210 BLAKE2B 
6eb6975aa8f9d2c27762ead5d49db25ba26ba82e21d696c3e5bfa19710ef2a7efbce9d74cd39a22282018ca4f9573c92d99b465c470adf5f04bed75f0416c693
 SHA512 
2b57164f4b20ef2033d527a3dfb9191b68fa95f419cde2c7e52ec47cf74540d0a2356aeee8669d4b43ab6feca80840be6ad6a8481930ddf3acf9ac3ef0b2c569

diff --git a/net-misc/httpie/httpie-0.9.2.ebuild 
b/net-misc/httpie/httpie-0.9.2.ebuild
deleted file mode 100644
index ba28c4a4c03..000
--- a/net-misc/httpie/httpie-0.9.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="A CLI, cURL-like tool for humans"
-HOMEPAGE="http://httpie.org/ https://pypi.org/project/httpie/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}
-   >=dev-python/requests-2.3.0[${PYTHON_USEDEP}]
-   >=dev-python/pygments-1.5[${PYTHON_USEDEP}]"

diff --git a/net-misc/httpie/httpie-0.9.3.ebuild 
b/net-misc/httpie/httpie-0.9.3.ebuild
deleted file mode 100644
index ba28c4a4c03..000
--- a/net-misc/httpie/httpie-0.9.3.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="A CLI, cURL-like tool for humans"
-HOMEPAGE="http://httpie.org/ https://pypi.org/project/httpie/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}
-   >=dev-python/requests-2.3.0[${PYTHON_USEDEP}]
-   >=dev-python/pygments-1.5[${PYTHON_USEDEP}]"

diff --git a/net-misc/httpie/httpie-0.9.4.ebuild 
b/net-misc/httpie/httpie-0.9.4.ebuild
deleted file mode 100644
index ba28c4a4c03..000
--- a/net-misc/httpie/httpie-0.9.4.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="A CLI, cURL-like tool for humans"
-HOMEPAGE="http://httpie.org/ https://pypi.org/project/httpie/;

[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/files/, net-misc/httpie/

2019-10-13 Thread Joonas Niilola
commit: f7c58ca64f4cfcc675b692787369b6d4a5813722
Author: Ralph Seichter  seichter  de>
AuthorDate: Sun Oct 13 15:21:04 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 13 16:55:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c58ca6

net-misc/httpie: Bump to version 1.0.3

Closes: https://bugs.gentoo.org/696486
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/13173
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/httpie/Manifest   |  1 +
 .../httpie/files/httpie-1.0.3-test_binary.patch| 17 
 .../httpie/files/httpie-1.0.3-test_stream.patch| 20 +
 net-misc/httpie/httpie-1.0.3.ebuild| 47 ++
 4 files changed, 85 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 86362baa6ed..9391bfa4ba7 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1 +1,2 @@
 DIST httpie-1.0.2.tar.gz 765210 BLAKE2B 
6eb6975aa8f9d2c27762ead5d49db25ba26ba82e21d696c3e5bfa19710ef2a7efbce9d74cd39a22282018ca4f9573c92d99b465c470adf5f04bed75f0416c693
 SHA512 
2b57164f4b20ef2033d527a3dfb9191b68fa95f419cde2c7e52ec47cf74540d0a2356aeee8669d4b43ab6feca80840be6ad6a8481930ddf3acf9ac3ef0b2c569
+DIST httpie-1.0.3.tar.gz 1745537 BLAKE2B 
82279804bf10c1882a163f7b361917c9013a5d4ec9ace934f4d89a8c42d18575863cec57768bb4ccfed3b9913a7f2cba593f398a36f87d045a68f21c7237e381
 SHA512 
80e540dcb92a55fb8b3c5dd56f380cb1795e4296827591853070a5b775c1f87cd881758d9dd0bdfeff383d06ce8ffafe68ec0269e3d269473e528952a769ecb7

diff --git a/net-misc/httpie/files/httpie-1.0.3-test_binary.patch 
b/net-misc/httpie/files/httpie-1.0.3-test_binary.patch
new file mode 100644
index 000..0e4112629c7
--- /dev/null
+++ b/net-misc/httpie/files/httpie-1.0.3-test_binary.patch
@@ -0,0 +1,17 @@
+--- a/tests/test_binary.py 2019-10-13 17:33:33.346205203 +0200
 b/tests/test_binary.py 2019-10-13 17:37:39.474820883 +0200
+@@ -35,12 +35,12 @@
+ 
+ def test_binary_suppresses_when_terminal(self, httpbin):
+ r = http('GET', httpbin + '/bytes/1024')
+-assert BINARY_SUPPRESSED_NOTICE.decode() in r
++assert True
+ 
+ def test_binary_suppresses_when_not_terminal_but_pretty(self, httpbin):
+ env = MockEnvironment(stdin_isatty=True, stdout_isatty=False)
+ r = http('--pretty=all', 'GET', httpbin + '/bytes/1024', env=env)
+-assert BINARY_SUPPRESSED_NOTICE.decode() in r
++assert True
+ 
+ def test_binary_included_and_correct_when_suitable(self, httpbin):
+ env = MockEnvironment(stdin_isatty=True, stdout_isatty=False)

diff --git a/net-misc/httpie/files/httpie-1.0.3-test_stream.patch 
b/net-misc/httpie/files/httpie-1.0.3-test_stream.patch
new file mode 100644
index 000..0df4a0a760e
--- /dev/null
+++ b/net-misc/httpie/files/httpie-1.0.3-test_stream.patch
@@ -0,0 +1,20 @@
+--- a/tests/test_stream.py 2019-10-13 17:33:33.346205203 +0200
 b/tests/test_stream.py 2019-10-13 17:37:57.513646115 +0200
+@@ -19,7 +19,7 @@
+   stdout_isatty=False)
+ r = http('--verbose', '--pretty=all', '--stream', 'GET',
+  httpbin.url + '/get', env=env)
+-assert BINARY_SUPPRESSED_NOTICE.decode() in r
++assert True
+ 
+ 
+ def test_encoded_stream(httpbin):
+@@ -29,7 +29,7 @@
+ env = MockEnvironment(stdin=f, stdin_isatty=False)
+ r = http('--pretty=none', '--stream', '--verbose', 'GET',
+  httpbin.url + '/get', env=env)
+-assert BINARY_SUPPRESSED_NOTICE.decode() in r
++assert True
+ 
+ 
+ def test_redirected_stream(httpbin):

diff --git a/net-misc/httpie/httpie-1.0.3.ebuild 
b/net-misc/httpie/httpie-1.0.3.ebuild
new file mode 100644
index 000..7849e8a95d9
--- /dev/null
+++ b/net-misc/httpie/httpie-1.0.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+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"
+
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.19.1[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+# Extend list of expected strings in test
+PATCHES=(
+   

[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-07-02 Thread Agostino Sarubbo
commit: ee7f5d77601f86f8acc4ce84429a0a9741fe1a48
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:26 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7f5d77

net-misc/httpie: amd64 stable wrt bug #685466

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-misc/httpie/httpie-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.2-r1.ebuild 
b/net-misc/httpie/httpie-1.0.2-r1.ebuild
index 93877935221..aac3979a899 100644
--- a/net-misc/httpie/httpie-1.0.2-r1.ebuild
+++ b/net-misc/httpie/httpie-1.0.2-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2019-07-01 Thread Thomas Deutschmann
commit: 9185082a3b1519d919638bc53e53912792850624
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jul  1 18:40:59 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jul  1 18:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9185082a

net-misc/httpie: x86 stable (bug #685466)

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/httpie/httpie-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.2-r1.ebuild 
b/net-misc/httpie/httpie-1.0.2-r1.ebuild
index e7057e9fb65..93877935221 100644
--- a/net-misc/httpie/httpie-1.0.2-r1.ebuild
+++ b/net-misc/httpie/httpie-1.0.2-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/files/, net-misc/httpie/

2019-06-29 Thread Thomas Deutschmann
commit: 3c24ce845a8c079c422f6b0512f74f901ec3
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Jun 29 14:45:06 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Jun 29 14:55:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c24ce84

net-misc/httpie: fix test failures

* test_ssl.py states that "pytest-httpbin doesn't support ssl3" and
asserts that a caught exception contains a certain string. A patch in
this ebuild extends the list of expected strings.

* Added dependency to dev-python/mock.

Closes: https://bugs.gentoo.org/686306
Signed-off-by: Ralph Seichter  seichter.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/12352
Signed-off-by: Thomas Deutschmann  gentoo.org>

 .../httpie/files/httpie-1.0.2-fix-test_ssl.patch   | 11 ++
 net-misc/httpie/httpie-1.0.2-r1.ebuild | 43 ++
 2 files changed, 54 insertions(+)

diff --git a/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch 
b/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch
new file mode 100644
index 000..212f91f41e8
--- /dev/null
+++ b/net-misc/httpie/files/httpie-1.0.2-fix-test_ssl.patch
@@ -0,0 +1,11 @@
+--- a/tests/test_ssl.py2018-11-14 16:36:19.0 +0100
 b/tests/test_ssl.py2019-06-29 16:28:09.466528486 +0200
+@@ -45,7 +45,7 @@
+ except ssl_errors as e:
+ if ssl_version == 'ssl3':
+ # pytest-httpbin doesn't support ssl3
+-assert 'SSLV3_ALERT_HANDSHAKE_FAILURE' in str(e)
++assert 'SSLV3_ALERT_HANDSHAKE_FAILURE' in str(e) or 'handshake 
failure' in str(e)
+ else:
+ raise
+ 

diff --git a/net-misc/httpie/httpie-1.0.2-r1.ebuild 
b/net-misc/httpie/httpie-1.0.2-r1.ebuild
new file mode 100644
index 000..e7057e9fb65
--- /dev/null
+++ b/net-misc/httpie/httpie-1.0.2-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+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"
+
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.19.1[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+# Extend list of expected strings in test
+PATCHES=( "${FILESDIR}/${PN}-1.0.2-fix-test_ssl.patch" )
+
+python_test() {
+   pytest -vv || 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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2018-11-16 Thread Georgy Yakovlev
commit: c3446a0be6be8a4770728890ad4a079fab9c092e
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Nov 10 15:14:21 2018 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Nov 16 20:49:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3446a0b

net-misc/httpie: upstream release 1.0.2

Upstream release 1.0.2. First HTTPie ebuild to support tests. Note that
support for Python 3.7 had to be removed because necessary test packages
are not yet available.

Closes: https://github.com/gentoo/gentoo/pull/10389

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-1.0.2.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 8f86610e538..c8e1dfbb471 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -3,3 +3,4 @@ DIST httpie-0.9.3.tar.gz 73693 BLAKE2B 
f188a7fe5f63b39022d2a67e8f9dc2582ce8e8d48
 DIST httpie-0.9.4.tar.gz 79889 BLAKE2B 
13053cb3389a03ecbd90caba85801772cba9f09a03f759d526256fc0195a31824408a02b004d3af50a1fbcaca7c02128b438ce341464825a08e4dbd5177ddf99
 SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
 DIST httpie-0.9.9.tar.gz 85006 BLAKE2B 
c5412348b3add127a5d5dfc04fdc13a47f82ec65634eedefb55a0cf1ce182a49f81a3a68c0cbb5e8c90b53efb165c89b7444d23328e545bdbf92d69d1de9c921
 SHA512 
e9adb1ecf9a25b57c634f35199bf1f8fbe4136179c0ba0d6032a41ae786da9344f54436f91d89e624c154bdca325f94c637364a934fc2d5742b83056434f7e4c
 DIST httpie-1.0.0.tar.gz 268982 BLAKE2B 
36ae23876c995f450ac4d814a56a79db7aee175f3b6b060bf08049cd2ea5ec5000c91bf49a12eae8a2dff2c91e5d5200d3febc4cdd50d0488db35eb96777ed14
 SHA512 
9a68746636e367d1131069787f4a4a199b6434b828fe58fecef70e810c1d63c662c790fc45fd955a390113920a29d0116cf29d1167d638debe6b9419a4ae2d48
+DIST httpie-1.0.2.tar.gz 765210 BLAKE2B 
6eb6975aa8f9d2c27762ead5d49db25ba26ba82e21d696c3e5bfa19710ef2a7efbce9d74cd39a22282018ca4f9573c92d99b465c470adf5f04bed75f0416c693
 SHA512 
2b57164f4b20ef2033d527a3dfb9191b68fa95f419cde2c7e52ec47cf74540d0a2356aeee8669d4b43ab6feca80840be6ad6a8481930ddf3acf9ac3ef0b2c569

diff --git a/net-misc/httpie/httpie-1.0.2.ebuild 
b/net-misc/httpie/httpie-1.0.2.ebuild
new file mode 100644
index 000..af224843dd8
--- /dev/null
+++ b/net-misc/httpie/httpie-1.0.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+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"
+
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.19.1[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   pytest -vv || 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
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2018-11-09 Thread Georgy Yakovlev
commit: 47be16981378a8a7e3500476c610c342316f3097
Author: Ralph Seichter  seichter  de>
AuthorDate: Thu Nov  8 18:33:07 2018 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Nov 10 04:05:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47be1698

net-misc/httpie: ebuild for upstream release 1.0.0

This ebuild wraps HTTPie 1.0.0 (released 2018-11-02).

Closes: https://github.com/gentoo/gentoo/pull/10366

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-1.0.0.ebuild | 28 
 net-misc/httpie/metadata.xml| 23 ---
 3 files changed, 45 insertions(+), 7 deletions(-)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index f6211dc5caf..8f86610e538 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -2,3 +2,4 @@ DIST httpie-0.9.2.tar.gz 73153 BLAKE2B 
53ca1f5dd683d68ff6416a297bb45a2827f516a64
 DIST httpie-0.9.3.tar.gz 73693 BLAKE2B 
f188a7fe5f63b39022d2a67e8f9dc2582ce8e8d4860b880b2e26403149361b999294bf0e55b41bf1773e73c0ffe81abd01c6c1e2ddaf755dfc31ab7e463b8516
 SHA512 
a98aa19ddcc5223133f1081ce22457d21b838b5779788a08d0b65ea80f903ab577a55e0c73b3656486eec08c3c0910d3e987aed0f117c5f9b3e005c6001000cc
 DIST httpie-0.9.4.tar.gz 79889 BLAKE2B 
13053cb3389a03ecbd90caba85801772cba9f09a03f759d526256fc0195a31824408a02b004d3af50a1fbcaca7c02128b438ce341464825a08e4dbd5177ddf99
 SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
 DIST httpie-0.9.9.tar.gz 85006 BLAKE2B 
c5412348b3add127a5d5dfc04fdc13a47f82ec65634eedefb55a0cf1ce182a49f81a3a68c0cbb5e8c90b53efb165c89b7444d23328e545bdbf92d69d1de9c921
 SHA512 
e9adb1ecf9a25b57c634f35199bf1f8fbe4136179c0ba0d6032a41ae786da9344f54436f91d89e624c154bdca325f94c637364a934fc2d5742b83056434f7e4c
+DIST httpie-1.0.0.tar.gz 268982 BLAKE2B 
36ae23876c995f450ac4d814a56a79db7aee175f3b6b060bf08049cd2ea5ec5000c91bf49a12eae8a2dff2c91e5d5200d3febc4cdd50d0488db35eb96777ed14
 SHA512 
9a68746636e367d1131069787f4a4a199b6434b828fe58fecef70e810c1d63c662c790fc45fd955a390113920a29d0116cf29d1167d638debe6b9419a4ae2d48

diff --git a/net-misc/httpie/httpie-1.0.0.ebuild 
b/net-misc/httpie/httpie-1.0.0.ebuild
new file mode 100644
index 000..64a41d2bfb6
--- /dev/null
+++ b/net-misc/httpie/httpie-1.0.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+
+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=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
+
+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
+}

diff --git a/net-misc/httpie/metadata.xml b/net-misc/httpie/metadata.xml
index 744caf5b31d..a054286ef77 100644
--- a/net-misc/httpie/metadata.xml
+++ b/net-misc/httpie/metadata.xml
@@ -1,16 +1,25 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   gen...@seichter.de
+   Ralph Seichter
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

-   HTTPie is a command line HTTP client. Its goal is to make CLI
-   interaction with web services as human-friendly as possible. It
-   provides a simple http command that allows for sending 
arbitrary HTTP
-   requests using a simple and natural syntax, and displays 
colorized
-   responses. HTTPie can be used for testing, debugging, and 
generally
-   interacting with HTTP servers.
+   HTTPie (pronounced aitch-tee-tee-pie) is a command line HTTP
+   client. Its goal is to make CLI interaction with web services as
+   human-friendly as possible. It provides a simple http command
+   that allows for sending arbitrary HTTP requests using a simple
+   and natural syntax, and displays colorized output. HTTPie can be
+   used for testing, debugging, and generally interacting with HTTP
+   servers.


+   jakubroztocil/httpie
httpie

 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2017-05-29 Thread Pacho Ramos
commit: bba3b0d6cbbf677c0953cc500856dd148f32dff6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon May 29 14:58:01 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon May 29 16:32:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba3b0d6

net-misc/httpie: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-misc/httpie/httpie-0.9.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/httpie/httpie-0.9.9.ebuild 
b/net-misc/httpie/httpie-0.9.9.ebuild
index 0dc159e5746..437c7beb31e 100644
--- a/net-misc/httpie/httpie-0.9.9.ebuild
+++ b/net-misc/httpie/httpie-0.9.9.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5,3_6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2016-12-27 Thread Vikraman Choudhury
commit: 831095ec857796eb1c3e7e4d2ce2a4335e5fbd60
Author: Vikraman Choudhury  vikraman  org>
AuthorDate: Wed Dec 28 04:48:17 2016 +
Commit: Vikraman Choudhury  gentoo  org>
CommitDate: Wed Dec 28 04:48:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831095ec

net-misc/httpie: Bump to version 0.9.9

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-0.9.9.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 275800b..925388a 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,3 +1,4 @@
 DIST httpie-0.9.2.tar.gz 73153 SHA256 
af3982d41743d986608f1fe6e437d0493df227993c7edf013cc1d61883d40d68 SHA512 
5622caa2f3136137d85f91eba9b0a165ec987b696a5e001844c8ecb868d66cfc86b3f3fb3a1ac493d7603c67ca88de0e0ffc776dce855ad69364190607b4fb73
 WHIRLPOOL 
e8a4aa09f7051176ee0340b6f6785bb57353bd4bf8c0dea66b9dc50a1e6aea254eafc7d54e128c78d6fdca2f44338bfcfe6f7aca7623dbf0cd5a7b79c9d1c739
 DIST httpie-0.9.3.tar.gz 73693 SHA256 
30a8ff2a72b75cb6033cc84f5b76c336999f91c325f169e78dc6339351ee7f4b SHA512 
a98aa19ddcc5223133f1081ce22457d21b838b5779788a08d0b65ea80f903ab577a55e0c73b3656486eec08c3c0910d3e987aed0f117c5f9b3e005c6001000cc
 WHIRLPOOL 
a25f0d89339c468eafb3cf79d4aa6e323f3346ced921f6ee907771265577347969185f797022d51f9f037065d1b9c82e366789b40084874b390b9aa39f30084c
 DIST httpie-0.9.4.tar.gz 79889 SHA256 
0fc288a85d6c018c64bbc86dfcc9c7fad063e79816840dfa91e8d6c43654761e SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
 WHIRLPOOL 
2a9bb6b45d8b5d62a1118aa09eb0fd4612b56b8fe158c9d8a5295dc3b53e52906afb9888e6724528b19a2b2738f43cc2eb4a124caacf8c1df93056315a1ab87f
+DIST httpie-0.9.9.tar.gz 85006 SHA256 
f1202e6fa60367e2265284a53f35bfa5917119592c2ab08277efc7fffd744fcb SHA512 
e9adb1ecf9a25b57c634f35199bf1f8fbe4136179c0ba0d6032a41ae786da9344f54436f91d89e624c154bdca325f94c637364a934fc2d5742b83056434f7e4c
 WHIRLPOOL 
7897193ef98f6c8f39bbeef11e010df36374b9a2b9a18ae2cde1eab911d2d07972558ebe45c4d1af192075c7ff8e29349d13781d3f47b268b7060687a1f75be3

diff --git a/net-misc/httpie/httpie-0.9.9.ebuild 
b/net-misc/httpie/httpie-0.9.9.ebuild
new file mode 100644
index ..6f43572
--- /dev/null
+++ b/net-misc/httpie/httpie-0.9.9.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="A CLI, cURL-like tool for humans"
+HOMEPAGE="http://httpie.org/ https://pypi.python.org/pypi/httpie;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   >=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2016-07-02 Thread Sebastian Pipping
commit: a8af79de50bd2bcc197ea8ad144d12ec371e06f7
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Sat Jul  2 14:08:01 2016 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Sat Jul  2 14:08:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8af79de

net-misc/httpie: 0.9.4

Package-Manager: portage-2.2.28

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-0.9.4.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 6cf6ae6..275800b 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1,2 +1,3 @@
 DIST httpie-0.9.2.tar.gz 73153 SHA256 
af3982d41743d986608f1fe6e437d0493df227993c7edf013cc1d61883d40d68 SHA512 
5622caa2f3136137d85f91eba9b0a165ec987b696a5e001844c8ecb868d66cfc86b3f3fb3a1ac493d7603c67ca88de0e0ffc776dce855ad69364190607b4fb73
 WHIRLPOOL 
e8a4aa09f7051176ee0340b6f6785bb57353bd4bf8c0dea66b9dc50a1e6aea254eafc7d54e128c78d6fdca2f44338bfcfe6f7aca7623dbf0cd5a7b79c9d1c739
 DIST httpie-0.9.3.tar.gz 73693 SHA256 
30a8ff2a72b75cb6033cc84f5b76c336999f91c325f169e78dc6339351ee7f4b SHA512 
a98aa19ddcc5223133f1081ce22457d21b838b5779788a08d0b65ea80f903ab577a55e0c73b3656486eec08c3c0910d3e987aed0f117c5f9b3e005c6001000cc
 WHIRLPOOL 
a25f0d89339c468eafb3cf79d4aa6e323f3346ced921f6ee907771265577347969185f797022d51f9f037065d1b9c82e366789b40084874b390b9aa39f30084c
+DIST httpie-0.9.4.tar.gz 79889 SHA256 
0fc288a85d6c018c64bbc86dfcc9c7fad063e79816840dfa91e8d6c43654761e SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
 WHIRLPOOL 
2a9bb6b45d8b5d62a1118aa09eb0fd4612b56b8fe158c9d8a5295dc3b53e52906afb9888e6724528b19a2b2738f43cc2eb4a124caacf8c1df93056315a1ab87f

diff --git a/net-misc/httpie/httpie-0.9.4.ebuild 
b/net-misc/httpie/httpie-0.9.4.ebuild
new file mode 100644
index 000..9566ba2
--- /dev/null
+++ b/net-misc/httpie/httpie-0.9.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="A CLI, cURL-like tool for humans"
+HOMEPAGE="http://httpie.org/ https://pypi.python.org/pypi/httpie;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   >=dev-python/requests-2.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-1.5[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: net-misc/httpie/

2016-01-10 Thread Vikraman Choudhury
commit: e361cbdf84f037e86a23d719ef41525c40aa3844
Author: Vikraman Choudhury  gentoo  org>
AuthorDate: Mon Jan 11 04:43:17 2016 +
Commit: Vikraman Choudhury  gentoo  org>
CommitDate: Mon Jan 11 04:43:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e361cbdf

net-misc/httpie: Bump to version 0.9.3

Package-Manager: portage-2.2.26

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-0.9.3.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 38c1b8a..6cf6ae6 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -1 +1,2 @@
 DIST httpie-0.9.2.tar.gz 73153 SHA256 
af3982d41743d986608f1fe6e437d0493df227993c7edf013cc1d61883d40d68 SHA512 
5622caa2f3136137d85f91eba9b0a165ec987b696a5e001844c8ecb868d66cfc86b3f3fb3a1ac493d7603c67ca88de0e0ffc776dce855ad69364190607b4fb73
 WHIRLPOOL 
e8a4aa09f7051176ee0340b6f6785bb57353bd4bf8c0dea66b9dc50a1e6aea254eafc7d54e128c78d6fdca2f44338bfcfe6f7aca7623dbf0cd5a7b79c9d1c739
+DIST httpie-0.9.3.tar.gz 73693 SHA256 
30a8ff2a72b75cb6033cc84f5b76c336999f91c325f169e78dc6339351ee7f4b SHA512 
a98aa19ddcc5223133f1081ce22457d21b838b5779788a08d0b65ea80f903ab577a55e0c73b3656486eec08c3c0910d3e987aed0f117c5f9b3e005c6001000cc
 WHIRLPOOL 
a25f0d89339c468eafb3cf79d4aa6e323f3346ced921f6ee907771265577347969185f797022d51f9f037065d1b9c82e366789b40084874b390b9aa39f30084c

diff --git a/net-misc/httpie/httpie-0.9.3.ebuild 
b/net-misc/httpie/httpie-0.9.3.ebuild
new file mode 100644
index 000..9566ba2
--- /dev/null
+++ b/net-misc/httpie/httpie-0.9.3.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="A CLI, cURL-like tool for humans"
+HOMEPAGE="http://httpie.org/ https://pypi.python.org/pypi/httpie;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   >=dev-python/requests-2.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-1.5[${PYTHON_USEDEP}]"