diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-22 03:22:00 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-22 03:22:00 +0000 |
commit | 51e4124bba7b1c37f172d4c83696dfee9db08a46 (patch) | |
tree | 4d240f0b89d46e4b7785b39895330a57cea61c10 /dev-python/numpy/files | |
parent | Remove unused patch. (diff) | |
download | historical-51e4124bba7b1c37f172d4c83696dfee9db08a46.tar.gz historical-51e4124bba7b1c37f172d4c83696dfee9db08a46.tar.bz2 historical-51e4124bba7b1c37f172d4c83696dfee9db08a46.zip |
Remove unused patch.
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'dev-python/numpy/files')
-rw-r--r-- | dev-python/numpy/files/0.9.6-recognize-more-gfortran-versions.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-python/numpy/files/0.9.6-recognize-more-gfortran-versions.patch b/dev-python/numpy/files/0.9.6-recognize-more-gfortran-versions.patch deleted file mode 100644 index 2e8cfe44eaf2..000000000000 --- a/dev-python/numpy/files/0.9.6-recognize-more-gfortran-versions.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -urN numpy-0.9.6.orig/numpy/distutils/fcompiler/gnu.py numpy-0.9.6/numpy/distutils/fcompiler/gnu.py ---- numpy-0.9.6.orig/numpy/distutils/fcompiler/gnu.py 2006-06-13 15:48:53.000000000 -0700 -+++ numpy-0.9.6/numpy/distutils/fcompiler/gnu.py 2006-06-13 15:49:26.000000000 -0700 -@@ -222,10 +222,12 @@ - class Gnu95FCompiler(GnuFCompiler): - - compiler_type = 'gnu95' -- version_pattern = r'GNU Fortran 95 \(GCC (?P<version>[^\s*\)]+)' -+ version_pattern = r'GNU Fortran ((\(GCC[^\)]*(\)\)|\)))|)\s*'\ -+ '(?P<version>[^\s*\)]+)' - - # 'gfortran --version' results: - # Debian: GNU Fortran 95 (GCC 4.0.3 20051023 (prerelease) (Debian 4.0.2-3)) -+ # Gentoo: GNU Fortran 95 (GCC) 4.1.1 (Gentoo 4.1.1) - - for fc_exe in map(find_executable,['gfortran','f95']): - if os.path.isfile(fc_exe): |