From 5e501fa60d1d69bde48eea69195ad5e4a7e8be01 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Jun 2016 13:54:05 +0200 Subject: [PATCH 1/2] fftw: Add version 3.3.4 Just copy the bee file for 3.3.3-1, and remove blank lines. Change-log [1]: > ### FFTW 3.3.4 ### > > March 16, 2014 > > * New functions fftw_alignment_of (to check whether two arrays are > equally aligned for the purposes of applying a plan) and > fftw_sprint_plan (to output a description of plan to a string). > * Bugfix in fftw-wisdom-to-conf; thanks to Florian Oppermann for the > bug report. > * Fixed manual to work with texinfo-5. > * Increased timing interval on x86_64 to reduce timing errors. > * Default to Win32 threads, not pthreads, if both are present. > * Various build-script fixes. [1] http://www.fftw.org/release-notes.html --- fftw-3.3.4-0.bee | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 fftw-3.3.4-0.bee diff --git a/fftw-3.3.4-0.bee b/fftw-3.3.4-0.bee new file mode 100755 index 000000000..2884d3a55 --- /dev/null +++ b/fftw-3.3.4-0.bee @@ -0,0 +1,38 @@ +#!/usr/bin/env beesh + +SRCURL[0]="ftp://ftp.fftw.org/pub/fftw/fftw-${PKGVERSION}.tar.gz" + +PATCHURL[0]="" + +# BEE_CONFIGURE=compat + +# BEE_BUILDTYPE= + +# EXCLUDE="" + +# build_in_sourcedir + + + +#mee_extract() { +# bee_extract ${@} +#} + +#mee_patch() { +# bee_patch ${@} +#} + +mee_configure() { + bee_configure \ + --enable-threads \ + --with-pic +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + From 7ee4180f9d8af2d2fe313c64a68e168a232557c4 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Jun 2016 13:57:56 +0200 Subject: [PATCH 2/2] fftw-3.3.4: Run tests with `make check` --- fftw-3.3.4-0.bee | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fftw-3.3.4-0.bee b/fftw-3.3.4-0.bee index 2884d3a55..58ff00b2f 100755 --- a/fftw-3.3.4-0.bee +++ b/fftw-3.3.4-0.bee @@ -28,9 +28,10 @@ mee_configure() { --with-pic } -#mee_build() { -# bee_build -#} +mee_build() { + bee_build + make check +} #mee_install() { # bee_install