From owner-svn-ports-all@freebsd.org Wed Apr 12 02:33:09 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 6FB83D3A688; Wed, 12 Apr 2017 02:33:09 +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 2F06AD14; Wed, 12 Apr 2017 02:33:09 +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 v3C2X81o081368; Wed, 12 Apr 2017 02:33:08 GMT (envelope-from shaun@FreeBSD.org) Received: (from shaun@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3C2X7e6081364; Wed, 12 Apr 2017 02:33:07 GMT (envelope-from shaun@FreeBSD.org) Message-Id: <201704120233.v3C2X7e6081364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shaun set sender to shaun@FreeBSD.org using -f From: Shaun Amott Date: Wed, 12 Apr 2017 02:33:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438329 - in head/devel: . py-kaitaistruct 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: Wed, 12 Apr 2017 02:33:09 -0000 Author: shaun Date: Wed Apr 12 02:33:07 2017 New Revision: 438329 URL: https://svnweb.freebsd.org/changeset/ports/438329 Log: New port: Kaitai Struct declarative parser generator for binary data. Added: head/devel/py-kaitaistruct/ head/devel/py-kaitaistruct/Makefile (contents, props changed) head/devel/py-kaitaistruct/distinfo (contents, props changed) head/devel/py-kaitaistruct/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 12 02:32:08 2017 (r438328) +++ head/devel/Makefile Wed Apr 12 02:33:07 2017 (r438329) @@ -4383,6 +4383,7 @@ SUBDIR += py-jupyter_client SUBDIR += py-jupyter_console SUBDIR += py-jupyter_core + SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kayako SUBDIR += py-kazoo Added: head/devel/py-kaitaistruct/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kaitaistruct/Makefile Wed Apr 12 02:33:07 2017 (r438329) @@ -0,0 +1,19 @@ +# Created by: Shaun Amott +# $FreeBSD$ + +PORTNAME= kaitaistruct +PORTVERSION= 0.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= shaun@FreeBSD.org +COMMENT= Kaitai Struct declarative parser generator for binary data + +LICENSE= MIT + +USES?= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-kaitaistruct/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kaitaistruct/distinfo Wed Apr 12 02:33:07 2017 (r438329) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491952661 +SHA256 (kaitaistruct-0.7.tar.gz) = 319caca6dd7051655b48457be4a06a236ce782606c347f1c226d6190abd543a6 +SIZE (kaitaistruct-0.7.tar.gz) = 5117 Added: head/devel/py-kaitaistruct/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kaitaistruct/pkg-descr Wed Apr 12 02:33:07 2017 (r438329) @@ -0,0 +1,12 @@ +This library implements Kaitai Struct API for Python. + +Kaitai Struct is a declarative language used for describe various binary +data structures, laid out in files or in memory: i.e. binary file +formats, network stream packet formats, etc. + +It is similar to Python’s [construct] and [Construct3], but it is +language-agnostic. The format description is done in YAML-based .ksy +format, which then can be compiled into a wide range of target +languages. + +WWW: http://kaitai.io/