From owner-svn-ports-all@freebsd.org Thu Oct 20 15:50:14 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 6D3E8C1A40C; Thu, 20 Oct 2016 15:50:14 +0000 (UTC) (envelope-from tj@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 208BAECD; Thu, 20 Oct 2016 15:50:14 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9KFoD4I069230; Thu, 20 Oct 2016 15:50:13 GMT (envelope-from tj@FreeBSD.org) Received: (from tj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9KFoC2p069226; Thu, 20 Oct 2016 15:50:12 GMT (envelope-from tj@FreeBSD.org) Message-Id: <201610201550.u9KFoC2p069226@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tj set sender to tj@FreeBSD.org using -f From: Tom Judge Date: Thu, 20 Oct 2016 15:50:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424338 - in head/devel: . py-voluptuous 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: Thu, 20 Oct 2016 15:50:14 -0000 Author: tj Date: Thu Oct 20 15:50:12 2016 New Revision: 424338 URL: https://svnweb.freebsd.org/changeset/ports/424338 Log: New port devel/py-voluptuous WWW: https://github.com/alecthomas/voluptuous Added: head/devel/py-voluptuous/ head/devel/py-voluptuous/Makefile (contents, props changed) head/devel/py-voluptuous/distinfo (contents, props changed) head/devel/py-voluptuous/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 20 15:34:16 2016 (r424337) +++ head/devel/Makefile Thu Oct 20 15:50:12 2016 (r424338) @@ -4626,6 +4626,7 @@ SUBDIR += py-virtualenv SUBDIR += py-virtualenv-clone SUBDIR += py-virtualenvwrapper + SUBDIR += py-voluptuous SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-wcwidth Added: head/devel/py-voluptuous/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-voluptuous/Makefile Thu Oct 20 15:50:12 2016 (r424338) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= voluptuous +PORTVERSION= 0.9.3 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tj@FreeBSD.org +COMMENT= Python data validation library + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= alecthomas + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-voluptuous/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-voluptuous/distinfo Thu Oct 20 15:50:12 2016 (r424338) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476978288 +SHA256 (alecthomas-voluptuous-0.9.3_GH0.tar.gz) = 8a2387caf2dc17910c3427277dfd9c2e641287c6bb8c0b9b54d814f11a8bd224 +SIZE (alecthomas-voluptuous-0.9.3_GH0.tar.gz) = 25677 Added: head/devel/py-voluptuous/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-voluptuous/pkg-descr Thu Oct 20 15:50:12 2016 (r424338) @@ -0,0 +1,8 @@ +Voluptuous, despite the name, is a Python data validation library. It is +primarily intended for validating data coming into Python as JSON, YAML, etc. + +It has three goals: + + 1. Simplicity. + 2. Support for complex data structures. + 3. Provide useful error messages.