From owner-svn-ports-head@freebsd.org Sat May 6 08:28:46 2017 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 96816D5F6FC; Sat, 6 May 2017 08:28:46 +0000 (UTC) (envelope-from miwi@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 42439BA; Sat, 6 May 2017 08:28:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v468SjeH041694; Sat, 6 May 2017 08:28:45 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v468SikS041690; Sat, 6 May 2017 08:28:44 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705060828.v468SikS041690@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 08:28:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440245 - in head/devel: . py-pydrive 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.23 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: Sat, 06 May 2017 08:28:46 -0000 Author: miwi Date: Sat May 6 08:28:44 2017 New Revision: 440245 URL: https://svnweb.freebsd.org/changeset/ports/440245 Log: PyDrive PyDrive is a wrapper library of google-api-python-client that simplifies many common Google Drive API tasks. WWW: https://github.com/googledrive/PyDrive PR: 216334 Submitted by: Paul Mather Added: head/devel/py-pydrive/ head/devel/py-pydrive/Makefile (contents, props changed) head/devel/py-pydrive/distinfo (contents, props changed) head/devel/py-pydrive/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 6 08:24:42 2017 (r440244) +++ head/devel/Makefile Sat May 6 08:28:44 2017 (r440245) @@ -4553,6 +4553,7 @@ SUBDIR += py-pydenticon SUBDIR += py-pydocstyle SUBDIR += py-pydoop + SUBDIR += py-pydrive SUBDIR += py-pyechonest SUBDIR += py-pyee SUBDIR += py-pyelftools Added: head/devel/py-pydrive/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydrive/Makefile Sat May 6 08:28:44 2017 (r440245) @@ -0,0 +1,22 @@ +# Created by: Paul Mather +# $FreeBSD$ + +PORTNAME= pydrive +PORTVERSION= 1.3.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyDrive-${PORTVERSION} + +MAINTAINER= paul@gromit.dlib.vt.edu +COMMENT= Google drive api made easy + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-api-python-client>=1.5.2:www/py-google-api-python-client \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pydrive/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydrive/distinfo Sat May 6 08:28:44 2017 (r440245) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484930069 +SHA256 (PyDrive-1.3.1.tar.gz) = 83890dcc2278081c6e3f6a8da1f8083e25de0bcc8eb7c91374908c5549a20787 +SIZE (PyDrive-1.3.1.tar.gz) = 987445 Added: head/devel/py-pydrive/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydrive/pkg-descr Sat May 6 08:28:44 2017 (r440245) @@ -0,0 +1,6 @@ +PyDrive + +PyDrive is a wrapper library of google-api-python-client that simplifies many +common Google Drive API tasks. + +WWW: https://github.com/googledrive/PyDrive