From owner-svn-ports-head@freebsd.org Mon May 16 02:01:29 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0485B3C9EA; Mon, 16 May 2016 02:01:29 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73FA31680; Mon, 16 May 2016 02:01:29 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4G21Sq4077281; Mon, 16 May 2016 02:01:28 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4G21SnJ076603; Mon, 16 May 2016 02:01:28 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201605160201.u4G21SnJ076603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 16 May 2016 02:01:28 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 02:01:29 -0000 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 +# $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 + +.if ${PYTHON_VER} == "2.7" +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}futures>0:devel/py-futures +.endif + +.include 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