From owner-svn-ports-head@freebsd.org Thu Jun 21 02:59:08 2018 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 7072510217BF; Thu, 21 Jun 2018 02:59:08 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EA1F82C91; Thu, 21 Jun 2018 02:59:08 +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 F3CAF3C15; Thu, 21 Jun 2018 02:59:07 +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 w5L2x7T9087642; Thu, 21 Jun 2018 02:59:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L2x7EC087638; Thu, 21 Jun 2018 02:59:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210259.w5L2x7EC087638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 02:59:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472948 - in head/math: . py-spectral X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-spectral X-SVN-Commit-Revision: 472948 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.26 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, 21 Jun 2018 02:59:08 -0000 Author: yuri Date: Thu Jun 21 02:59:06 2018 New Revision: 472948 URL: https://svnweb.freebsd.org/changeset/ports/472948 Log: New port: math/py-spectral: Spectral Python (SPy) is a Python module for hyperspectral image processing Added: head/math/py-spectral/ head/math/py-spectral/Makefile (contents, props changed) head/math/py-spectral/distinfo (contents, props changed) head/math/py-spectral/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jun 21 00:20:42 2018 (r472947) +++ head/math/Makefile Thu Jun 21 02:59:06 2018 (r472948) @@ -719,6 +719,7 @@ SUBDIR += py-seaborn SUBDIR += py-secp256k1 SUBDIR += py-simhash + SUBDIR += py-spectral SUBDIR += py-statsmodels SUBDIR += py-svgmath SUBDIR += py-sym Added: head/math/py-spectral/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/Makefile Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= spectral +DISTVERSION= 0.19 +CATEGORIES= math +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Spectral Python (SPy) is a Python module for hyperspectral image processing + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-spectral/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/distinfo Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529549527 +SHA256 (spectral-0.19.tar.gz) = b8d5dc9e2e36d45d1f55bf95528a63d7a95dd049857c98f86d400a3f0c7c86f1 +SIZE (spectral-0.19.tar.gz) = 141565 Added: head/math/py-spectral/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/pkg-descr Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,12 @@ +Spectral Python (SPy) is a pure Python module for processing hyperspectral +image data. It has functions for reading, displaying, manipulating, and +classifying hyperspectral imagery. It can be used interactively from the Python +command prompt or via Python scripts. SPy is free, open source software +distributed under the GNU General Public License. To see some examples of how +SPy can be used, you may want to jump straight to the documentation sections +on Displaying Data or Spectral Algorithms. A categorized listing of the main +classes and functions are in the Class/Function Glossary. You can download SPy +from GitHub or the Python Package Index (PyPI). See the Installing SPy section +section of the documentation for details. + +WWW: http://www.spectralpython.net/