From owner-svn-ports-all@freebsd.org Sat May 25 22:02:29 2019 Return-Path: Delivered-To: svn-ports-all@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 1501215B7984; Sat, 25 May 2019 22:02:29 +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 AA58A8B418; Sat, 25 May 2019 22:02:28 +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 841E6A69F; Sat, 25 May 2019 22:02:28 +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 x4PM2SBJ024393; Sat, 25 May 2019 22:02:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4PM2Rrc024386; Sat, 25 May 2019 22:02:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201905252202.x4PM2Rrc024386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 25 May 2019 22:02:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502637 - in head/science: . py-eccodes-python X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/science: . py-eccodes-python X-SVN-Commit-Revision: 502637 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AA58A8B418 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 25 May 2019 22:02:29 -0000 Author: sunpoet Date: Sat May 25 22:02:27 2019 New Revision: 502637 URL: https://svnweb.freebsd.org/changeset/ports/502637 Log: Add py-eccodes-python 0.9.0 Python 3 interface to encode and decode GRIB and BUFR files via the ECMWF ecCodes library. Features: - reads and writes GRIB 1 and 2 files, - reads and writes BUFR 3 and 4 files, - supports all modern versions of Python 3.7, 3.6, 3.5 and PyPy3, - works on most Linux distributions and MacOS, the ecCodes C-library is the only system dependency, - PyPI package with no install time build (binds with CFFI ABI level, in-line mode), - supports writing the index of a GRIB file to disk, to save a full-file scan on open. WWW: https://github.com/ecmwf/eccodes-python Added: head/science/py-eccodes-python/ head/science/py-eccodes-python/Makefile (contents, props changed) head/science/py-eccodes-python/distinfo (contents, props changed) head/science/py-eccodes-python/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sat May 25 21:39:05 2019 (r502636) +++ head/science/Makefile Sat May 25 22:02:27 2019 (r502637) @@ -231,6 +231,7 @@ SUBDIR += py-chempy SUBDIR += py-coards SUBDIR += py-dlib + SUBDIR += py-eccodes-python SUBDIR += py-geometer SUBDIR += py-gpaw SUBDIR += py-gsd Added: head/science/py-eccodes-python/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-eccodes-python/Makefile Sat May 25 22:02:27 2019 (r502637) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= eccodes-python +PORTVERSION= 0.9.0 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python interface to the ecCodes BUFR and GRIB de/encoder + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libeccodes.so:science/eccodes +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cffi>=0:devel/py-cffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=0:math/py-numpy@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist distutils + +.include Added: head/science/py-eccodes-python/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-eccodes-python/distinfo Sat May 25 22:02:27 2019 (r502637) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558773288 +SHA256 (eccodes-python-0.9.0.tar.gz) = ff8c46d82ce1340ee673871b5f45118ac5c95083631e0927082b59d1e701cf6b +SIZE (eccodes-python-0.9.0.tar.gz) = 2286896 Added: head/science/py-eccodes-python/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-eccodes-python/pkg-descr Sat May 25 22:02:27 2019 (r502637) @@ -0,0 +1,15 @@ +Python 3 interface to encode and decode GRIB and BUFR files via the ECMWF +ecCodes library. + +Features: +- reads and writes GRIB 1 and 2 files, +- reads and writes BUFR 3 and 4 files, +- supports all modern versions of Python 3.7, 3.6, 3.5 and PyPy3, +- works on most Linux distributions and MacOS, the ecCodes C-library is the only + system dependency, +- PyPI package with no install time build (binds with CFFI ABI level, in-line + mode), +- supports writing the index of a GRIB file to disk, to save a full-file scan on + open. + +WWW: https://github.com/ecmwf/eccodes-python