From owner-svn-ports-head@freebsd.org Sun Aug 30 16:55:16 2015 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 152929C4DC0; Sun, 30 Aug 2015 16:55:16 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 DFE40B5A; Sun, 30 Aug 2015 16:55:15 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7UGtFdT037593; Sun, 30 Aug 2015 16:55:15 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7UGtEVx037588; Sun, 30 Aug 2015 16:55:14 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201508301655.t7UGtEVx037588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 30 Aug 2015 16:55:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395628 - in head/www: . py-pyocclient 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.20 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: Sun, 30 Aug 2015 16:55:16 -0000 Author: riggs Date: Sun Aug 30 16:55:14 2015 New Revision: 395628 URL: https://svnweb.freebsd.org/changeset/ports/395628 Log: Add www/py-pyocclient: the Python OwnCloud client library PR: 201996 Submitted by: che@bein.link (maintainer) Reviewed by: koobs, riggs Added: head/www/py-pyocclient/ head/www/py-pyocclient/Makefile (contents, props changed) head/www/py-pyocclient/distinfo (contents, props changed) head/www/py-pyocclient/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 30 16:50:00 2015 (r395627) +++ head/www/Makefile Sun Aug 30 16:55:14 2015 (r395628) @@ -1702,6 +1702,7 @@ SUBDIR += py-py-restclient SUBDIR += py-pyjwt SUBDIR += py-pylons + SUBDIR += py-pyocclient SUBDIR += py-pyquery SUBDIR += py-pyramid SUBDIR += py-pyramid_rpc Added: head/www/py-pyocclient/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyocclient/Makefile Sun Aug 30 16:55:14 2015 (r395628) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pyocclient +PORTVERSION= 0.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= che@bein.link +COMMENT= Python Owncloud client library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.1:${PORTSDIR}/www/py-requests + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} >= 3000 +BROKEN= pyocclient only supports Python 2.x at the moment +.endif + +.include Added: head/www/py-pyocclient/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyocclient/distinfo Sun Aug 30 16:55:14 2015 (r395628) @@ -0,0 +1,2 @@ +SHA256 (pyocclient-0.1.tar.gz) = b3505e4973bfadda11f9f5d426018f9ea3a373c3ef47b77324ed4f88f195ff43 +SIZE (pyocclient-0.1.tar.gz) = 11749 Added: head/www/py-pyocclient/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyocclient/pkg-descr Sun Aug 30 16:55:14 2015 (r395628) @@ -0,0 +1,5 @@ +This library makes it possible to connect to an ownCloud instance and perform +file, share and attribute operations in python. Please note that this is not +a sync client implementation but rather a wrapper around various APIs. + +WWW: https://github.com/owncloud/pyocclient