Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: scripts/
Date: Thu, 17 Jun 2021 06:44:54
Message-Id: 1623912208.57035832a39a9a9b5daa9627feb44b4b53e4cf99.andrewammerlaan@gentoo
1 commit: 57035832a39a9a9b5daa9627feb44b4b53e4cf99
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 17 06:43:28 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 17 06:43:28 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=57035832
7
8 scripts/setup-and-run-repoman.sh: checkout portage tag
9
10 checking out any current repoman version tag puts portage
11 into a version where EAPI 8 support is not enabled
12
13 Co-authored-by: Theo Anderson <telans <AT> posteo.de>
14 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
15
16 scripts/setup-and-run-repoman.sh | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh
20 index 471a05181..e2e10c78e 100755
21 --- a/scripts/setup-and-run-repoman.sh
22 +++ b/scripts/setup-and-run-repoman.sh
23 @@ -16,7 +16,7 @@ git clone https://github.com/gentoo/portage.git
24 cd portage
25
26 # Get all versions, and read into array
27 -mapfile -t RM_VERSIONS < <( git tag | grep repoman | sort -uV )
28 +mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV )
29
30 # Select latests version (last element in array)
31 RM_VERS="${RM_VERSIONS[-1]}"