From owner-svn-ports-head@freebsd.org Sun Aug 2 18:07:44 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 88FDA3A4194; Sun, 2 Aug 2020 18:07:44 +0000 (UTC) (envelope-from fernape@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 4BKTWh36T9z3Vyn; Sun, 2 Aug 2020 18:07:44 +0000 (UTC) (envelope-from fernape@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 4E4652755B; Sun, 2 Aug 2020 18:07:44 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 072I7iCV059650; Sun, 2 Aug 2020 18:07:44 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 072I7hJW059648; Sun, 2 Aug 2020 18:07:43 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <202008021807.072I7hJW059648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Sun, 2 Aug 2020 18:07:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543986 - head/math/nfft X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/math/nfft X-SVN-Commit-Revision: 543986 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.33 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, 02 Aug 2020 18:07:44 -0000 Author: fernape Date: Sun Aug 2 18:07:43 2020 New Revision: 543986 URL: https://svnweb.freebsd.org/changeset/ports/543986 Log: math/nfft: Update to 3.5.1 From Changelog: https://github.com/NFFT/nfft/blob/develop/ChangeLog * Fix Build of fastsum failing because fftw_libs are not found * Update m4 files * Remove superfluous calls to autoreconf in bootstrap * Add Julia Interface fastsum * Even bandwidth in NFCT and NFST * Compute NFFT_EPSILON at runtime * In-place fftw for dimension >1 (reduce memory consumption) * Improve check if tests are executed in Matlab or Octave * Fix build with Octave 5.1.0 in Windows * Fix FFTW3 Linking problem while building * Remove unnecessary dependence on ncurses library * Add Julia Interface for NFCT, NFST * FSFT: Spherical Fourier transform with equidistant nodes * Inverse NFFT via frame approach * _Complex is not supported by some compilers * Extend NFFT Matlab interface to d>4 * Faster NFFT in 4D and 5D * Add support for higher bandwidth in NFSFT and improve parallelization * fastsum: Skip nearfield (pre-)computations when eps_I is zero * Add NFSOFT Matlab class * Add Mex interface for FPT * OpenMP parallelization of NFSOFT * Add NFFT Julia interface * Add Latex for target `dist` in Travis * Fix `ABS_SRCDIR` might return a wrong path * Fix infft1d missing in release * Solve compatibility problem with MATLAB 2018a * Fix wrong libs flag when compiling for Octave and non-combined fftw3_threads * Add bash script to build statically linked libs in Windows * Add Octave tests * Add NFSFT Matlab class PR: 248078 Submitted by: marcel@herrbischoff.com Modified: head/math/nfft/Makefile head/math/nfft/distinfo head/math/nfft/pkg-plist Modified: head/math/nfft/Makefile ============================================================================== --- head/math/nfft/Makefile Sun Aug 2 18:03:59 2020 (r543985) +++ head/math/nfft/Makefile Sun Aug 2 18:07:43 2020 (r543986) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= nfft -PORTVERSION= 3.4.1 -PORTREVISION= 1 +PORTVERSION= 3.5.1 CATEGORIES= math MAINTAINER= ports@FreeBSD.org @@ -10,26 +9,26 @@ COMMENT= Nonequispaced fast Fourier transform LICENSE= GPLv2 -LIB_DEPENDS= libfftw3.so:math/fftw3 BUILD_DEPENDS= bash:shells/bash +LIB_DEPENDS= libfftw3.so:math/fftw3 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-fftw3=${PREFIX} USES= autoreconf libtool -USE_LDCONFIG= yes -TEST_TARGET= check - USE_GITHUB= yes GH_ACCOUNT= NFFT +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-fftw3=${PREFIX} + +INSTALL_TARGET= install-strip +TEST_TARGET= check + OPTIONS_DEFINE= DOCS DOXYGEN OPTIONS_SUB= yes DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen DOXYGEN_ALL_TARGET= all doc DOXYGEN_IMPLIES= DOCS - -INSTALL_TARGET=install-strip .include Modified: head/math/nfft/distinfo ============================================================================== --- head/math/nfft/distinfo Sun Aug 2 18:03:59 2020 (r543985) +++ head/math/nfft/distinfo Sun Aug 2 18:07:43 2020 (r543986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1532436171 -SHA256 (NFFT-nfft-3.4.1_GH0.tar.gz) = 4e05a7b74abf5073e0c9c54b4692961c43399479676587206cf67f713464f73c -SIZE (NFFT-nfft-3.4.1_GH0.tar.gz) = 1806033 +TIMESTAMP = 1595102661 +SHA256 (NFFT-nfft-3.5.1_GH0.tar.gz) = 8d53164d7cd85ad77e1bd03e36c4a99ef73c77f640e527db816cdc3fcb43d6aa +SIZE (NFFT-nfft-3.5.1_GH0.tar.gz) = 1865010 Modified: head/math/nfft/pkg-plist ============================================================================== --- head/math/nfft/pkg-plist Sun Aug 2 18:03:59 2020 (r543985) +++ head/math/nfft/pkg-plist Sun Aug 2 18:07:43 2020 (r543986) @@ -2,8 +2,8 @@ include/nfft3.h include/nfft3mp.h lib/libnfft3.a lib/libnfft3.so -lib/libnfft3.so.2 -lib/libnfft3.so.2.1.0 +lib/libnfft3.so.4 +lib/libnfft3.so.4.0.1 libdata/pkgconfig/nfft3.pc %%DOXYGEN%%%%PORTDOCS%%%%DOCSDIR%%/html/accuracy_8c_source.html %%DOXYGEN%%%%PORTDOCS%%%%DOCSDIR%%/html/annotated.html