Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Jan 2020 10:07:36 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r524168 - in head/science: . py-h5json
Message-ID:  <202001261007.00QA7aTP039859@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Jan 26 10:07:36 2020
New Revision: 524168
URL: https://svnweb.freebsd.org/changeset/ports/524168

Log:
  New port: science/py-h5json: Tools and library for representing HDF5 in JSON

Added:
  head/science/py-h5json/
  head/science/py-h5json/Makefile   (contents, props changed)
  head/science/py-h5json/distinfo   (contents, props changed)
  head/science/py-h5json/pkg-descr   (contents, props changed)
Modified:
  head/science/Makefile

Modified: head/science/Makefile
==============================================================================
--- head/science/Makefile	Sun Jan 26 10:03:51 2020	(r524167)
+++ head/science/Makefile	Sun Jan 26 10:07:36 2020	(r524168)
@@ -245,6 +245,7 @@
     SUBDIR += py-geometer
     SUBDIR += py-gpaw
     SUBDIR += py-gsd
+    SUBDIR += py-h5json
     SUBDIR += py-h5py
     SUBDIR += py-hcluster
     SUBDIR += py-kinematics

Added: head/science/py-h5json/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-h5json/Makefile	Sun Jan 26 10:07:36 2020	(r524168)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	h5json
+DISTVERSION=	1.1.3
+CATEGORIES=	science python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Tools and library for representing HDF5 in JSON
+
+LICENSE=	BSD3CLAUSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pkgconfig>0:devel/py-pkgconfig@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}h5py>0:science/py-h5py@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils concurrent autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/science/py-h5json/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-h5json/distinfo	Sun Jan 26 10:07:36 2020	(r524168)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1580032644
+SHA256 (h5json-1.1.3.tar.gz) = 68227b600049e3bee62c07db73e2aeaf15fb89be3f0b70334493c6697a2c6dcf
+SIZE (h5json-1.1.3.tar.gz) = 48955

Added: head/science/py-h5json/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-h5json/pkg-descr	Sun Jan 26 10:07:36 2020	(r524168)
@@ -0,0 +1,10 @@
+This package contains a specification, library, and utilities for describing
+HDF5 content in JSON. The utilities can be used to convert any HDF5 file to
+JSON or from a JSON file (using the convention described here to HDF5).
+
+The library is useful for any Python application that needs to translate between
+HDF5 objects and JSON serializations. In addition to the utilities provided in
+this repository, the library is used by HDF Server (a RESTful web service for
+HDF5), and HDF Product Designer (an application for creating product designs).
+
+WWW: https://github.com/HDFGroup/hdf5-json



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001261007.00QA7aTP039859>