From owner-svn-ports-all@freebsd.org Fri Apr 28 17:17:43 2017 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 D5520D54112; Fri, 28 Apr 2017 17:17:43 +0000 (UTC) (envelope-from shaun@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 8ECC724F; Fri, 28 Apr 2017 17:17:43 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3SHHgOO061001; Fri, 28 Apr 2017 17:17:42 GMT (envelope-from shaun@FreeBSD.org) Received: (from shaun@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3SHHgne060997; Fri, 28 Apr 2017 17:17:42 GMT (envelope-from shaun@FreeBSD.org) Message-Id: <201704281717.v3SHHgne060997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shaun set sender to shaun@FreeBSD.org using -f From: Shaun Amott Date: Fri, 28 Apr 2017 17:17:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439617 - in head/devel: . py-construct28 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, 28 Apr 2017 17:17:43 -0000 Author: shaun Date: Fri Apr 28 17:17:42 2017 New Revision: 439617 URL: https://svnweb.freebsd.org/changeset/ports/439617 Log: New port: devel/py-construct28. Added: head/devel/py-construct28/ head/devel/py-construct28/Makefile (contents, props changed) head/devel/py-construct28/distinfo (contents, props changed) head/devel/py-construct28/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 28 15:47:17 2017 (r439616) +++ head/devel/Makefile Fri Apr 28 17:17:42 2017 (r439617) @@ -4208,6 +4208,7 @@ SUBDIR += py-configparser SUBDIR += py-constantly SUBDIR += py-construct + SUBDIR += py-construct28 SUBDIR += py-contextlib2 SUBDIR += py-country SUBDIR += py-cov-core Added: head/devel/py-construct28/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-construct28/Makefile Fri Apr 28 17:17:42 2017 (r439617) @@ -0,0 +1,23 @@ +# Created by: Piotr Florczyk +# $FreeBSD$ + +PORTNAME= construct +PORTVERSION= 2.8.11 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 28 + +MAINTAINER= shaun@FreeBSD.org +COMMENT= Python module for parsing and building of data structures + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-construct28/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-construct28/distinfo Fri Apr 28 17:17:42 2017 (r439617) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491960566 +SHA256 (construct-2.8.11.tar.gz) = 4d59bdef0209678c54805120dff03a0423d88989018eaa559e713ecb13ab6eb1 +SIZE (construct-2.8.11.tar.gz) = 719949 Added: head/devel/py-construct28/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-construct28/pkg-descr Fri Apr 28 17:17:42 2017 (r439617) @@ -0,0 +1,8 @@ +Construct is a python library for parsing and building of data +structures (binary or textual). + +It is based on the concept of defining data structures in a declarative +manner, rather than procedural code: more complex constructs are +composed of a hierarchy of simpler ones. + +WWW: https://github.com/construct/construct