commit: 1c3639d76fca244b205830d37c91480d983eb3a3
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 23 14:41:32 2021 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 14:55:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c3639d7
sys-apps/iproute2: Use "einfo" if version needs adjustment
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-apps/iproute2/iproute2-5.10.0.ebuild | 4 ++--
sys-apps/iproute2/iproute2-5.11.0.ebuild | 2 +-
sys-apps/iproute2/iproute2-9999.ebuild | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-apps/iproute2/iproute2-5.10.0.ebuild
b/sys-apps/iproute2/iproute2-5.10.0.ebuild
index 6bccbe4b7ea..8747ab940d6 100644
--- a/sys-apps/iproute2/iproute2-5.10.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -63,7 +63,7 @@ src_prepare() {
# Fix version if necessary
local versionfile="include/version.h"
if ! grep -Fq "${PV}" ${versionfile} ; then
- elog "Fixing version string"
+ einfo "Fixing version string"
sed "s@\"[[:digit:]\.]\+\"@\"${PV}\"@" \
-i ${versionfile} || die
fi
diff --git a/sys-apps/iproute2/iproute2-5.11.0.ebuild
b/sys-apps/iproute2/iproute2-5.11.0.ebuild
index 20fb9338058..418a4583efb 100644
--- a/sys-apps/iproute2/iproute2-5.11.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.11.0.ebuild
@@ -64,7 +64,7 @@ src_prepare() {
# Fix version if necessary
local versionfile="include/version.h"
if ! grep -Fq "${PV}" ${versionfile} ; then
- elog "Fixing version string"
+ einfo "Fixing version string"
sed "s@\"[[:digit:]\.]\+\"@\"${PV}\"@" \
-i ${versionfile} || die
fi
diff --git a/sys-apps/iproute2/iproute2-9999.ebuild
b/sys-apps/iproute2/iproute2-9999.ebuild
index 52d0ebd7e41..fb33a26ea6a 100644
--- a/sys-apps/iproute2/iproute2-9999.ebuild
+++ b/sys-apps/iproute2/iproute2-9999.ebuild
@@ -64,7 +64,7 @@ src_prepare() {
# Fix version if necessary
local versionfile="include/version.h"
if [[ "${PV}" != 9999 ]] && ! grep -Fq "${PV}" ${versionfile} ; then
- elog "Fixing version string"
+ einfo "Fixing version string"
sed "s@\"[[:digit:]\.]\+\"@\"${PV}\"@" \
-i ${versionfile} || die
fi