Ideed now it works. mega seems to be … "moody" at times.

Added in 2 minutes 42 seconds:
Are these all correct?
Code: Select all
5bd92a2d74196a2033850950d7794ed6 hunspell-1.7.0-x86_64-1.xzm
120e2278dc892b8796c85996c5dba942 qt5-base-5.15.2-x86_64_10-xfce-cinnamon-openbox-lxde-mate.xzm
1bccd94861311b5482a7f4e1a4f21172 qt5-dev-5.15.2-x86_64_10-extralib.xzm
b96d7ec8a11cdb78e0d3c7f8780516c0 quazip-1.1-x86_64-3.xzm
aaaa6511cf1cce676e177e8887cb4c48 texstudio-4.0.4-1-x86_64.xzm
My System 5.0rc3 XFCE
It seems I lack one lib because I activated:
Code: Select all
hunspell-1.7.0-x86_64-1.xzm
qt5-base-5.15.2-x86_64_10-xfce-cinnamon-openbox-lxde-mate.xzm
qt5-dev-5.15.2-x86_64_10-extralib.xzm
quazip-1.1-x86_64-3.xzm
texstudio-4.0.4-1-x86_64.xzm
Code: Select all
guest@porteus:~$ ldd /usr/bin/texstudio|grep found
libpoppler-qt5.so.1 => not found
Code: Select all
guest@porteus:~$ texstudio
texstudio: error while loading shared libraries: libpoppler-qt5.so.1: cannot open shared object file: No such file or directory
I used lsxzmgrep V2020-12-19 (the script is to be found somewhere on this forum, it's by yours truly adapted from lsxzm) to look into older versions of rc3 - to no prevail, not one single base/ contains libpoppler-qt5.
Syntax of lsxzmgrep:
Code: Select all
lsxzmgrep [folder or single module] [search-phrase]

Code: Select all
guest@porteus:/1/Porteus_5.0rc3a/porteus/base$ lsxzmgrep . libpoppler-qt5
lsxzmgrep V2020-12-19
guest@porteus:/1/Porteus_5.0rc3d/porteus/base$ lsxzmgrep . libpoppler-qt5
lsxzmgrep V2020-12-19
guest@porteus:/1/Porteus_5.0rc3e/porteus/base$ lsxzmgrep . libpoppler-qt5
lsxzmgrep V2020-12-19
guest@porteus:/1/Porteus_5.0rc3f/porteus/base$ lsxzmgrep . libpoppler-qt5
lsxzmgrep V2020-12-19
https://slakfinder.org/index.php?act=se ... e=#results

____________________
Cave! The naming of the folders e.g. Porteus_5.0rc3a is my own sorting logic and has no base in any official or unofficial sorting or naming.
Added in 2 minutes 18 seconds:
And for your convenience here the code of lsxzmgrep:
Code: Select all
#!/bin/bash
# https://forum.porteus.org/viewtopic.php?p=67979#p67979 brokenman
# https://forum.porteus.org/viewtopic.php?p=3522#p3522 82issa
# https://forum.porteus.org/viewtopic.php?p=80427#p80427 Ed_P
# https://forum.porteus.org/viewtopic.php?p=80384#p80384 &
# https://forum.porteus.org/viewtopic.php?p=80428#p80428 Rava
VERSION=2020-12-19
echo -n $(tput sgr0)
echo $(tput bold)$(tput setaf 3)lsxzmgrep$(tput sgr0) V$(tput setaf 3)${VERSION}$(tput sgr0)
if [ $# -ne 2 ]; then
echo $(tput bold)$(tput setaf 1)No xzm name and grep search pattern specified.$(tput sgr0)
exit 1
fi
for module in $(find "$1" -type f,l -name "*.xzm"); do
lsxzm ${module} | grep "$2" | sed -r "s#.+#>${module}\n&#"
done