summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2010-06-20 11:45:06 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2010-06-20 11:45:06 +0000
commit0ad91106aeef7babc483f0abc9d5c0acd86aa88c (patch)
treefa613227233a13048380093177831c8f0033151b /sci-libs/hdf5/files
parentclean up (diff)
downloadgentoo-2-0ad91106aeef7babc483f0abc9d5c0acd86aa88c.tar.gz
gentoo-2-0ad91106aeef7babc483f0abc9d5c0acd86aa88c.tar.bz2
gentoo-2-0ad91106aeef7babc483f0abc9d5c0acd86aa88c.zip
Removing old ebuild and obsolete patches
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/hdf5/files')
-rw-r--r--sci-libs/hdf5/files/hdf5-1.6.6-gcc4.3.patch11
-rw-r--r--sci-libs/hdf5/files/hdf5-gcc4.3.3-fix.patch11
-rw-r--r--sci-libs/hdf5/files/hdf5-mpich2.patch17
3 files changed, 0 insertions, 39 deletions
diff --git a/sci-libs/hdf5/files/hdf5-1.6.6-gcc4.3.patch b/sci-libs/hdf5/files/hdf5-1.6.6-gcc4.3.patch
deleted file mode 100644
index f7a55898eedc..000000000000
--- a/sci-libs/hdf5/files/hdf5-1.6.6-gcc4.3.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur hdf5-1.6.6/c++/src/H5PropList.cpp hdf5-1.6.6.new/c++/src/H5PropList.cpp
---- hdf5-1.6.6/c++/src/H5PropList.cpp 2007-08-16 12:12:26.000000000 -0400
-+++ hdf5-1.6.6.new/c++/src/H5PropList.cpp 2008-06-22 06:32:28.000000000 -0400
-@@ -18,6 +18,7 @@
- #else
- #include <iostream>
- #endif
-+#include <stdlib.h>
- #include <string>
-
- #include "H5Include.h"
diff --git a/sci-libs/hdf5/files/hdf5-gcc4.3.3-fix.patch b/sci-libs/hdf5/files/hdf5-gcc4.3.3-fix.patch
deleted file mode 100644
index 5c5de019aaaf..000000000000
--- a/sci-libs/hdf5/files/hdf5-gcc4.3.3-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- hdf5-1.6.7/perform/zip_perf.c 2008-01-31 21:04:10.000000000 -0600
-+++ hdf5-1.6.7.new/perform/zip_perf.c 2009-02-01 22:08:48.532069100 -0600
-@@ -546,7 +546,7 @@
- unlink(filename);
-
- /* do compressed data write */
-- output = open(filename, O_RDWR | O_CREAT);
-+ output = open(filename, O_RDWR | O_CREAT, S_IRWXU);
-
- if (output == -1)
- error(strerror(errno));
diff --git a/sci-libs/hdf5/files/hdf5-mpich2.patch b/sci-libs/hdf5/files/hdf5-mpich2.patch
deleted file mode 100644
index 3ed60bf264b0..000000000000
--- a/sci-libs/hdf5/files/hdf5-mpich2.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- config/mpich.orig 2005-10-26 13:31:41.000000000 -0700
-+++ config/mpich 2007-11-04 15:46:53.000000000 -0800
-@@ -31,11 +31,13 @@
- # $CC is an MPICH compiler. Grab the version numbers.
- ccversion=`echo $ccversion | cut -f3 -d' '`
- case "$ccversion" in
-- 1.2.[0-5]*)
-+ # modified for mpich2 versioning
-+ 1.0.[0-5]*)
- hdf5_mpi_complex_derived_datatype_works='no'
- ;;
- *)
- # assume okay
-+ hdf5_mpi_complex_derived_datatype_works='yes'
- ;;
- esac
- fi