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.

WWW: https://github.com/ross/requests-futures
This commit is contained in:
Mark Felder 2016-05-16 02:01:28 +00:00
parent 09bc381d89
commit 94de750f21
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=415295
4 changed files with 35 additions and 0 deletions

View file

@ -1758,6 +1758,7 @@
SUBDIR += py-recaptcha
SUBDIR += py-requestbuilder
SUBDIR += py-requests
SUBDIR += py-requests-futures
SUBDIR += py-requests-oauth-hook
SUBDIR += py-requests-oauthlib
SUBDIR += py-requests-toolbelt

View file

@ -0,0 +1,28 @@
# Created by: Mark Felder <feld@FreeBSD.org>
# $FreeBSD$
PORTNAME= requests-futures
PORTVERSION= 0.9.7
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= feld@FreeBSD.org
COMMENT= HTTP library written in Python for human beings
LICENSE= APACHE20
USES= python
USE_PYTHON= autoplist distutils
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests
NO_ARCH= yes
.include <bsd.port.pre.mk>
.if ${PYTHON_VER} == "2.7"
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}futures>0:devel/py-futures
.endif
.include <bsd.port.post.mk>

View file

@ -0,0 +1,2 @@
SHA256 (requests-futures-0.9.7.tar.gz) = a9ca2c3480b6fac29ec5de59c146742e2ab2b60f8c68581766094edb52ea7bad
SIZE (requests-futures-0.9.7.tar.gz) = 5571

View file

@ -0,0 +1,4 @@
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.
WWW: https://github.com/ross/requests-futures