Skip to content

Commit

Permalink
Fix DNF5 repoquery
Browse files Browse the repository at this point in the history
  • Loading branch information
alimirjamali committed Oct 10, 2024
1 parent 468e15f commit ba2d54e
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions qubes-rpc/qvm-template-repo-query
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,29 @@ touch -r "$hashfile" "$repodir/template.repo"
RET=0

if [ "$1" = "query" ]; then
dnf repoquery "${OPTS[@]}" --qf='%{name}|%{epoch}|%{version}|%{release}|%{reponame}|%{downloadsize}|%{buildtime}|%{license}|%{url}|%{summary}|%{description}|' "$SPEC"
if dnf --version | grep -q dnf5; then
dnf repoquery "${OPTS[@]}" --qf='%{name}|%{epoch}|%{version}|%{release}|%{repoid}|%{downloadsize}|%{buildtime}|%{license}|%{url}|%{summary}|%{description}|\n' "$SPEC"
else
dnf repoquery "${OPTS[@]}" --qf='%{name}|%{epoch}|%{version}|%{release}|%{repoid}|%{downloadsize}|%{buildtime}|%{license}|%{url}|%{summary}|%{description}|' "$SPEC"
fi
RET="$?"
elif [ "$1" = "download" ]; then
# Download/retry algorithm: take mirrors in random order. In this order,
# try to download from the first one - if download failed but anything was
# downloaded - retry from the same one. If download failed and nothing was
# downloaded, go to the next one. The intention is to retry on interrupted
# connection, but skip mirrors that are not synchronized yet.
urls="$(dnf downloadurl "${OPTS[@]}" --url --all-mirrors "$SPEC" | shuf)"
readarray -t urls <<<"$urls"
if dnf --version | grep -q dnf5; then
if dnf download --help | grep -q allmirrors; then
urls="$(dnf download "${OPTS[@]}" --url --allmirrors -q "$SPEC" | shuf)"
else
urls="$(dnf download "${OPTS[@]}" --url -q "$SPEC")"
fi
readarray -d ' ' -t urls <<<"$urls"
else
urls="$(dnf downloadurl "${OPTS[@]}" --url --all-mirrors "$SPEC" | shuf)"
readarray -t urls <<<"$urls"
fi
downloaded=0
status_file="$repodir/download-status.tmp"
for url in "${urls[@]}"; do
Expand Down

0 comments on commit ba2d54e

Please sign in to comment.