From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79D3513832E for ; Tue, 9 Aug 2016 23:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEA24E0B87; Tue, 9 Aug 2016 23:52:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CDAA3E0B78 for ; Tue, 9 Aug 2016 23:52:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68E31340B30 for ; Tue, 9 Aug 2016 23:52:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0830A2452 for ; Tue, 9 Aug 2016 23:52:19 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1470786441.cfffec5d3b243be7afd3d01c8a8b60efa874cda4.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txrequests/Manifest dev-python/txrequests/metadata.xml dev-python/txrequests/txrequests-0.9.2.ebuild X-VCS-Directories: dev-python/txrequests/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: cfffec5d3b243be7afd3d01c8a8b60efa874cda4 X-VCS-Branch: master Date: Tue, 9 Aug 2016 23:52:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cd50ad29-e89a-4cfa-b36e-c47783fa62c6 X-Archives-Hash: ea5cf89edb8908fe43a59cc301d1c1d6 commit: cfffec5d3b243be7afd3d01c8a8b60efa874cda4 Author: Brian Dolbec gentoo org> AuthorDate: Tue Aug 9 22:05:48 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Aug 9 23:47:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfffec5d dev-python/txrequests: New package, dep of buildbot-0.9 Package-Manager: portage-2.3.0 dev-python/txrequests/Manifest | 1 + dev-python/txrequests/metadata.xml | 24 +++++++++++++++++++++++ dev-python/txrequests/txrequests-0.9.2.ebuild | 28 +++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) diff --git a/dev-python/txrequests/Manifest b/dev-python/txrequests/Manifest new file mode 100644 index 0000000..ef9ea5e --- /dev/null +++ b/dev-python/txrequests/Manifest @@ -0,0 +1 @@ +DIST txrequests-0.9.2.tar.gz 5223 SHA256 dc29e7c9305a74be3e88cd0253bde1981855426e39fbf4a7f4af647542eb7d4e SHA512 99ea6ed752e23f6539cbf571b304fab3b73a173ce23e6688889191d377961c68773513d9602e0600b45f454c99051f527f7719f7712e2b8e91696afa0c405c95 WHIRLPOOL 5721d372157d1ea9b65650a8a7d1685495144bd2c5eb4dd5810f7cf37780121b3a89eeecc928750d5893d5541e9e7011ff86e8d93feb81bb97ad9a78aada7412 diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml new file mode 100644 index 0000000..028d3e5 --- /dev/null +++ b/dev-python/txrequests/metadata.xml @@ -0,0 +1,24 @@ + + + + + dol-sen@gentoo.org + Primary maintainer + + + python@gentoo.org + Python + + + + tardyp@gmail.com + Pierre Tardy + + txrequests + + Small add-on for the python requests http library. + Makes use twisted's ThreadPool, so that the requests'API returns + deferred. The additional API and changes are minimal and strives to + avoid surprises. + + diff --git a/dev-python/txrequests/txrequests-0.9.2.ebuild b/dev-python/txrequests/txrequests-0.9.2.ebuild new file mode 100644 index 0000000..e44e477 --- /dev/null +++ b/dev-python/txrequests/txrequests-0.9.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7) + +inherit distutils-r1 + +DESCRIPTION="Asynchronous Python HTTP for Humans" +HOMEPAGE="https://github.com/tardyp/txrequests" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-python/requests-1.2.0[${PYTHON_USEDEP}] + || ( + >=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}] + dev-python/twisted[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +"