From owner-svn-ports-head@freebsd.org Mon Aug 31 03:49:50 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 0C8E99C65A0; Mon, 31 Aug 2015 03:49:50 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x235.google.com (mail-pa0-x235.google.com [IPv6:2607:f8b0:400e:c03::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D15471B52; Mon, 31 Aug 2015 03:49:49 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pabzx8 with SMTP id zx8so124497669pab.1; Sun, 30 Aug 2015 20:49:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=pAzTcITRAH5bbo3WYuDB6tCsmYsUuL1h9EmPoz8eZn8=; b=Xcor9E4LV6odMntEUj6/bJtw83UiIFYmn6uuiKCkinxcHeQJ4DN02yaPJir4qbK8+E S1tMFJaub8Ns3/7//HWjvuOsvJNiibH9ZL3eXReeXzadxRCUe23K9JnMIH69VmNq1i3V UJ5NA2LzN4EwdwWxQApuLcpx8wR6fqtZ1LLf1jHFa0Fjda8mDUP7U3DTEG+cylapanZb KqKAjz+NGnAs3VwmD4QeOXbO15hBmHWllBE5ygCtncQAT9tPK3ZN6nz5DZTVRl8u1wbS quzw17bHjALdeRNVqc23AIIV1mo9DnzNY+pkor3lbYEXT7RPM8PQw29RQ3PfMFY8jJSj k0Yw== X-Received: by 10.68.218.65 with SMTP id pe1mr33952684pbc.2.1440992989228; Sun, 30 Aug 2015 20:49:49 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id pt3sm12676307pbb.38.2015.08.30.20.49.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 30 Aug 2015 20:49:48 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r395628 - in head/www: . py-pyocclient References: <201508301655.t7UGtEVx037588@repo.freebsd.org> To: Thomas Zander , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <55E3CED6.3010703@FreeBSD.org> Date: Mon, 31 Aug 2015 13:49:42 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Thunderbird/40.0 MIME-Version: 1.0 In-Reply-To: <201508301655.t7UGtEVx037588@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit 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: Mon, 31 Aug 2015 03:49:50 -0000 On 31/08/2015 2:55 AM, Thomas Zander wrote: > 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 > > 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 Given this port only supports 2.x, this should be set to python:-2.7, unless it doesn't support 2.6 in which case it should be set to python:2.7 > +USE_PYTHON= autoplist distutils > + > +.include > + > +.if ${PYTHON_REL} >= 3000 > +BROKEN= pyocclient only supports Python 2.x at the moment > +.endif This block is not needed with the above change. > +.include > Regards, ./koobs