[dolphin] [Bug 478765] dolphin-plugins-git Target "fileviewgitplugin" links to: KF6::XmlGui

2024-01-16 Thread Mike Lothian
https://bugs.kde.org/show_bug.cgi?id=478765

--- Comment #3 from Mike Lothian  ---
fileviewgitplugin.so

 0x0001 (NEEDED) Shared library:
[libKF6TextWidgets.so.6]
 0x0001 (NEEDED) Shared library: [libdolphinvcs.so.6]
 0x0001 (NEEDED) Shared library:
[libQt6Core5Compat.so.6]
 0x0001 (NEEDED) Shared library: [libKF6KIOGui.so.6]
 0x0001 (NEEDED) Shared library: [libKF6KIOCore.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6JobWidgets.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6CoreAddons.so.6]
 0x0001 (NEEDED) Shared library: [libKF6I18n.so.6]
 0x0001 (NEEDED) Shared library: [libKF6ConfigGui.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6ConfigCore.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Widgets.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Gui.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Core.so.6] 
   
   
|
 0x0001 (NEEDED) Shared library: [libstdc++.so.6]  
   
   
|
 0x0001 (NEEDED) Shared library: [libc.so.6]

makefileactions.so

 0x0001 (NEEDED) Shared library:
[libKF6KIOWidgets.so.6]
 0x0001 (NEEDED) Shared library: [libKF6KIOGui.so.6]
 0x0001 (NEEDED) Shared library: [libKF6KIOCore.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6JobWidgets.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6CoreAddons.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Widgets.so.6]
 0x0001 (NEEDED) Shared library: [libKF6I18n.so.6]
 0x0001 (NEEDED) Shared library:
[libKF6ConfigCore.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Gui.so.6]
 0x0001 (NEEDED) Shared library: [libQt6Core.so.6]
 0x0001 (NEEDED) Shared library: [libstdc++.so.6]
 0x0001 (NEEDED) Shared library: [libc.so.6]

I've started on a proper fix here:
https://invent.kde.org/sdk/dolphin-plugins/-/merge_requests/50

I've been on holiday so I'll sort out the changes requested tonight

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 478765] dolphin-plugins-git Target "fileviewgitplugin" links to: KF6::XmlGui

2024-01-11 Thread Marian Kyral
https://bugs.kde.org/show_bug.cgi?id=478765

Marian Kyral  changed:

   What|Removed |Added

 CC||mky...@email.cz

--- Comment #2 from Marian Kyral  ---
This is an issue in Gentoo ebuild, when it removes unused modules:

src_prepare() {
ecm_src_prepare
# solid, qtdbus only required by mountiso
ecm_punt_qt_module DBus
ecm_punt_kf_module Solid
# kxmlgui, qtnetwork only required by dropbox
ecm_punt_qt_module Network
ecm_punt_kf_module XmlGui
# delete non-${PN} translations
find po -type f -name "*po" -and -not -name "*${MY_PLUGIN_NAME}plugin"
-delete || die
}

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 478765] dolphin-plugins-git Target "fileviewgitplugin" links to: KF6::XmlGui

2023-12-20 Thread Mike Lothian
https://bugs.kde.org/show_bug.cgi?id=478765

--- Comment #1 from Mike Lothian  ---
Adding XmlGui to the CMakeLists.txt gets things working here:

find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS

I18n
KIO
TextWidgets
CoreAddons
XmlGui

)

-- 
You are receiving this mail because:
You are watching all bug changes.