From 8acd9d9e955452213ee12075630f1699e699235e Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 15 Aug 2017 11:24:09 +0200 Subject: bin/common-functions: add ugly hack to make perl-list-moreutils find its PKGBUILD --- bin/common-functions | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/common-functions b/bin/common-functions index 6e6aefa..f721614 100755 --- a/bin/common-functions +++ b/bin/common-functions @@ -17,13 +17,19 @@ find_pkgbuilds() { local repo_path eval 'repo_path="${repo_paths__'"${git_repository}"'}"' + # TODO: remove, when FS#54696 closed + local _perl_list_moreutils_repair_flag + if [ "${package}" = 'perl-list-moreutils' ]; then + _perl_list_moreutils_repair_flag='-r' + fi + PKGBUILD=$( git -C "${repo_path}" archive "${git_revision}" -- "${package}/repos/" 2> /dev/null | \ tar -t 2> /dev/null | \ grep "$(printf '^%s-.*/PKGBUILD' "$(str_to_regex "${package}/repos/${repository}")")" | \ grep -v -- '-i686/PKGBUILD$' | \ grep -v -- '[-/]\(staging\|testing\|unstable\)-[^/]\+/PKGBUILD$' | \ - sort | \ + sort ${_perl_list_moreutils_repair_flag} | \ tail -n1 ) -- cgit v1.2.3-54-g00ecf