svn commit: r438329 - in head/devel: . py-kaitaistruct
Shaun Amott
shaun at FreeBSD.org
Wed Apr 12 02:33:09 UTC 2017
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 <shaun at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= kaitaistruct
+PORTVERSION= 0.7
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= shaun at FreeBSD.org
+COMMENT= Kaitai Struct declarative parser generator for binary data
+
+LICENSE= MIT
+
+USES?= python
+USE_PYTHON= distutils autoplist
+NO_ARCH= yes
+
+.include <bsd.port.mk>
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/
More information about the svn-ports-all
mailing list