[arch-commits] Commit in fftw/repos (8 files)

Ronald van Haren ronald at archlinux.org
Sun May 20 10:35:51 UTC 2012


    Date: Sunday, May 20, 2012 @ 06:35:50
  Author: ronald
Revision: 159277

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  fftw/repos/extra-i686/PKGBUILD
    (from rev 159276, fftw/trunk/PKGBUILD)
  fftw/repos/extra-i686/fftw.install
    (from rev 159276, fftw/trunk/fftw.install)
  fftw/repos/extra-x86_64/PKGBUILD
    (from rev 159276, fftw/trunk/PKGBUILD)
  fftw/repos/extra-x86_64/fftw.install
    (from rev 159276, fftw/trunk/fftw.install)
Deleted:
  fftw/repos/extra-i686/PKGBUILD
  fftw/repos/extra-i686/fftw.install
  fftw/repos/extra-x86_64/PKGBUILD
  fftw/repos/extra-x86_64/fftw.install

---------------------------+
 extra-i686/PKGBUILD       |  100 ++++++++++++++++++++++----------------------
 extra-i686/fftw.install   |   44 +++++++++----------
 extra-x86_64/PKGBUILD     |  100 ++++++++++++++++++++++----------------------
 extra-x86_64/fftw.install |   44 +++++++++----------
 4 files changed, 144 insertions(+), 144 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-05-20 10:35:16 UTC (rev 159276)
+++ extra-i686/PKGBUILD	2012-05-20 10:35:50 UTC (rev 159277)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=fftw
-pkgver=3.3.1
-pkgrel=1
-pkgdesc="A library for computing the discrete Fourier transform (DFT)"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.fftw.org/"
-depends=('glibc' 'bash')
-makedepends=('gcc-fortran')
-options=('!libtool')
-source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
-install=fftw.install
-sha1sums=('3fecc492f576503a6a509d2073bd82b3fe0aef13')
-
-# notes:
-# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
-# http://www.fftw.org/faq/section2.html#singleprec
-# http://www.fftw.org/fftw3_doc/Precision.html#Precision
-
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # use upstream default CFLAGS while keeping our -march/-mtune
-  CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
-
-  CONFIGURE="./configure F77=gfortran --prefix=/usr \
-                 --enable-shared --enable-threads"
-
-  # build & install double precision
-  $CONFIGURE --enable-sse2
-  make
-  make DESTDIR=${pkgdir} install
-  make clean 
-
-  # build & install long double precission
-  $CONFIGURE --enable-long-double
-  make
-  make DESTDIR=${pkgdir} install
-  make clean
-
-  # build & install single precision
-  $CONFIGURE --enable-float --enable-sse
-  make
-  make DESTDIR=${pkgdir} install
-}

