diff options
Diffstat (limited to 'extra/hdf5')
-rw-r--r-- | extra/hdf5/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/hdf5/mpi.patch | 18 |
2 files changed, 3 insertions, 21 deletions
diff --git a/extra/hdf5/PKGBUILD b/extra/hdf5/PKGBUILD index 2370ae917..176260962 100644 --- a/extra/hdf5/PKGBUILD +++ b/extra/hdf5/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 185120 2013-05-11 09:31:27Z ronald $ +# $Id: PKGBUILD 196801 2013-10-19 13:44:23Z bpiotrowski $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> # Contributor: damir <damir@archlinux.org> # Contributor: Tom K <tomk@runbox.com> pkgname=hdf5 -pkgver=1.8.10_patch1 +pkgver=1.8.11 pkgrel=1 arch=('i686' 'x86_64') pkgdesc="General purpose library and file format for storing scientific data" @@ -15,7 +15,7 @@ depends=('zlib' 'sh') makedepends=('time') source=(ftp://ftp.hdfgroup.org/HDF5/current/src/${pkgname}-${pkgver/_/-}.tar.bz2) options=('!libtool') -sha1sums=('458cb91496e313debd55d52a7f89459a5469cceb') +sha1sums=('87ded0894b104cf23a4b965f4ac0a567f8612e5e') build() { cd $srcdir/${pkgname}-${pkgver/_/-} diff --git a/extra/hdf5/mpi.patch b/extra/hdf5/mpi.patch deleted file mode 100644 index 4fadc13e2..000000000 --- a/extra/hdf5/mpi.patch +++ /dev/null @@ -1,18 +0,0 @@ -Prevent accidental inclusion of mpi c++ headers -when hdf5.h is included third party library - -https://bugs.gentoo.org/show_bug.cgi?id=420777 -https://bugs.archlinux.org/task/33343 - ---- a/src/H5public.h -+++ b/src/H5public.h -@@ -58,6 +58,8 @@ - # include <stddef.h> - #endif - #ifdef H5_HAVE_PARALLEL -+# define OMPI_SKIP_MPICXX /* Make sure that cxx specific headers are not included */ -+# define MPICH_SKIP_MPICXX - # include <mpi.h> - #ifndef MPI_FILE_NULL /*MPIO may be defined in mpi.h already */ - # include <mpio.h> - |