mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-14 21:27:01 +02:00
this should allow package tests that check things like writability to succeed and have fewer skipped tests in CI. - switch to using the `void-LIBC-full` container - use `uchroot` instead of `ethereal` - simplify some scripts for this change
18 lines
428 B
Bash
Executable file
18 lines
428 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# show_files.sh
|
|
|
|
set -e
|
|
|
|
export XBPS_TARGET_ARCH="$2"
|
|
|
|
while read -r pkg; do
|
|
for subpkg in $(xsubpkg $pkg); do
|
|
/bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m"
|
|
xbps-query --repository=hostdir/binpkgs/bootstrap \
|
|
--repository=hostdir/binpkgs \
|
|
--repository=hostdir/binpkgs/nonfree \
|
|
-i -f "$subpkg" ||
|
|
/bin/echo -e "\x1b[33m $subpkg wasn't found\x1b[0m"
|
|
done
|
|
done < /tmp/templates
|