summaryrefslogtreecommitdiffstats
path: root/mkosi.conf.d/10-arch/mkosi.prepare
blob: aac7b3d76f91084a9209203d325b481d1d3a8460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e

if [[ "$1" == "build" ]]; then
    exit 0
fi

DEPS=""

while read -r PACKAGE; 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 < <(jq --raw-output .VolatilePackages[] <"$MKOSI_CONFIG")

echo "$DEPS" |
    xargs | # Remove extra whitespace.
    tr ' ' '\n' |
    grep --invert-match --regexp systemd --regexp None | # systemd packages will be installed later on.
    sort --unique |
    xargs --delimiter '\n' --no-run-if-empty mkosi-install