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 134AD13835A for ; Sat, 3 Apr 2021 15:44:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37C54E0884; Sat, 3 Apr 2021 15:44:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 ED156E0884 for ; Sat, 3 Apr 2021 15:44:45 +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 1B3EC340BBD for ; Sat, 3 Apr 2021 15:44:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DD94644 for ; Sat, 3 Apr 2021 15:44:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617464630.b405088a516cee7dddcb234a278b1ad41719675b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ipmitool/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild X-VCS-Directories: sys-apps/ipmitool/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b405088a516cee7dddcb234a278b1ad41719675b X-VCS-Branch: master Date: Sat, 3 Apr 2021 15:44:42 +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: b8adbe42-6d1a-4803-ab45-046b311ca988 X-Archives-Hash: 22ad0546f14be452989ed2b2c56bcdd6 commit: b405088a516cee7dddcb234a278b1ad41719675b Author: Sam James gentoo org> AuthorDate: Fri Apr 2 06:22:44 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 3 15:43:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b405088a sys-apps/ipmitool: fix variable references Signed-off-by: Sam James gentoo.org> sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild | 9 +++++---- sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild | 11 ++++++----- sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild | 11 ++++++----- 3 files changed, 17 insertions(+), 14 deletions(-) diff --git a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild index 2bf4240201b..c5fb6c0ba88 100644 --- a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild +++ b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 + inherit autotools eutils DESCRIPTION="Utility for controlling IPMI enabled devices." @@ -61,9 +62,9 @@ src_prepare() { -e '/0120-openssl1.1.patch/d' \ debian/patches/series for p in $(cat debian/patches/series) ; do - echo $p + echo ${p} if ! nonfatal eapply -p1 debian/patches/$p ; then - echo "failed $p" + echo "failed ${p}" fail=1 fi done @@ -84,7 +85,7 @@ src_prepare() { #"${pd}"/0010.0010-utf8.patch ) for p in "${PATCHES[@]}" ; do - eapply -p1 $p || die "failed $p" + eapply -p1 ${p} || die "failed ${p}" done eautoreconf diff --git a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild index d8df773c1c7..e8b856e1e81 100644 --- a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild +++ b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools eutils flag-o-matic systemd DESCRIPTION="Utility for controlling IPMI enabled devices." @@ -62,9 +63,9 @@ src_prepare() { -e '/0120-openssl1.1.patch/d' \ debian/patches/series for p in $(cat debian/patches/series) ; do - echo $p - if ! nonfatal eapply -p1 debian/patches/$p ; then - echo "failed $p" + echo ${p} + if ! nonfatal eapply -p1 debian/patches/${p} ; then + echo "failed ${p}" fail=1 fi done @@ -85,7 +86,7 @@ src_prepare() { #"${pd}"/0010.0010-utf8.patch ) for p in "${PATCHES[@]}" ; do - eapply -p1 $p || die "failed $p" + eapply -p1 ${p} || die "failed ${p}" done # Gentoo chooses to install ipmitool in /usr/sbin diff --git a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild index c395dcf3694..b881605ca26 100644 --- a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild +++ b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r3.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools eutils flag-o-matic systemd DESCRIPTION="Utility for controlling IPMI enabled devices." @@ -62,9 +63,9 @@ src_prepare() { -e '/0120-openssl1.1.patch/d' \ debian/patches/series for p in $(cat debian/patches/series) ; do - echo $p - if ! nonfatal eapply -p1 debian/patches/$p ; then - echo "failed $p" + echo ${p} + if ! nonfatal eapply -p1 debian/patches/${p} ; then + echo "failed ${p}" fail=1 fi done @@ -85,7 +86,7 @@ src_prepare() { #"${pd}"/0010.0010-utf8.patch ) for p in "${PATCHES[@]}" ; do - eapply -p1 $p || die "failed $p" + eapply -p1 ${p} || die "failed ${p}" done # Gentoo chooses to install ipmitool in /usr/sbin