From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests/
Date: Thu, 29 Jun 2017 22:04:52 +0000 (UTC) [thread overview]
Message-ID: <1498773799.963dd73fa94b48a9b86b61c6149d4198cc8efb71.bicatali@gentoo> (raw)
commit: 963dd73fa94b48a9b86b61c6149d4198cc8efb71
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 17:47:49 2017 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 22:03:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=963dd73f
dev-python/requests: version bump. introduced use flags for ssl and socks.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-python/requests/Manifest | 1 +
dev-python/requests/metadata.xml | 6 ++++
dev-python/requests/requests-2.18.1.ebuild | 46 ++++++++++++++++++++++++++++++
3 files changed, 53 insertions(+)
diff --git a/dev-python/requests/Manifest b/dev-python/requests/Manifest
index 507ef33c624..c62eaec4b65 100644
--- a/dev-python/requests/Manifest
+++ b/dev-python/requests/Manifest
@@ -2,4 +2,5 @@ DIST requests-2.11.1.tar.gz 485936 SHA256 5acf980358283faba0b897c73959cecf8b8412
DIST requests-2.12.5.tar.gz 548336 SHA256 d902a54f08d086a7cc6e58c20e2bb225b1ae82c19c35e5925269ee94fb9fce00 SHA512 3ad60b953c6db98d26c043c7e77c3be8b28389ee1dbf32e75663cf48a8ddc2e487df27c54c64736ff42b79e35a6dbd2788065469a61a520a9818183970274cd9 WHIRLPOOL bc347e966743a940c09ed9bc98fed7422648a9b0354d36aaf94820fb306169842fafe5d34a48effb46547bb44fb46b2499cb1ba7dfd3ec029426cf97418d9c68
DIST requests-2.13.0.tar.gz 557508 SHA256 5722cd09762faa01276230270ff16af7acf7c5c45d623868d9ba116f15791ce8 SHA512 d3e9c25d1ce7ecf51bd4b137645d06c07170542a78fc847b1c30cad6efa9bcbf36d4b0c809389cbf260dc7d73128ab6bbed1e197cba9497b6ad791b48014ae14 WHIRLPOOL febfabea45aa45093eb04758f40a35b6479e16f833fd83abc798d2b5786bed025bb00c45e8dea9161aff735bde693573e6f5db7e5ee09ad3d2b140673e2cbcf8
DIST requests-2.14.2.tar.gz 521027 SHA256 a274abba399a23e8713ffd2b5706535ae280ebe2b8069ee6a941cb089440d153 SHA512 f6531ada6d854a261cad874044daa9e7f79d55c8f8fcfec1b25862563127318fbf717ed640644ddf0dbe4d7fe1298d478fcd76825a3604e06cefae5990fa9dd4 WHIRLPOOL e242d8182312b437a27bdc1d4a099d7db0c6135b3de29c0285ba60f6a72e1102941603cc551d8f3a4597f479c7d9409eef073c25b2411df93d0903d9f87b316f
+DIST requests-2.18.1.tar.gz 124229 SHA256 c6f3bdf4a4323ac7b45d01e04a6f6c20e32a052cd04de81e05103abc049ad9b9 SHA512 d7482ddce36ce633bee830bc8d9f9a207e1c20595378f7c60dcef01cab016a16704965f3b52e3faac63dd50fbe7c61d575742e71f51a2b8d41c1922df2dbaa06 WHIRLPOOL c1cf2544fdb4a7eb6536ff97847a15d786a9f1dcb7509e089a9d73e9372e5c6735b35a1c0d6e33580d933f573b3b3c3a1b48af2755563f04893daf66a114c8df
DIST requests-2.8.1.tar.gz 480803 SHA256 84fe8d5bf4dcdcc49002446c47a146d17ac10facf00d9086659064ac43b6c25b SHA512 bccec89165596df3af3f46eb43b5b28b595752485b00ed73978ef76fa6b8a8961c3db046c3f91ff34fa390f037322f6e13b141ba9b600a836a6d798086bd13fb WHIRLPOOL 445e0e12f5900c3396ae7a76d0010b9c4a4ff2c79c51dfc88f117918e436a4d67ea25de39f252cacaabd737b7b1542374172a2b6f482d7ffe1f7514d1cb4a06b
diff --git a/dev-python/requests/metadata.xml b/dev-python/requests/metadata.xml
index a04fa3017f1..7f45ae4e314 100644
--- a/dev-python/requests/metadata.xml
+++ b/dev-python/requests/metadata.xml
@@ -5,6 +5,12 @@
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
+ <longdescription lang="en">
+ Most existing Python modules for sending HTTP requests are extremely verbose and
+ cumbersome. Python’s built-in urllib2 module provides most of the HTTP
+ capabilities you should need, but the API is thoroughly broken. This library is
+ designed to make HTTP requests easy for developers.
+ </longdescription>
<upstream>
<remote-id type="pypi">requests</remote-id>
</upstream>
diff --git a/dev-python/requests/requests-2.18.1.ebuild b/dev-python/requests/requests-2.18.1.ebuild
new file mode 100644
index 00000000000..bbf594bc0e5
--- /dev/null
+++ b/dev-python/requests/requests-2.18.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="HTTP library for human beings"
+HOMEPAGE="http://python-requests.org/"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="socks5 +ssl test"
+
+RDEPEND="
+ >=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
+ >=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]
+ >=dev-python/idna-2.5[${PYTHON_USEDEP}]
+ >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
+ socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
+ ssl? (
+ >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
+ >=dev-python/pyopenssl-0.14[$(python_gen_usedep 'python*' pypy)]
+ )
+"
+
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
+# tests connect to various remote sites
+RESTRICT="test"
+# test? (
+# dev-python/pytest[${PYTHON_USEDEP}]
+# dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+# dev-python/pytest-mock[${PYTHON_USEDEP}]
+# dev-python/pytest-xdist[${PYTHON_USEDEP}]
+# )
+
+python_test() {
+ py.test -v --boxed || die
+}
next reply other threads:[~2017-06-29 22:04 UTC|newest]
Thread overview: 162+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-29 22:04 Sebastien Fabbro [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-16 14:46 [gentoo-commits] repo/gentoo:master commit in: dev-python/requests/ Michał Górny
2024-06-15 8:38 Arthur Zamarin
2024-05-30 4:03 Michał Górny
2024-05-22 4:49 Michał Górny
2024-05-21 6:22 Arthur Zamarin
2024-05-21 4:14 Michał Górny
2024-05-14 10:05 Michał Górny
2023-05-29 9:42 Michał Górny
2023-05-23 13:37 Michał Górny
2023-05-23 10:17 Sam James
2023-05-23 5:07 Michał Górny
2023-05-04 8:06 Michał Górny
2023-04-27 19:27 Michał Górny
2023-04-27 19:27 Michał Górny
2023-03-16 4:07 Michał Górny
2023-02-16 17:22 Arthur Zamarin
2023-01-13 7:09 Michał Górny
2023-01-13 7:09 Michał Górny
2022-10-13 4:54 Michał Górny
2022-06-29 17:08 Arthur Zamarin
2022-06-16 11:24 Michał Górny
2022-06-16 9:33 Jakov Smolić
2022-06-09 19:19 Michał Górny
2022-05-13 11:21 Michał Górny
2022-05-13 11:21 Michał Górny
2022-02-04 8:40 Michał Górny
2022-02-04 7:22 Agostino Sarubbo
2022-02-03 21:34 Michał Górny
2022-02-03 20:57 Arthur Zamarin
2022-01-05 17:18 Arthur Zamarin
2022-01-03 17:49 Arthur Zamarin
2021-11-28 14:42 Michał Górny
2021-11-28 7:14 Michał Górny
2021-11-11 8:07 Michał Górny
2021-11-11 3:49 Sam James
2021-11-05 22:28 Sam James
2021-09-08 0:42 Sam James
2021-09-06 17:29 Sam James
2021-09-06 5:40 Agostino Sarubbo
2021-09-06 0:15 Sam James
2021-09-05 20:07 Agostino Sarubbo
2021-09-05 20:04 Agostino Sarubbo
2021-09-05 20:01 Agostino Sarubbo
2021-09-05 6:02 Sam James
2021-08-21 22:15 James Le Cuirot
2021-08-13 6:58 Michał Górny
2021-08-06 20:52 Sam James
2021-08-06 20:49 Sam James
2021-07-31 22:26 Joshua Kinard
2021-07-25 15:29 Sergei Trofimovich
2021-07-25 3:16 Matt Turner
2021-07-25 1:10 Sam James
2021-07-24 15:22 Sam James
2021-07-23 13:21 Marek Szuba
2021-07-23 12:46 Marek Szuba
2021-07-20 20:36 Sergei Trofimovich
2021-07-17 7:25 Michał Górny
2021-05-20 13:51 Michał Górny
2021-05-20 13:51 Michał Górny
2021-05-05 12:19 Michał Górny
2021-03-26 9:41 Michał Górny
2021-02-09 17:45 Mike Gilbert
2020-12-23 2:10 Sam James
2020-12-16 23:04 Michał Górny
2020-11-28 8:07 Sam James
2020-11-11 20:55 Michał Górny
2020-09-20 10:24 Michał Górny
2020-09-18 15:43 Michał Górny
2020-08-15 5:28 Joshua Kinard
2020-07-31 6:21 Michał Górny
2020-07-30 22:53 Sam James
2020-07-30 22:53 Sam James
2020-07-29 10:20 Michał Górny
2020-07-27 20:06 Aaron Bauman
2020-07-15 20:18 Sergei Trofimovich
2020-07-14 16:32 Sam James
2020-07-14 15:22 Sam James
2020-07-11 22:28 Sam James
2020-06-18 10:26 Michał Górny
2020-06-05 16:10 Sergei Trofimovich
2020-05-26 10:35 Michał Górny
2020-05-08 17:15 Agostino Sarubbo
2020-05-06 6:48 Sergei Trofimovich
2020-05-06 6:41 Sergei Trofimovich
2020-05-05 22:13 Sergei Trofimovich
2020-05-04 17:36 Thomas Deutschmann
2020-05-04 12:17 Michał Górny
2020-05-04 6:16 Mart Raudsepp
2020-05-03 19:02 Agostino Sarubbo
2020-05-03 10:12 Agostino Sarubbo
2020-04-11 12:08 Mart Raudsepp
2020-03-25 13:12 Agostino Sarubbo
2020-03-16 5:54 Matt Turner
2020-02-21 10:08 Michał Górny
2020-02-19 19:33 Sergei Trofimovich
2019-12-26 23:58 Aaron Bauman
2019-11-27 13:37 Mikle Kolyada
2019-11-22 19:38 Michał Górny
2019-03-10 8:33 Mikle Kolyada
2019-03-03 6:28 Mikle Kolyada
2019-03-03 6:28 Mikle Kolyada
2019-03-03 6:28 Mikle Kolyada
2019-03-02 20:46 Matt Turner
2019-02-15 18:09 Mikle Kolyada
2019-02-15 15:46 Thomas Deutschmann
2019-02-13 19:10 Markus Meier
2019-02-12 21:14 Sergei Trofimovich
2019-02-12 21:03 Sergei Trofimovich
2019-02-12 14:56 Mart Raudsepp
2019-02-12 8:12 Sergei Trofimovich
2019-02-12 8:11 Sergei Trofimovich
2019-02-11 23:36 Sergei Trofimovich
2018-12-17 21:21 Patrick McLean
2018-12-14 7:40 Patrick McLean
2018-07-16 19:57 Michał Górny
2018-07-09 21:22 Sebastian Pipping
2018-06-24 16:37 Sebastian Pipping
2018-06-17 4:10 Tim Harder
2018-02-22 17:38 Michał Górny
2017-09-15 21:46 Mike Gilbert
2017-09-12 9:13 Fabian Groffen
2017-08-29 13:34 Mike Gilbert
2017-08-28 0:47 Matt Thode
2017-06-15 18:19 Markus Meier
2017-05-22 16:48 Tobias Klausmann
2017-05-19 21:44 Michael Weber
2017-05-19 13:37 Michael Weber
2017-05-16 20:13 Mike Gilbert
2017-05-15 14:48 Mike Gilbert
2017-05-06 11:13 Jeroen Roovers
2017-04-09 21:37 Zac Medico
2017-03-01 6:49 Tim Harder
2017-02-19 1:03 Mike Gilbert
2017-01-23 4:46 Lars Wendler
2017-01-23 4:46 Lars Wendler
2016-12-22 22:46 Lars Wendler
2016-12-01 13:55 Lars Wendler
2016-11-30 18:05 Michał Górny
2016-09-30 7:22 Lars Wendler
2016-09-30 7:21 Lars Wendler
2016-06-21 2:47 Mike Frysinger
2016-01-22 8:03 Justin Lecher
2015-12-24 9:24 Justin Lecher
2015-12-17 14:48 Justin Lecher
2015-11-23 10:05 Justin Lecher
2015-11-23 6:44 Jeroen Roovers
2015-11-22 19:28 Markus Meier
2015-11-19 10:25 Agostino Sarubbo
2015-11-16 16:26 Agostino Sarubbo
2015-11-16 16:15 Agostino Sarubbo
2015-11-16 15:01 Agostino Sarubbo
2015-11-11 17:27 Justin Lecher
2015-11-05 11:52 Agostino Sarubbo
2015-11-04 16:09 Agostino Sarubbo
2015-11-04 15:50 Agostino Sarubbo
2015-11-02 13:12 Agostino Sarubbo
2015-11-02 13:09 Agostino Sarubbo
2015-10-18 16:48 Mikle Kolyada
2015-10-15 14:41 Justin Lecher
2015-10-14 13:40 Justin Lecher
2015-10-11 7:05 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1498773799.963dd73fa94b48a9b86b61c6149d4198cc8efb71.bicatali@gentoo \
--to=bicatali@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox