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 123B41580B2 for ; Thu, 2 Sep 2021 11:03:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D593E0A03; Thu, 2 Sep 2021 10:58:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2F96EE0A03 for ; Thu, 2 Sep 2021 10:58:58 +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 C893A335D2E for ; Thu, 2 Sep 2021 10:58:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 009AD3B for ; Thu, 2 Sep 2021 10:58:54 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1630580328.19400683f19863f94f23592c081767797274d09b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: scripts/ X-VCS-Repository: repo/gentoo X-VCS-Files: scripts/bootstrap.sh X-VCS-Directories: scripts/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 19400683f19863f94f23592c081767797274d09b X-VCS-Branch: master Date: Thu, 2 Sep 2021 10:58:54 +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: 4addc70b-dafe-4e32-9cde-b537a9c2f369 X-Archives-Hash: c64c2f9dfc40bc76e5170c7d795f9367 commit: 19400683f19863f94f23592c081767797274d09b Author: Ulrich Müller gentoo org> AuthorDate: Thu Sep 2 10:55:45 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Sep 2 10:58:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19400683 scripts/bootstrap.sh: Fix version There is no CVS $Id$ any more. Signed-off-by: Ulrich Müller gentoo.org> scripts/bootstrap.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 46026a79e1c..a84263ba448 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,9 @@ #!/bin/bash -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +file_version="2021.0" # update manually: . + # people who were here: # (drobbins, 06 Jun 2003) # (solar, Jul 2004) @@ -55,9 +57,6 @@ v_echo() { env "$@" } -cvsver="$Id$" # TODO: FIXME for Git era -cvsver=${cvsver##*,v } -cvsver=${cvsver%%Exp*} file_copyright=$(sed -n '/Copyright/!b;s/^# *//;p;q' $0) usage() { @@ -94,7 +93,7 @@ for opt in "$@" ; do --resume|-r) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --usepkg --buildpkg";; --verbose|-v) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -v" ; V_ECHO=v_echo;; --version|-V) - einfo "Gentoo Linux bootstrap ${cvsver}" + einfo "Gentoo Linux bootstrap ${file_version}" exit 0 ;; *)