From 1f295e76667ccb67216489afffc688ad99cbc658 Mon Sep 17 00:00:00 2001 From: memdmp Date: Sat, 14 Jun 2025 08:23:46 +0200 Subject: utau/openutau: Mark as IPv6-only --- build-repo | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'build-repo') diff --git a/build-repo b/build-repo index eb0b492..596ec8b 100755 --- a/build-repo +++ b/build-repo @@ -12,11 +12,15 @@ for REPOPATH in ./src/*; do PKG="$(basename "$PKG")"; if [[ "$FILTER" == "" ]] || [[ "$FILTER" == "$REPO" ]] || [[ "$FILTER" == "$PKG" ]] || [[ "$FILTER" == "$REPO/$PKG" ]]; then - if [[ "$NEWSUM" == "1" ]]; then abuild checksum; fi - if [[ "$ROOTBLD" != "0" ]]; then - abuild -P "$ALL_TARGET" rootbld + if [[ "$IPV6_ONLY" == "true" ]] && [[ -f ".is_ipv4_only" ]]; then + echo -e "Skipping repository." else - abuild -r -P "$ALL_TARGET" + if [[ "$NEWSUM" == "1" ]]; then abuild checksum; fi + if [[ "$ROOTBLD" != "0" ]]; then + abuild -P "$ALL_TARGET" rootbld + else + abuild -r -P "$ALL_TARGET" + fi fi fi -- cgit v1.2.3