Date: Fri, 10 Mar 2017 10:00:30 +0800 From: Martin Wilke <miwi.fbsd@gmail.com> To: Wen Heping <wen@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r435813 - in head/math: . py-PyWavelets Message-ID: <FF0FABDF-77C8-47A4-83D2-77CFB0CB85E1@gmail.com> In-Reply-To: <201703100128.v2A1SPBr063975@repo.freebsd.org> References: <201703100128.v2A1SPBr063975@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi Wen, Would you please rename the port to follow the py policy [1]. https://wiki.freebsd.org/Python/PortsPolicy = <https://wiki.freebsd.org/Python/PortsPolicy> Thanks. > On 10 Mar 2017, at 9:28 AM, Wen Heping <wen@FreeBSD.org> wrote: >=20 > Author: wen > Date: Fri Mar 10 01:28:25 2017 > New Revision: 435813 > URL: https://svnweb.freebsd.org/changeset/ports/435813 >=20 > 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. >=20 > WWW: https://github.com/PyWavelets/pywt >=20 > PR: 217426 > Submitted by: eric@camachat.org >=20 > 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 >=20 > Modified: head/math/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- 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 +=3D pspp > SUBDIR +=3D pure-mpfr > SUBDIR +=3D pure-rational > + SUBDIR +=3D py-PyWavelets > SUBDIR +=3D py-altgraph > SUBDIR +=3D py-apgl > SUBDIR +=3D py-basemap >=20 > Added: head/math/py-PyWavelets/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /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=3D PyWavelets > +PORTVERSION=3D 0.5.1 > +DISTVERSIONPREFIX=3D v > +CATEGORIES=3D math python > +PKGNAMEPREFIX=3D ${PYTHON_PKGNAMEPREFIX} > +DISTNAME=3D pywt > + > +MAINTAINER=3D eric@camachat.org > +COMMENT=3D Discrete Wavelet Transforms in Python > + > +LICENSE=3D MIT > +LICENSE_FILE=3D ${WRKSRC}/COPYING > + > +BUILD_DEPENDS=3D ${PYNUMPY} \ > + cython:lang/cython \ > + ${PYTHON_PKGNAMEPREFIX}pillow>=3D1.7:graphics/py-pillow > +RUN_DEPENDS=3D ${PYNUMPY} \ > + cython:lang/cython \ > + ${PYTHON_PKGNAMEPREFIX}pillow>=3D1.7:graphics/py-pillow > + > +USE_GITHUB=3D yes > +GH_PROJECT=3D ${DISTNAME} > + > +USES=3D cpe python > +USE_PYTHON=3D autoplist distutils > + > +PYDISTUTILS_BUILD_TARGET=3D build build_ext > +PYDISTUTILS_BUILDARGS+=3D saveopts > + > +.include <bsd.port.mk> >=20 > Added: head/math/py-PyWavelets/distinfo > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /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 =3D 1489108516 > +SHA256 (pywt_GH0.tar.gz) =3D = dc912325b4752b83303af31925450efb795ec81d6aed1317613f7d5a634c0b50 > +SIZE (pywt_GH0.tar.gz) =3D 3865431 >=20 > Added: head/math/py-PyWavelets/pkg-descr > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /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 >=20
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?FF0FABDF-77C8-47A4-83D2-77CFB0CB85E1>