From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5168F1382C5 for ; Thu, 17 Jun 2021 05:55:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C090CE0843; Thu, 17 Jun 2021 05:55:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC474E083D for ; Thu, 17 Jun 2021 05:55:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E874340ED1 for ; Thu, 17 Jun 2021 05:55:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C0B77AE for ; Thu, 17 Jun 2021 05:55:47 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1623905466.c738bdab3a5e364822bd6899875cc77c2213fa29.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: scripts/ X-VCS-Repository: repo/proj/guru X-VCS-Files: scripts/setup-and-run-repoman.sh X-VCS-Directories: scripts/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: c738bdab3a5e364822bd6899875cc77c2213fa29 X-VCS-Branch: master Date: Thu, 17 Jun 2021 05:55:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2179917-411d-4091-b97e-e71b0cf8268f X-Archives-Hash: 74dca8ad884b809a0fad5e2edf6da9f1 Message-ID: <20210617055547.OMaBHHhW-HCwGMfHJREDyP263nYPbKg6QWeO5bRg9Y8@z> commit: c738bdab3a5e364822bd6899875cc77c2213fa29 Author: Theo Anderson posteo de> AuthorDate: Thu Jun 17 04:37:11 2021 +0000 Commit: Theo Anderson posteo 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 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 +# Maintainer: Theo Anderson # # 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]}"