diff options
utau/openutau: Mark as IPv6-only
-rwxr-xr-x | build-repo | 12 | ||||
-rw-r--r-- | src/utau/openutau/.is_ipv4_only | 0 |
2 files changed, 8 insertions, 4 deletions
@@ -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 diff --git a/src/utau/openutau/.is_ipv4_only b/src/utau/openutau/.is_ipv4_only new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/utau/openutau/.is_ipv4_only |