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 981421382C5 for ; Fri, 30 Apr 2021 21:58:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3C3DE0817; Fri, 30 Apr 2021 21:58:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6483E082B for ; Fri, 30 Apr 2021 21:58:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D740340E16 for ; Fri, 30 Apr 2021 21:58:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E08FB673 for ; Fri, 30 Apr 2021 21:58:47 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1619819919.94a6d311c6658baa2a87a37fb40cf03934890e94.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-futures/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/requests-futures/Manifest dev-python/requests-futures/metadata.xml dev-python/requests-futures/requests-futures-1.0.0.ebuild X-VCS-Directories: dev-python/requests-futures/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 94a6d311c6658baa2a87a37fb40cf03934890e94 X-VCS-Branch: master Date: Fri, 30 Apr 2021 21:58:47 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: eee5d489-d8f7-4643-be38-f05c49e0ba86 X-Archives-Hash: 68e1b7073d97507c62196d80f75155dc commit: 94a6d311c6658baa2a87a37fb40cf03934890e94 Author: Matt Turner gentoo org> AuthorDate: Fri Apr 30 21:40:49 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Apr 30 21:58:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94a6d311 dev-python/requests-futures: Add new package Signed-off-by: Matt Turner gentoo.org> dev-python/requests-futures/Manifest | 1 + dev-python/requests-futures/metadata.xml | 16 ++++++++++++++++ .../requests-futures/requests-futures-1.0.0.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-python/requests-futures/Manifest b/dev-python/requests-futures/Manifest new file mode 100644 index 00000000000..2354038e6dd --- /dev/null +++ b/dev-python/requests-futures/Manifest @@ -0,0 +1 @@ +DIST requests-futures-1.0.0.tar.gz 10897 BLAKE2B deccf99ffecf3dd04eaaa7692b93b046b027109346555ca9b4172f29600615fb78bd46528c2ae925587d06f24e5b52dc2f02f5d5da04eda18cd97037e1b28440 SHA512 64b39ed99712df8f1be74b2de97500d89711c0d5d3ba0f2b64e3bab755d0bf82029d7ced13b755ce12a2b86f3b673305b651ba6ff4cfb60aed40c8d5876f202c diff --git a/dev-python/requests-futures/metadata.xml b/dev-python/requests-futures/metadata.xml new file mode 100644 index 00000000000..68af319b43c --- /dev/null +++ b/dev-python/requests-futures/metadata.xml @@ -0,0 +1,16 @@ + + + + + mattst88@gentoo.org + Matt Turner + + + Small add-on for the python requests http library. Makes use of python 3.2's + concurrent.futures or the backport for prior versions of python. + + + + requests-futures + + diff --git a/dev-python/requests-futures/requests-futures-1.0.0.ebuild b/dev-python/requests-futures/requests-futures-1.0.0.ebuild new file mode 100644 index 00000000000..b72806bb2c6 --- /dev/null +++ b/dev-python/requests-futures/requests-futures-1.0.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Asynchronous Python HTTP for Humans" +HOMEPAGE="https://github.com/ross/requests-futures" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +RESTRICT="test" # https://github.com/ross/requests-futures/issues/94 + +RDEPEND=">=dev-python/requests-1.2.0[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest