From owner-svn-ports-head@freebsd.org Thu Jan 17 19:21:27 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C4F514A3681; Thu, 17 Jan 2019 19:21:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25F1377058; Thu, 17 Jan 2019 19:21:27 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B52A01EADE; Thu, 17 Jan 2019 19:21:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0HJLQ5N009262; Thu, 17 Jan 2019 19:21:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0HJLPrG008349; Thu, 17 Jan 2019 19:21:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201901171921.x0HJLPrG008349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 17 Jan 2019 19:21:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490586 - in head/science: . py-asdf X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/science: . py-asdf X-SVN-Commit-Revision: 490586 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 25F1377058 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2019 19:21:27 -0000 Author: sunpoet Date: Thu Jan 17 19:21:25 2019 New Revision: 490586 URL: https://svnweb.freebsd.org/changeset/ports/490586 Log: Add py-asdf 2.3.1 The Advanced Scientific Data Format (ASDF) is a next-generation interchange format for scientific data. This package contains the Python implementation of the ASDF Standard. The ASDF format has the following features: - A hierarchical, human-readable metadata format (implemented using YAML) - Numerical arrays are stored as binary data blocks which can be memory mapped. Data blocks can optionally be compressed. - The structure of the data can be automatically validated using schemas (implemented using JSON Schema) - Native Python data types (numerical types, strings, dicts, lists) are serialized automatically - ASDF can be extended to serialize custom data types WWW: https://github.com/spacetelescope/asdf Added: head/science/py-asdf/ head/science/py-asdf/Makefile (contents, props changed) head/science/py-asdf/distinfo (contents, props changed) head/science/py-asdf/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Thu Jan 17 19:21:19 2019 (r490585) +++ head/science/Makefile Thu Jan 17 19:21:25 2019 (r490586) @@ -218,6 +218,7 @@ SUBDIR += py-ScientificPython SUBDIR += py-SimpleSpectral SUBDIR += py-abipy + SUBDIR += py-asdf SUBDIR += py-ase SUBDIR += py-avogadrolibs SUBDIR += py-cdo Added: head/science/py-asdf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-asdf/Makefile Thu Jan 17 19:21:25 2019 (r490586) @@ -0,0 +1,28 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= asdf +PORTVERSION= 2.3.1 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python tools to handle ASDF files + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/licenses/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonschema>=2.3:devel/py-jsonschema@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lz4>=0.10:archivers/py-lz4@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.8:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}semantic_version>=2.3.1:devel/py-semantic_version@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR} + +USES= python:3.3+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/science/py-asdf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-asdf/distinfo Thu Jan 17 19:21:25 2019 (r490586) @@ -0,0 +1,3 @@ +TIMESTAMP = 1547699123 +SHA256 (asdf-2.3.1.tar.gz) = deea56c2c685e56802bfd328f9df9a60b4d209774251c4166a2605b4ad023697 +SIZE (asdf-2.3.1.tar.gz) = 577885 Added: head/science/py-asdf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-asdf/pkg-descr Thu Jan 17 19:21:25 2019 (r490586) @@ -0,0 +1,15 @@ +The Advanced Scientific Data Format (ASDF) is a next-generation interchange +format for scientific data. This package contains the Python implementation of +the ASDF Standard. + +The ASDF format has the following features: +- A hierarchical, human-readable metadata format (implemented using YAML) +- Numerical arrays are stored as binary data blocks which can be memory mapped. + Data blocks can optionally be compressed. +- The structure of the data can be automatically validated using schemas + (implemented using JSON Schema) +- Native Python data types (numerical types, strings, dicts, lists) are + serialized automatically +- ASDF can be extended to serialize custom data types + +WWW: https://github.com/spacetelescope/asdf