# replacing chars may result in variable collision—but
# official apk repos do not have any package names that
# would cause issues
- eval "__$(echo $c | tr -s '.:-' _)=1"
+ eval "__$(echo $c | tr -s '.:+-' _ | tr -s '<=~>@' "\n" | head -1)=1"
done
done
# check world against owned packages
orphans=$(
for x in $(cat /etc/apk/world | grep -v '^\.'); do
eval "[ \${__$(
- echo $x | tr -s '.:-' _ | tr -s '<=~>@' "\n" | head -1
+ echo $x | tr -s '.:+-' _ | tr -s '<=~>@' "\n" | head -1
)-0} -eq 0 ]" && echo $x
done
)