commit: b633db7078b607d05e6bc874f7738690317407b4
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 09:00:09 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 09:00:36 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b633db70
dev-python/enable: Fix gcc5 patch (#599738 by Philippe Trottier)
Package-Manager: Portage-2.3.31, Repoman-2.3.9
dev-python/enable/files/enable-4.5.1-gcc-5.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/enable/files/enable-4.5.1-gcc-5.patch
b/dev-python/enable/files/enable-4.5.1-gcc-5.patch
index b18b8eae7bb..700b0b3774f 100644
--- a/dev-python/enable/files/enable-4.5.1-gcc-5.patch
+++ b/dev-python/enable/files/enable-4.5.1-gcc-5.patch
@@ -16,7 +16,7 @@ index 5b4d458..c6e290a 100644
line0 = f.readline()
f.close()
- m = re.match(r'.+?\s(3|4)\.\d+', line0)
-+ m = re.match(r'.+?\s([3-5])\.\d+', line0)
++ m = re.match(r'.+?\s([3-8])\.\d+', line0)
if int(m.group(1)) < 4:
use_32bit_workaround = True