Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 927952 - sci-electronics/kicad-8.0.1 fails to compile: ImportError: libwx_gtk3u_core-3.2-gtk3.so.0: undefined symbol: gdk_wayland_display_get_wl_display
Summary: sci-electronics/kicad-8.0.1 fails to compile: ImportError: libwx_gtk3u_core-3...
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Zoltan Puskas
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-03-27 12:00 UTC by Agostino Sarubbo
Modified: 2024-05-04 16:53 UTC (History)
9 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,77.01 KB, text/plain)
2024-03-27 12:00 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2024-03-27 12:00:03 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: sci-electronics/kicad-8.0.1 fails to compile.
Discovered on: amd64 (internal ref: ci)

Info about the issue:
https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#CF0014
Comment 1 Agostino Sarubbo gentoo-dev 2024-03-27 12:00:05 UTC
Created attachment 888761 [details]
build.log

build log and emerge --info
Comment 2 Larry the Git Cow gentoo-dev 2024-05-03 12:51:31 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1cce39266c87dd148a87b8deda5001e24a4e1c1

commit f1cce39266c87dd148a87b8deda5001e24a4e1c1
Author:     Andrew Ammerlaan <andrewammerlaan@gentoo.org>
AuthorDate: 2024-05-03 12:46:22 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan@gentoo.org>
CommitDate: 2024-05-03 12:51:08 +0000

    sci-electronics/kicad: add 8.0.2
    
    - compat with occt 8.0.2
    - fix finding libs in tests
    - filter-lto
    - add missing dep on wxGTK[wayland]
    - drop USE=telemetry, this now requires configureing DSN at build time,
            upstream default is off, other distro's do not enable this,
            unclear what the DSN should be if enabled.
    
    Closes: https://bugs.gentoo.org/923351
    Closes: https://bugs.gentoo.org/927226
    Closes: https://bugs.gentoo.org/927482
    Closes: https://bugs.gentoo.org/927952
    Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>

 sci-electronics/kicad/Manifest           |   1 +
 sci-electronics/kicad/kicad-8.0.2.ebuild | 180 +++++++++++++++++++++++++++++++
 sci-electronics/kicad/kicad-9999.ebuild  |  16 +--
 3 files changed, 191 insertions(+), 6 deletions(-)
Comment 3 Frej Drejhammar 2024-05-04 13:08:00 UTC
>     - add missing dep on wxGTK[wayland]

I'm sorry but I don't think this is the right solution. Forcing users to pull in Wayland to fix an LTO problem doesn't feel right to me. Especially as on a (non LTO) system where -wayland is set globally, Kicad builds perfectly fine if the dependency is >=x11-libs/wxGTK-3.2.2.1-r3:${WX_GTK_VER}[X,opengl].

Perhaps x11-libs/gtk+[wayland] should force x11-libs/wxGTK[wayland] but that's a pure guess and how to express that is way outside my ebuild-fu.
Comment 4 Frej Drejhammar 2024-05-04 13:11:39 UTC
(In reply to Frej Drejhammar from comment #3)
> >     - add missing dep on wxGTK[wayland]
> 
> I'm sorry but I don't think this is the right solution. Forcing users to
> pull in Wayland to fix an LTO problem doesn't feel right to me. Especially
> as on a (non LTO) system where -wayland is set globally, Kicad builds
> perfectly fine if the dependency is
> >=x11-libs/wxGTK-3.2.2.1-r3:${WX_GTK_VER}[X,opengl].
> 
> Perhaps x11-libs/gtk+[wayland] should force x11-libs/wxGTK[wayland] but
> that's a pure guess and how to express that is way outside my ebuild-fu.

Sorry I'm having a confused day :) It's not an LTO problem, just an ordinary linking issue. But my point of needlessly pulling in Wayland for something that is an issue between Gtk and wxGTK still holds.
Comment 5 Sergey 'L29Ah' Alirzaev 2024-05-04 14:40:52 UTC
kicad-8.0.1 built fine for me without wayland, and now i have to rebuild both gtk+ and wxGTK and whatnot with USE=wayland to build 8.0.2 :/
Comment 6 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-04 14:43:59 UTC
```
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.11/site-packages/wx/__init__.py", line 17, in <module>
    from wx.core import *
  File "/usr/lib/python3.11/site-packages/wx/core.py", line 12, in <module>
    from ._core import *
ImportError: /usr/lib64/libwx_gtk3u_core-3.2-gtk3.so.0: undefined symbol: gdk_wayland_display_get_wl_display
```

This looks like the usual gtk automagic with wayland. wxgtk needs to gain wayland= instead for its dep on gtk+, I think.

Anyway, I agree, I think the dep change in kicad isn't right here - the fix needs to either be in wxgtk, or in gtk.
Comment 7 Andrew Ammerlaan gentoo-dev 2024-05-04 16:13:24 UTC
(In reply to Frej Drejhammar from comment #3)
> >     - add missing dep on wxGTK[wayland]
> 
> I'm sorry but I don't think this is the right solution. Forcing users to
> pull in Wayland to fix an LTO problem doesn't feel right to me. 

These are two seperate things, this bug is not an LTO bug
Comment 8 Andrew Ammerlaan gentoo-dev 2024-05-04 16:19:01 UTC
(In reply to Sam James from comment #6)
> This looks like the usual gtk automagic with wayland. wxgtk needs to gain
> wayland= instead for its dep on gtk+, I think.
> 
> Anyway, I agree, I think the dep change in kicad isn't right here - the fix
> needs to either be in wxgtk, or in gtk.

I will revert that in a bit.

Do we have the same weird automagic stuff going on for the X flag? Should that USE dependency also be removed?
Comment 9 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-04 16:23:02 UTC
AFAIK the only gtk automagic is in sysprof and wayland
Comment 10 Larry the Git Cow gentoo-dev 2024-05-04 16:53:00 UTC
The bug has been referenced in the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=806860100b5613f837046ed2789da5b2ffaf51bb

commit 806860100b5613f837046ed2789da5b2ffaf51bb
Author:     Andrew Ammerlaan <andrewammerlaan@gentoo.org>
AuthorDate: 2024-05-04 16:52:30 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan@gentoo.org>
CommitDate: 2024-05-04 16:52:30 +0000

    sci-electronics/kicad: drop dep on wayland
    
    Bug: https://bugs.gentoo.org/927952
    Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>

 sci-electronics/kicad/{kicad-8.0.2.ebuild => kicad-8.0.2-r1.ebuild} | 2 +-
 sci-electronics/kicad/kicad-9999.ebuild                             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)