From 00d37e50f3701448f163da7b3211694a6e5d20b0 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 15 Sep 2017 09:08:33 +0200 Subject: bin/seed-build-list: expand_version and shrink_version new to correct misbehaving "sort -V" (vs. "vercmp") --- bin/common-functions | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'bin/common-functions') diff --git a/bin/common-functions b/bin/common-functions index f255bb6..350e0b6 100755 --- a/bin/common-functions +++ b/bin/common-functions @@ -487,7 +487,9 @@ remove_old_package_versions() { echo "${package%-*}" | \ sed 's|^.*-\([^-]\+-[^-]\+\)$|1 %cut% %it% %here% \1|' } | \ + expand_version 5 | \ sort -k5V,5 -k1n,1 | \ + shrink_version 5 | \ sed -n ' /^1 %cut% %it% %here% /q s/^[02] // @@ -893,3 +895,27 @@ download_sources_by_hash() { return ${return_value} } + +# expand_version $column_num +# add "+0" to version in $colum_num-th column if no "+" is there + +expand_version() { + local column_num + column_num="$1" + + sed ' + /^\(\S\+\s\+\)\{'"$((column_num-1))"'\}\S*+/! s/^\(\(\S\+\s\+\)\{'"$((column_num-1))"'\}\S*\)-/\1+0-/ + ' +} + +# shrink_version $column_num +# remove "+0" from version in $colum_num-th column + +shrink_version() { + local column_num + column_num="$1" + + sed ' + s/^\(\(\S\+\s\+\)\{'"$((column_num-1))"'\}\S*\)+0-/\1-/ + ' +} -- cgit v1.2.3-54-g00ecf