Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/snap
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-05-07 08:06:59 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-05-07 08:06:59 +0300
commit22c17b0117b2d2cfb1fa6f3800883c224d165c0d (patch)
treeeb8b993763bbd914a1c7e7ebc0ae9c26ed92807e /snap
parent8f57bc89d833ef53703ee3e58f3c60e67a2a0c2c (diff)
Remmina snap undefined symbol: hb_buffer_set_invisible_glyph
Switching to gnome-3-34 caused an unpredicted issue with harfbuzz $ snap run remmina WARNING: cgroup v2 is not fully supported yet, proceeding with partial confinement /snap/remmina/4866/usr/bin/remmina: symbol lookup error: /snap/remmina/4866/gnome-platform/usr/lib/x86_64-linux-gnu/libpango-1.0.so.0: undefined s$ I added a cleanup stage to remove some libraries as advised in this thread https://bugs.launchpad.net/snapcraft/+bug/1908061 To be investigated further Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
Diffstat (limited to 'snap')
-rw-r--r--snap/snapcraft.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 6aa323d7b..0e11cd852 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -187,7 +187,6 @@ parts:
- libssh-4
- libusb-1.0-0
- libzvbi0
- - libvte-2.91-0
- suckless-tools
- vim
- xauth
@@ -309,3 +308,6 @@ parts:
done
find $SNAPCRAFT_PRIME/usr/share/doc/ -type f -not -name 'copyright' -delete
find $SNAPCRAFT_PRIME/usr/share -type d -empty -delete
+ rm -f $SNAPCRAFT_PRIME/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/libharfbuzz.so.0*
+ rm -f $SNAPCRAFT_PRIME/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/libgio-2.0.so.0*
+ rm -f $SNAPCRAFT_PRIME/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/libglib-2.0.so.0*