From owner-svn-ports-all@freebsd.org Fri Mar 10 01:28:27 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45234D05FB6; Fri, 10 Mar 2017 01:28:27 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id 1D3AD1EDD; Fri, 10 Mar 2017 01:28:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2A1SQdo063979; Fri, 10 Mar 2017 01:28:26 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2A1SPBr063975; Fri, 10 Mar 2017 01:28:25 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201703100128.v2A1SPBr063975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 10 Mar 2017 01:28:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435813 - in head/math: . py-PyWavelets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 10 Mar 2017 01:28:27 -0000 Author: wen Date: Fri Mar 10 01:28:25 2017 New Revision: 435813 URL: https://svnweb.freebsd.org/changeset/ports/435813 Log: PyWavelets is a free Open Source library for wavelet transforms in Python. Wavelets are mathematical basis functions that are localized in both time and frequency. Wavelet transforms are time-frequency transforms employing wavelets. They are similar to Fourier transforms, the difference being that Fourier transforms are localized only in frequency instead of in time and frequency. WWW: https://github.com/PyWavelets/pywt PR: 217426 Submitted by: eric@camachat.org Added: head/math/py-PyWavelets/ head/math/py-PyWavelets/Makefile (contents, props changed) head/math/py-PyWavelets/distinfo (contents, props changed) head/math/py-PyWavelets/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Mar 10 00:48:35 2017 (r435812) +++ head/math/Makefile Fri Mar 10 01:28:25 2017 (r435813) @@ -582,6 +582,7 @@ SUBDIR += pspp SUBDIR += pure-mpfr SUBDIR += pure-rational + SUBDIR += py-PyWavelets SUBDIR += py-altgraph SUBDIR += py-apgl SUBDIR += py-basemap Added: head/math/py-PyWavelets/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PyWavelets/Makefile Fri Mar 10 01:28:25 2017 (r435813) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= PyWavelets +PORTVERSION= 0.5.1 +DISTVERSIONPREFIX= v +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pywt + +MAINTAINER= eric@camachat.org +COMMENT= Discrete Wavelet Transforms in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${PYNUMPY} \ + cython:lang/cython \ + ${PYTHON_PKGNAMEPREFIX}pillow>=1.7:graphics/py-pillow +RUN_DEPENDS= ${PYNUMPY} \ + cython:lang/cython \ + ${PYTHON_PKGNAMEPREFIX}pillow>=1.7:graphics/py-pillow + +USE_GITHUB= yes +GH_PROJECT= ${DISTNAME} + +USES= cpe python +USE_PYTHON= autoplist distutils + +PYDISTUTILS_BUILD_TARGET= build build_ext +PYDISTUTILS_BUILDARGS+= saveopts + +.include Added: head/math/py-PyWavelets/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PyWavelets/distinfo Fri Mar 10 01:28:25 2017 (r435813) @@ -0,0 +1,3 @@ +TIMESTAMP = 1489108516 +SHA256 (pywt_GH0.tar.gz) = dc912325b4752b83303af31925450efb795ec81d6aed1317613f7d5a634c0b50 +SIZE (pywt_GH0.tar.gz) = 3865431 Added: head/math/py-PyWavelets/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PyWavelets/pkg-descr Fri Mar 10 01:28:25 2017 (r435813) @@ -0,0 +1,7 @@ +PyWavelets is a free Open Source library for wavelet transforms in Python. +Wavelets are mathematical basis functions that are localized in both time and +frequency. Wavelet transforms are time-frequency transforms employing wavelets. +They are similar to Fourier transforms, the difference being that Fourier +transforms are localized only in frequency instead of in time and frequency. + +WWW: https://github.com/PyWavelets/pywt