From owner-svn-ports-head@FreeBSD.ORG Wed Sep 17 01:25:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E866286; Wed, 17 Sep 2014 01:25:47 +0000 (UTC) Received: from svn.freebsd.org (svn.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 D4E18A24; Wed, 17 Sep 2014 01:25:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8H1PkYe010615; Wed, 17 Sep 2014 01:25:46 GMT (envelope-from wblock@FreeBSD.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8H1PkHU010611; Wed, 17 Sep 2014 01:25:46 GMT (envelope-from wblock@FreeBSD.org) Message-Id: <201409170125.s8H1PkHU010611@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wblock set sender to wblock@FreeBSD.org using -f From: Warren Block Date: Wed, 17 Sep 2014 01:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368352 - in head/www: . py-pyjwt 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.18-1 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: Wed, 17 Sep 2014 01:25:47 -0000 Author: wblock (doc committer) Date: Wed Sep 17 01:25:45 2014 New Revision: 368352 URL: http://svnweb.freebsd.org/changeset/ports/368352 QAT: https://qat.redports.org/buildarchive/r368352/ Log: New port: www/py-pyjwt, a Python implementation of JSON Web Tokens. PR: 193095 Reviewed by: koobs Approved by: koobs Review: D487 Added: head/www/py-pyjwt/ head/www/py-pyjwt/Makefile (contents, props changed) head/www/py-pyjwt/distinfo (contents, props changed) head/www/py-pyjwt/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Sep 16 22:53:31 2014 (r368351) +++ head/www/Makefile Wed Sep 17 01:25:45 2014 (r368352) @@ -1631,6 +1631,7 @@ SUBDIR += py-praw SUBDIR += py-prewikka SUBDIR += py-py-restclient + SUBDIR += py-pyjwt SUBDIR += py-pylons SUBDIR += py-pyquery SUBDIR += py-pyramid Added: head/www/py-pyjwt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyjwt/Makefile Wed Sep 17 01:25:45 2014 (r368352) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= pyjwt +PORTVERSION= 0.2.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +DISTNAME= PyJWT-${PORTVERSION} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wblock@FreeBSD.org +COMMENT= JSON Web Token implementation in Python + +LICENSE= MIT +# LICENSE_FILE= ${WRKSRC}/LICENSE + +RSASSA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:${PORTSDIR}/security/py-pycrypto + +OPTIONS_DEFINE= RSASSA +RSASSA_DESC= RSASSA-PKCS1 v1.5 signature support + +USES= python +USE_PYTHON= distutils autoplist + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/www/py-pyjwt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyjwt/distinfo Wed Sep 17 01:25:45 2014 (r368352) @@ -0,0 +1,2 @@ +SHA256 (PyJWT-0.2.1.tar.gz) = cfd0fad01a9a57fb4b24e59a82ffd50ddc9c2c4344694ec6ef436ae11d5d18aa +SIZE (PyJWT-0.2.1.tar.gz) = 6320 Added: head/www/py-pyjwt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-pyjwt/pkg-descr Wed Sep 17 01:25:45 2014 (r368352) @@ -0,0 +1,3 @@ +A Python implementation of JSON Web Tokens. + +WWW: http://github.com/progrium/pyjwt