Copied: fftw/repos/extra-i686/PKGBUILD (from rev 159276, fftw/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-05-20 10:35:50 UTC (rev 159277)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=fftw
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="A library for computing the discrete Fourier transform (DFT)"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.fftw.org/"
+depends=('glibc' 'bash')
+makedepends=('gcc-fortran')
+options=('!libtool')
+source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
+install=fftw.install
+sha1sums=('11a8c31186ff5a7d686a79a3f21b2530888e0dc2')
+
+# notes:
+# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
+# http://www.fftw.org/faq/section2.html#singleprec
+# http://www.fftw.org/fftw3_doc/Precision.html#Precision
+
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # use upstream default CFLAGS while keeping our -march/-mtune
+  CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
+
+  CONFIGURE="./configure F77=gfortran --prefix=/usr \
+                 --enable-shared --enable-threads --enable-type-prefix"
+
+  # build & install double precision
+  $CONFIGURE --enable-sse2
+  make
+  make DESTDIR=${pkgdir} install
+  make clean 
+
+  # build & install long double precission
+  $CONFIGURE --enable-long-double
+  make
+  make DESTDIR=${pkgdir} install
+  make clean
+
+  # build & install single precision
+  $CONFIGURE --enable-float --enable-sse
+  make
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/fftw.install
===================================================================
--- extra-i686/fftw.install	2012-05-20 10:35:16 UTC (rev 159276)
+++ extra-i686/fftw.install	2012-05-20 10:35:50 UTC (rev 159277)
@@ -1,22 +0,0 @@
-info_dir=/usr/share/info
-info_files=(fftw3.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-        post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-
-
-

Copied: fftw/repos/extra-i686/fftw.install (from rev 159276, fftw/trunk/fftw.install)
===================================================================
--- extra-i686/fftw.install	                        (rev 0)
+++ extra-i686/fftw.install	2012-05-20 10:35:50 UTC (rev 159277)
@@ -0,0 +1,22 @@
+info_dir=/usr/share/info
+info_files=(fftw3.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+        post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+
+
+

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-05-20 10:35:16 UTC (rev 159276)
+++ extra-x86_64/PKGBUILD	2012-05-20 10:35:50 UTC (rev 159277)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=fftw
-pkgver=3.3.1
-pkgrel=1
-pkgdesc="A library for computing the discrete Fourier transform (DFT)"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.fftw.org/"
-depends=('glibc' 'bash')
-makedepends=('gcc-fortran')
-options=('!libtool')
-source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
-install=fftw.install
-sha1sums=('3fecc492f576503a6a509d2073bd82b3fe0aef13')
-
-# notes:
-# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
-# http://www.fftw.org/faq/section2.html#singleprec
-# http://www.fftw.org/fftw3_doc/Precision.html#Precision
-
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # use upstream default CFLAGS while keeping our -march/-mtune
-  CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
-
-  CONFIGURE="./configure F77=gfortran --prefix=/usr \
-                 --enable-shared --enable-threads"
-
-  # build & install double precision
-  $CONFIGURE --enable-sse2
-  make
-  make DESTDIR=${pkgdir} install
-  make clean 
-
-  # build & install long double precission
-  $CONFIGURE --enable-long-double
-  make
-  make DESTDIR=${pkgdir} install
-  make clean
-
-  # build & install single precision
-  $CONFIGURE --enable-float --enable-sse
-  make
-  make DESTDIR=${pkgdir} install
-}

Copied: fftw/repos/extra-x86_64/PKGBUILD (from rev 159276, fftw/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-05-20 10:35:50 UTC (rev 159277)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=fftw
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="A library for computing the discrete Fourier transform (DFT)"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.fftw.org/"
+depends=('glibc' 'bash')
+makedepends=('gcc-fortran')
+options=('!libtool')
+source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
+install=fftw.install
+sha1sums=('11a8c31186ff5a7d686a79a3f21b2530888e0dc2')
+
+# notes:
+# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
+# http://www.fftw.org/faq/section2.html#singleprec
+# http://www.fftw.org/fftw3_doc/Precision.html#Precision
+
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # use upstream default CFLAGS while keeping our -march/-mtune
+  CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
+
+  CONFIGURE="./configure F77=gfortran --prefix=/usr \
+                 --enable-shared --enable-threads --enable-type-prefix"
+
+  # build & install double precision
+  $CONFIGURE --enable-sse2
+  make
+  make DESTDIR=${pkgdir} install
+  make clean 
+
+  # build & install long double precission
+  $CONFIGURE --enable-long-double
+  make
+  make DESTDIR=${pkgdir} install
+  make clean
+
+  # build & install single precision
+  $CONFIGURE --enable-float --enable-sse
+  make
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/fftw.install
===================================================================
--- extra-x86_64/fftw.install	2012-05-20 10:35:16 UTC (rev 159276)
+++ extra-x86_64/fftw.install	2012-05-20 10:35:50 UTC (rev 159277)
@@ -1,22 +0,0 @@
-info_dir=/usr/share/info
-info_files=(fftw3.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-        post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-
-
-

Copied: fftw/repos/extra-x86_64/fftw.install (from rev 159276, fftw/trunk/fftw.install)
===================================================================
--- extra-x86_64/fftw.install	                        (rev 0)
+++ extra-x86_64/fftw.install	2012-05-20 10:35:50 UTC (rev 159277)
@@ -0,0 +1,22 @@
+info_dir=/usr/share/info
+info_files=(fftw3.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+        post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+
+
+




More information about the arch-commits mailing list