mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
committed by
Alexey Shvetsov
parent
7cb5feb7c8
commit
8b9a5153b0
12
sci-electronics/kicad/files/kicad-5.1.0-swig-4.0.0.patch
Normal file
12
sci-electronics/kicad/files/kicad-5.1.0-swig-4.0.0.patch
Normal 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
|
||||
@@ -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() {
|
||||
@@ -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() {
|
||||
Reference in New Issue
Block a user