From owner-svn-ports-head@FreeBSD.ORG Sun Nov 9 11:51:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F56890D; Sun, 9 Nov 2014 11:51:57 +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 2CB2FF17; Sun, 9 Nov 2014 11:51:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA9Bpv9g031692; Sun, 9 Nov 2014 11:51:57 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA9BpuIg031688; Sun, 9 Nov 2014 11:51:56 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201411091151.sA9BpuIg031688@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 9 Nov 2014 11:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372359 - in head/www: . py-bottle-cork 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: Sun, 09 Nov 2014 11:51:57 -0000 Author: marino Date: Sun Nov 9 11:51:55 2014 New Revision: 372359 URL: https://svnweb.freebsd.org/changeset/ports/372359 QAT: https://qat.redports.org/buildarchive/r372359/ Log: Add new port www/py-bottle-cork PR: 194192 Submitted by: Olivier (cochard.me) bottle-cork provides a simple set of methods to implement Authentication and Authorization in web applications based on Bottle. Added: head/www/py-bottle-cork/ head/www/py-bottle-cork/Makefile (contents, props changed) head/www/py-bottle-cork/distinfo (contents, props changed) head/www/py-bottle-cork/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Nov 9 11:36:08 2014 (r372358) +++ head/www/Makefile Sun Nov 9 11:51:55 2014 (r372359) @@ -1454,6 +1454,7 @@ SUBDIR += py-bleach SUBDIR += py-blogofile SUBDIR += py-bottle + SUBDIR += py-bottle-cork SUBDIR += py-cherrypy SUBDIR += py-cherrypy-old SUBDIR += py-clientform Added: head/www/py-bottle-cork/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bottle-cork/Makefile Sun Nov 9 11:51:55 2014 (r372359) @@ -0,0 +1,43 @@ +# $FreeBSD$ + +PORTNAME= bottle-cork +PORTVERSION= 0.10 +CATEGORIES= www python +MASTER_SITES= GH +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= olivier@cochard.me +COMMENT= Bottle authentication and authorization module + +LICENSE= LGPL3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bottle>0:${PORTSDIR}/www/py-bottle \ + ${PYTHON_PKGNAMEPREFIX}beaker>0:${PORTSDIR}/www/py-beaker + +USE_GITHUB= yes +GH_ACCOUNT= FedericoCeratto +GH_PROJECT= bottle-cork +GH_COMMIT= c881fae +GH_TAGNAME= v${PORTVERSION} + +USES= python +USE_PYTHON= distutils autoplist +EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} +PORTEXAMPLES= * + +OPTIONS_DEFINE= SQLITE MONGODB SQLALCHEMY EXAMPLES + +.include + +SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 +MONGODB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymongo>0:${PORTSDIR}/databases/pymongo +SQLALCHEMY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy>0:${PORTSDIR}/databases/py-sqlalchemy + +.if ${PORT_OPTIONS:MEXAMPLES} +post-install: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/examples && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) +.endif + +.include Added: head/www/py-bottle-cork/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bottle-cork/distinfo Sun Nov 9 11:51:55 2014 (r372359) @@ -0,0 +1,2 @@ +SHA256 (bottle-cork-0.10.tar.gz) = a4bed8e0756fa774406611f662bf95ea5aa93eb4f8515c60acf3e4b1db810d61 +SIZE (bottle-cork-0.10.tar.gz) = 59221 Added: head/www/py-bottle-cork/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bottle-cork/pkg-descr Sun Nov 9 11:51:55 2014 (r372359) @@ -0,0 +1,4 @@ +bottle-cork provides a simple set of methods to implement Authentication +and Authorization in web applications based on Bottle. + +WWW: http://cork.firelet.net/