From owner-svn-ports-all@freebsd.org Fri Sep 23 20:08:35 2016 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 292A2BE8894; Fri, 23 Sep 2016 20:08:35 +0000 (UTC) (envelope-from olgeni@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 D396016A7; Fri, 23 Sep 2016 20:08:34 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8NK8Yan010112; Fri, 23 Sep 2016 20:08:34 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8NK8XMt010108; Fri, 23 Sep 2016 20:08:33 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609232008.u8NK8XMt010108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 23 Sep 2016 20:08:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422693 - in head/devel: . py-twilio X-SVN-Group: ports-head 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: Fri, 23 Sep 2016 20:08:35 -0000 Author: olgeni Date: Fri Sep 23 20:08:33 2016 New Revision: 422693 URL: https://svnweb.freebsd.org/changeset/ports/422693 Log: Add devel/py-twilio, a Python module for communicating with the Twilio API. Added: head/devel/py-twilio/ head/devel/py-twilio/Makefile (contents, props changed) head/devel/py-twilio/distinfo (contents, props changed) head/devel/py-twilio/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Sep 23 18:55:53 2016 (r422692) +++ head/devel/Makefile Fri Sep 23 20:08:33 2016 (r422693) @@ -4537,6 +4537,7 @@ SUBDIR += py-tw.forms SUBDIR += py-twext SUBDIR += py-twiggy + SUBDIR += py-twilio SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-twisted152 Added: head/devel/py-twilio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-twilio/Makefile Fri Sep 23 20:08:33 2016 (r422693) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= twilio +PORTVERSION= 5.6.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= Python module for communicating with the Twilio API + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2 \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-twilio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-twilio/distinfo Fri Sep 23 20:08:33 2016 (r422693) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474659760 +SHA256 (twilio-5.6.0.tar.gz) = d4bfbb70ddc28ac346a3e38c4d562596d01a0842cac78261e0171953199af625 +SIZE (twilio-5.6.0.tar.gz) = 194195 Added: head/devel/py-twilio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-twilio/pkg-descr Fri Sep 23 20:08:33 2016 (r422693) @@ -0,0 +1,4 @@ +The twilio-python helper library lets you write Python code to make +HTTP requests to the Twilio API. + +WWW: https://www.twilio.com/docs/libraries/python