From 4faad3f74c7930494fb4251173fad69274a8a96f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 1 Nov 2017 09:05:40 +0100 Subject: bin/get-package-updates: break_loops is obsolete - removed --- bin/common-functions | 35 ----------------------------------- 1 file changed, 35 deletions(-) (limited to 'bin/common-functions') diff --git a/bin/common-functions b/bin/common-functions index 7a76a5b..1f8da75 100755 --- a/bin/common-functions +++ b/bin/common-functions @@ -671,41 +671,6 @@ recursively_umount_and_rm() { rm -rf --one-file-system "${dir}" } -# insert_break_loops_orders $file -# inserts the correct number of 'break_loops' order into $file - -insert_break_loops_orders() { - local file="$1" - local looped_packages - local line - - looped_packages=$( - find "${work_dir}/build-list.loops" -maxdepth 1 | \ - grep '/loop_[0-9]\+$' | \ - xargs -r cat | \ - sort -u | \ - wc -l - ) - - ( - while read -r line; do - if [ "${line}" = 'break_loops' ]; then - if [ "${looped_packages}" -eq 0 ]; then - continue - fi - looped_packages=$((looped_packages-1)) - fi - printf '%s\n' "${line}" - done < \ - "${file}" - while [ ${looped_packages} -gt 0 ]; do - looped_packages=$((looped_packages-1)) - echo 'break_loops' - done - ) | \ - sponge "${file}" -} - # append_architectures $PKGBUILD # mangle $arch in PKBUILDs to contain i486, i586, i686 -- cgit v1.2.3-54-g00ecf