1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

Merge 99fd958d522165a5d7e09a53c6cb2a94f7894e8f into fdab24bf6acc62d3011f9b5abdf834b4886642b2

This commit is contained in:
Daan De Meyer 2025-03-13 06:24:18 +01:00 committed by GitHub
commit 592459f8d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,28 +8,18 @@ fi
mapfile -t PACKAGES < <(jq --raw-output .VolatilePackages[] <"$MKOSI_CONFIG")
DEPS=""
for PACKAGE in "${PACKAGES[@]}"; do
DEPS="$DEPS $(
pacman --sync --info "$PACKAGE" |
sed '1,/^$/d' | # Only keep result from first repository (delete everything after first blank line).
sed --quiet 's/^Depends On *: //p' # Filter out everything except "Depends On:" line and fetch dependencies from it.
)"
DEPS="$DEPS $(
pacman --sync --info "$PACKAGE" |
sed '1,/^$/d' | # Only keep result from first repository (delete everything after first blank line).
sed --quiet '/Optional Deps/,/Conflicts With/{/Conflicts With/!p}' | # Get every line from "Optional Deps" (inclusive) until "Conflicts With" (exclusive).
sed 's/Optional Deps *: //' | # Drop "Optional Deps :" from first line.
sed 's/ *\(.*\):.*/\1/' | # Drop descriptions (everything after first colon for all lines).
tr '\n' ' ' # Transform newlines to whitespace.
)"
done
DEPS="$(pacman --sync --print-format %D "${PACKAGES[@]}")"
# The optional dependencies are printed with their description as a whitespace delimited list, so we grep out
# everything that ends with a colon to get the actual dependencies without descriptions, and then remove the
# colon with sed.
DEPS="$DEPS $(
pacman --sync --print-format %O "${PACKAGES[@]}" |
grep --only-matching --extended-regexp "[0-9a-zA-Z\-]+:" |
sed 's/.$//'
)"
echo "$DEPS" |
xargs | # Remove extra whitespace.
tr ' ' '\n' |
grep --extended-regexp --invert-match --regexp "$(IFS=\| ; echo "${PACKAGES[*]}")" --regexp None | # systemd packages will be installed later on.
grep --extended-regexp --invert-match --regexp "$(IFS=\| ; echo "${PACKAGES[*]}")" | # systemd packages will be installed later on.
sort --unique |
xargs --delimiter '\n' --no-run-if-empty mkosi-install