Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: scripts/
Date: Thu, 17 Jun 2021 05:55:54
Message-Id: 1623905466.c738bdab3a5e364822bd6899875cc77c2213fa29.telans@gentoo
1 commit: c738bdab3a5e364822bd6899875cc77c2213fa29
2 Author: Theo Anderson <telans <AT> posteo <DOT> de>
3 AuthorDate: Thu Jun 17 04:37:11 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Thu Jun 17 04:51:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c738bdab
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 Signed-off-by: Theo Anderson <telans <AT> posteo.de>
14
15 scripts/setup-and-run-repoman.sh | 3 ++-
16 1 file changed, 2 insertions(+), 1 deletion(-)
17
18 diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh
19 index 471a05181..f45bee9e7 100755
20 --- a/scripts/setup-and-run-repoman.sh
21 +++ b/scripts/setup-and-run-repoman.sh
22 @@ -1,5 +1,6 @@
23 #! /usr/bin/env bash
24 # Maintainer: Andrew Ammerlaan <andrewammerlaan@g.o>
25 +# Maintainer: Theo Anderson <telans@××××××.de>
26 #
27 # This sets up repoman and runs the latest version
28 #
29 @@ -16,7 +17,7 @@ git clone https://github.com/gentoo/portage.git
30 cd portage
31
32 # Get all versions, and read into array
33 -mapfile -t RM_VERSIONS < <( git tag | grep repoman | sort -uV )
34 +mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV )
35
36 # Select latests version (last element in array)
37 RM_VERS="${RM_VERSIONS[-1]}"