commit: c738bdab3a5e364822bd6899875cc77c2213fa29 Author: Theo Anderson <telans <AT> posteo <DOT> de> AuthorDate: Thu Jun 17 04:37:11 2021 +0000 Commit: Theo Anderson <telans <AT> posteo <DOT> de> CommitDate: Thu Jun 17 04:51:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c738bdab
scripts/setup-and-run-repoman.sh: checkout portage tag checking out any current repoman version tag puts portage into a version where EAPI 8 support is not enabled Signed-off-by: Theo Anderson <telans <AT> posteo.de> scripts/setup-and-run-repoman.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh index 471a05181..f45bee9e7 100755 --- a/scripts/setup-and-run-repoman.sh +++ b/scripts/setup-and-run-repoman.sh @@ -1,5 +1,6 @@ #! /usr/bin/env bash # Maintainer: Andrew Ammerlaan <[email protected]> +# Maintainer: Theo Anderson <[email protected]> # # This sets up repoman and runs the latest version # @@ -16,7 +17,7 @@ git clone https://github.com/gentoo/portage.git cd portage # Get all versions, and read into array -mapfile -t RM_VERSIONS < <( git tag | grep repoman | sort -uV ) +mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV ) # Select latests version (last element in array) RM_VERS="${RM_VERSIONS[-1]}"
