Date: Mon, 16 May 2016 02:01:28 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415295 - in head/www: . py-requests-futures Message-ID: <201605160201.u4G21SnJ076603@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Mon May 16 02:01:28 2016 New Revision: 415295 URL: https://svnweb.freebsd.org/changeset/ports/415295 Log: 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 Added: head/www/py-requests-futures/ head/www/py-requests-futures/Makefile (contents, props changed) head/www/py-requests-futures/distinfo (contents, props changed) head/www/py-requests-futures/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon May 16 01:45:37 2016 (r415294) +++ head/www/Makefile Mon May 16 02:01:28 2016 (r415295) @@ -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 Added: head/www/py-requests-futures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-futures/Makefile Mon May 16 02:01:28 2016 (r415295) @@ -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> Added: head/www/py-requests-futures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-futures/distinfo Mon May 16 02:01:28 2016 (r415295) @@ -0,0 +1,2 @@ +SHA256 (requests-futures-0.9.7.tar.gz) = a9ca2c3480b6fac29ec5de59c146742e2ab2b60f8c68581766094edb52ea7bad +SIZE (requests-futures-0.9.7.tar.gz) = 5571 Added: head/www/py-requests-futures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-futures/pkg-descr Mon May 16 02:01:28 2016 (r415295) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605160201.u4G21SnJ076603>