From owner-svn-ports-all@freebsd.org Thu Oct 12 18:34:49 2017 Return-Path: Delivered-To: svn-ports-all@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 6190CE317B5; Thu, 12 Oct 2017 18:34:49 +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 3E260387A; Thu, 12 Oct 2017 18:34:49 +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 v9CIYmec033190; Thu, 12 Oct 2017 18:34:48 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9CIYlZY033186; Thu, 12 Oct 2017 18:34:47 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201710121834.v9CIYlZY033186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 12 Oct 2017 18:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451924 - in head/www: . py-requests-file X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/www: . py-requests-file X-SVN-Commit-Revision: 451924 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Oct 2017 18:34:49 -0000 Author: feld Date: Thu Oct 12 18:34:47 2017 New Revision: 451924 URL: https://svnweb.freebsd.org/changeset/ports/451924 Log: Requests-File is a transport adapter for use with the Requests Python library to allow local filesystem access via file:// URLs. WWW: https://github.com/dashea/requests-file Added: head/www/py-requests-file/ head/www/py-requests-file/Makefile (contents, props changed) head/www/py-requests-file/distinfo (contents, props changed) head/www/py-requests-file/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Oct 12 18:16:50 2017 (r451923) +++ head/www/Makefile Thu Oct 12 18:34:47 2017 (r451924) @@ -1811,6 +1811,7 @@ SUBDIR += py-recaptcha SUBDIR += py-requestbuilder SUBDIR += py-requests + SUBDIR += py-requests-file SUBDIR += py-requests-futures SUBDIR += py-requests-mock SUBDIR += py-requests-oauthlib Added: head/www/py-requests-file/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-file/Makefile Thu Oct 12 18:34:47 2017 (r451924) @@ -0,0 +1,25 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= requests-file +PORTVERSION= 1.4.2 +CATEGORIES= www python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Transport adapter for use with the Requests Python library + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +USE_GITHUB= yes +GH_ACCOUNT= dashea + +.include Added: head/www/py-requests-file/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-file/distinfo Thu Oct 12 18:34:47 2017 (r451924) @@ -0,0 +1,3 @@ +TIMESTAMP = 1507832477 +SHA256 (dashea-requests-file-1.4.2_GH0.tar.gz) = 311c0accf3c9496ca6db7c53ca2d64a31e54fe94e825074f1844707b86df6420 +SIZE (dashea-requests-file-1.4.2_GH0.tar.gz) = 5889 Added: head/www/py-requests-file/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests-file/pkg-descr Thu Oct 12 18:34:47 2017 (r451924) @@ -0,0 +1,4 @@ +Requests-File is a transport adapter for use with the Requests Python +library to allow local filesystem access via file:// URLs. + +WWW: https://github.com/dashea/requests-file