From ecf11faf60dccaecfc6bbdbac2e19bc7db0dff7f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 23 Nov 2017 12:11:29 +0100 Subject: bin/build-master-status: cleanup, make use of new function modification_revision_link() to print links (now also on build-master-status.html) --- bin/common-functions | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'bin/common-functions') diff --git a/bin/common-functions b/bin/common-functions index 6fc1773..b133373 100755 --- a/bin/common-functions +++ b/bin/common-functions @@ -1263,3 +1263,23 @@ next_sub_pkgrel() { fi ) } + +# modification_revision_link "${mod_rev}" "${repo}" "${pkg}" +# print the given modification revision possibly with a html link to github + +modification_revision_link() { + local mod_rev="$1" + local repo="$2" + local pkg="$3" + + if git -C "${repo_paths__archlinux32}" archive "${mod_rev}" -- "${repo}/${pkg}/PKGBUILD" > /dev/null 2>&1; then + printf '%s\n' \ + "${mod_rev}" \ + "${repo}" \ + "${pkg}" \ + "${mod_rev}" + else + printf '%s\n' \ + "${mod_rev}" + fi +} -- cgit v1.2.3-54-g00ecf