sci-electronics/kicad: Fix 5.1.x build issues with swig-4.0.0

Closes: https://bugs.gentoo.org/690146
Signed-off-by: Zoltan Puskas <zoltan@sinustrom.info>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Closes: https://github.com/gentoo/gentoo/pull/12568
Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
This commit is contained in:
Zoltan Puskas
2019-07-28 23:58:00 -07:00
committed by Alexey Shvetsov
parent 7cb5feb7c8
commit 8b9a5153b0
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
--- a/scripting/build_tools/fix_swig_imports.py 2019-04-22 23:14:54.000000000 +0200
+++ b/scripting/build_tools/fix_swig_imports.py 2019-07-18 15:44:24.255754237 +0200
@@ -40,6 +40,9 @@
txt = b""
for l in lines:
+ if l.startswith(b"if _swig_python_version_info < (2, 7, 0):"): # ok with swig version >= 4.0.0
+ l = l.replace(b"_swig_python_version_info < (2, 7, 0)", b"False")
+ doneOk = True
if l.startswith(b"if _swig_python_version_info >= (2, 7, 0):"): # ok with swig version >= 3.0.10
l = l.replace(b"_swig_python_version_info >= (2, 7, 0)", b"False")
doneOk = True

View File

@@ -51,6 +51,7 @@ CHECKREQS_DISK_BUILD="800M"
PATCHES=(
"${FILESDIR}"/"${PN}-5.1.0-help.patch"
"${FILESDIR}"/"${PN}-5.1.0-swig-4.0.0.patch"
)
pkg_setup() {

View File

@@ -51,6 +51,7 @@ CHECKREQS_DISK_BUILD="800M"
PATCHES=(
"${FILESDIR}"/"${PN}-5.1.0-help.patch"
"${FILESDIR}"/"${PN}-5.1.0-swig-4.0.0.patch"
)
pkg_setup() {