From owner-svn-ports-head@freebsd.org Sun Nov 8 00:27:19 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EB4E02D6A76; Sun, 8 Nov 2020 00:27:19 +0000 (UTC) (envelope-from yuri@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CTFLv66ZSz4V7J; Sun, 8 Nov 2020 00:27:19 +0000 (UTC) (envelope-from yuri@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 BFDEF17326; Sun, 8 Nov 2020 00:27:19 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0A80RJIc072434; Sun, 8 Nov 2020 00:27:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0A80RIpd072429; Sun, 8 Nov 2020 00:27:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011080027.0A80RIpd072429@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 8 Nov 2020 00:27:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554430 - in head/science: . segyio X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . segyio X-SVN-Commit-Revision: 554430 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 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: Sun, 08 Nov 2020 00:27:20 -0000 Author: yuri Date: Sun Nov 8 00:27:18 2020 New Revision: 554430 URL: https://svnweb.freebsd.org/changeset/ports/554430 Log: New port: science/segyio: Library to interact with SEG-Y & Seismic Unix formatted seismic data Added: head/science/segyio/ head/science/segyio/Makefile (contents, props changed) head/science/segyio/distinfo (contents, props changed) head/science/segyio/pkg-descr (contents, props changed) head/science/segyio/pkg-plist (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Nov 8 00:20:52 2020 (r554429) +++ head/science/Makefile Sun Nov 8 00:27:18 2020 (r554430) @@ -307,6 +307,7 @@ SUBDIR += rubygem-ruby-dcl SUBDIR += rubygem-ruby-netcdf SUBDIR += scidavis + SUBDIR += segyio SUBDIR += siesta SUBDIR += sigrok-cli SUBDIR += sigrok-firmware Added: head/science/segyio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/segyio/Makefile Sun Nov 8 00:27:18 2020 (r554430) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= segyio +DISTVERSION= 1.9.3 +CATEGORIES= science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library to interact with SEG-Y & Seismic Unix formatted seismic data + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/License.md + +USES= cmake +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= equinor + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= BUILD_PYTHON + +.include Added: head/science/segyio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/segyio/distinfo Sun Nov 8 00:27:18 2020 (r554430) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604794877 +SHA256 (equinor-segyio-1.9.3_GH0.tar.gz) = 4692463c8f37cb0010f6368c765b63ede5232e11c330529d1bc9f977902409a6 +SIZE (equinor-segyio-1.9.3_GH0.tar.gz) = 3873797 Added: head/science/segyio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/segyio/pkg-descr Sun Nov 8 00:27:18 2020 (r554430) @@ -0,0 +1,7 @@ +Segyio is a small LGPL licensed C library for easy interaction with SEG-Y and +Seismic Unix formatted seismic data, with language bindings for Python and +Matlab. Segyio is an attempt to create an easy-to-use, embeddable, +community-oriented library for seismic applications. Features are added as they +are needed; suggestions and contributions of all kinds are very welcome. + +WWW: https://github.com/equinor/segyio Added: head/science/segyio/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/segyio/pkg-plist Sun Nov 8 00:27:18 2020 (r554430) @@ -0,0 +1,13 @@ +bin/segyio-catb +bin/segyio-cath +bin/segyio-catr +bin/segyio-crop +include/segyio/segy.h +lib/libsegyio.so +lib/libsegyio.so.0 +man/man1/segyio-catb.1.gz +man/man1/segyio-cath.1.gz +man/man1/segyio-catr.1.gz +man/man1/segyio-crop.1.gz +%%DATADIR%%/cmake/segyio-config-%%CMAKE_BUILD_TYPE%%.cmake +%%DATADIR%%/cmake/segyio-config.cmake