[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 caulier.gil...@gmail.com changed: What|Removed |Added CC||caulier.gil...@gmail.com Version Fixed In||8.6.0 Resolution|--- |FIXED Status|REPORTED|RESOLVED -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #6 from Nicofo --- It's working now with last version of Appimage (from thsi morning). Thanks a lot for you work ! -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #5 from Maik Qualmann --- Git commit 574d1d583d268987433e2c7c73cf166634cf69dc by Maik Qualmann. Committed on 26/11/2024 at 17:31. Pushed by mqualmann into branch 'master'. fix detect os version without quotes M +2-2project/bundles/appimage/data/AppRun https://invent.kde.org/graphics/digikam/-/commit/574d1d583d268987433e2c7c73cf166634cf69dc -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #4 from Nicofo --- Hello Maik, I tried with last version of appimage. It still does not work. Reason is that the $OS_VERSION is empty instead of being "41" in my case. Line 59 of AppRun is: OS_VERSION=$(awk -F'"' '$1 ~ /^VERSION_ID/ {print $2}' /etc/*-release | tr -d '.') which indeed results in empty string for Fedora. Reason: see the output of cat /etc/os-release in comment #0: VERSION_ID=41 (and not VERSION_ID="41") So you could change line 59 with these 2 lines for example: OS_VERSION=$(awk -F'"' '$1 ~ /^VERSION_ID/ {print $2}' /etc/*-release | tr -d '.') [ -z "${OS_VERSION}" ] && OS_VERSION=$(awk -F'=' '$1 ~ /^VERSION_ID/ {print $2}' /etc/*-release | tr -d '.') -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #3 from Maik Qualmann --- A new AppImage is available for testing, please report if it now starts under Fedora. https://files.kde.org/digikam/ Maik -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 Jim Shipman changed: What|Removed |Added CC||jims...@sbcglobal.net -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30
https://bugs.kde.org/show_bug.cgi?id=496619 Maik Qualmann changed: What|Removed |Added Summary|Fedora 41 appimage: symbol |Fedora 41 appimage: symbol |lookup error: |lookup error: |/usr/lib64/libgnutls.so.30: |/usr/lib64/libgnutls.so.30 |undefined symbol| -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30: undefined symbol
https://bugs.kde.org/show_bug.cgi?id=496619 Maik Qualmann changed: What|Removed |Added CC||metzping...@gmail.com Summary|Fedora 41 appimage: symbol |Fedora 41 appimage: symbol |lookup error: |lookup error: |/usr/lib64/libgnutls.so.30: |/usr/lib64/libgnutls.so.30: |undefined symbol: |undefined symbol |nettle_rsa_oaep_sha384_decr | |ypt, version HOGWEED_6 | -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30: undefined symbol: nettle_rsa_oaep_sha384_decrypt, version HOGWEED_6
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #2 from Maik Qualmann --- Git commit 9cec9dbd3439aae4005f95c42a547c201b289712 by Maik Qualmann. Committed on 23/11/2024 at 21:34. Pushed by mqualmann into branch 'master'. use lower case for os name and same bash code M +6-6project/bundles/appimage/data/AppRun https://invent.kde.org/graphics/digikam/-/commit/9cec9dbd3439aae4005f95c42a547c201b289712 -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 496619] Fedora 41 appimage: symbol lookup error: /usr/lib64/libgnutls.so.30: undefined symbol: nettle_rsa_oaep_sha384_decrypt, version HOGWEED_6
https://bugs.kde.org/show_bug.cgi?id=496619 --- Comment #1 from Maik Qualmann --- Git commit a7752823a50bbf7a3c28d5390c51f69fdbe3b347 by Maik Qualmann. Committed on 23/11/2024 at 21:16. Pushed by mqualmann into branch 'master'. do not preload libgnutls in Fedora Linux >= 40 M +3-2project/bundles/appimage/data/AppRun https://invent.kde.org/graphics/digikam/-/commit/a7752823a50bbf7a3c28d5390c51f69fdbe3b347 -- You are receiving this mail because: You are watching all bug changes.