public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ipmitool/
Date: Sat, 23 Sep 2023 23:17:26 +0000 (UTC)	[thread overview]
Message-ID: <1695510719.d3c0bb9583f39ebb8810b2e334bfdbd7c01ab991.sam@gentoo> (raw)

commit:     d3c0bb9583f39ebb8810b2e334bfdbd7c01ab991
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 23 23:11:59 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 23 23:11:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3c0bb95

sys-apps/ipmitool: update HOMEPAGE, SRC_URI

* Update HOMEPAGE to codeberg (see e.g. https://www.phoronix.com/news/ipmitool-GitHub-Suspended
  and the sourceforge project page)

* Style tweaks

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/ipmitool/ipmitool-1.8.19.ebuild | 64 +++++++++++++++++---------------
 1 file changed, 34 insertions(+), 30 deletions(-)

diff --git a/sys-apps/ipmitool/ipmitool-1.8.19.ebuild b/sys-apps/ipmitool/ipmitool-1.8.19.ebuild
index 6e5a899d9aa5..6e5efa1a400d 100644
--- a/sys-apps/ipmitool/ipmitool-1.8.19.ebuild
+++ b/sys-apps/ipmitool/ipmitool-1.8.19.ebuild
@@ -6,35 +6,40 @@ EAPI=8
 inherit autotools systemd
 
 DESCRIPTION="Utility for controlling IPMI enabled devices"
-HOMEPAGE="https://github.com/ipmitool/ipmitool"
+HOMEPAGE="https://codeberg.org/IPMITool/ipmitool"
 
 COMMIT_ID=
 if [[ -n "${COMMIT_ID}" ]]; then
-	SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/ipmitool/ipmitool/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
 	S="${WORKDIR}/${PN}-${COMMIT_ID}"
 else
 	MY_P="${PN^^}_${PV//./_}"
-	SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${MY_P}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/ipmitool/ipmitool/archive/refs/tags/${MY_P}.tar.gz -> ${P}.tar.gz"
 	S="${WORKDIR}/${PN}-${MY_P}"
 fi
 
 # to generate: `make enterprise-numbers` from git checkout of release tag
 SRC_URI+="
-	https://dev.gentoo.org/~ajak/distfiles/${CATEGORY}/${PN}/enterprise-numbers-${PV}.xz"
+	https://dev.gentoo.org/~ajak/distfiles/${CATEGORY}/${PN}/enterprise-numbers-${PV}.xz
+"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv x86"
 IUSE="openbmc openipmi static"
 
-RDEPEND="dev-libs/openssl:0=
-	sys-libs/readline:0=
-	openbmc? ( sys-apps/systemd:0= )"
-DEPEND="${RDEPEND}
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/readline:=
+	openbmc? ( sys-apps/systemd:= )
+"
+DEPEND="
+	${RDEPEND}
 	>=sys-devel/autoconf-2.69-r5
 	virtual/os-headers
-	openipmi? ( sys-libs/openipmi )"
-	#freeipmi? ( sys-libs/freeipmi )
+	openipmi? ( sys-libs/openipmi )
+"
+#freeipmi? ( sys-libs/freeipmi )
 # ipmitool CAN build against || ( sys-libs/openipmi sys-libs/freeipmi )
 # but it doesn't actually need either.
 
@@ -69,28 +74,27 @@ src_configure() {
 	# - LIPMI and BMC are the Solaris libs
 	# - OpenIPMI is unconditionally enabled in the configure as there is compat
 	# code that is used if the library itself is not available
-	# FreeIPMI does build now, but is disabled until the other arches keyword it
+	# - FreeIPMI does build now, but is disabled until the other arches keyword it
 	#	`use_enable freeipmi intf-free` \
-	# --enable-ipmievd is now unconditional
-
+	# - --enable-ipmievd is now unconditional
 	local econfargs=(
-		$(use_enable static) \
-		--enable-ipmishell \
-		--enable-intf-lan \
-		--enable-intf-usb \
-		$(use_enable openbmc intf-dbus) \
-		--enable-intf-lanplus \
-		--enable-intf-open \
-		--enable-intf-serial \
-		--disable-intf-bmc \
-		--disable-intf-dummy \
-		--disable-intf-free \
-		--disable-intf-imb \
-		--disable-intf-lipmi \
-		--disable-internal-md5 \
-		--with-kerneldir=/usr \
-		--bindir=/usr/sbin \
-		--runstatedir=/run \
+		$(use_enable static)
+		--enable-ipmishell
+		--enable-intf-lan
+		--enable-intf-usb
+		$(use_enable openbmc intf-dbus)
+		--enable-intf-lanplus
+		--enable-intf-open
+		--enable-intf-serial
+		--disable-intf-bmc
+		--disable-intf-dummy
+		--disable-intf-free
+		--disable-intf-imb
+		--disable-intf-lipmi
+		--disable-internal-md5
+		--with-kerneldir=/usr
+		--bindir=/usr/sbin
+		--runstatedir=/run
 		CFLAGS="${CFLAGS}"
 	)
 


             reply	other threads:[~2023-09-23 23:17 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-23 23:17 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-04 16:13 [gentoo-commits] repo/gentoo:master commit in: sys-apps/ipmitool/ Arthur Zamarin
2023-11-04 13:35 Sam James
2023-11-04 12:25 Sam James
2023-11-04 12:25 Sam James
2023-11-04 12:25 Sam James
2023-11-04 10:49 Sam James
2023-09-23 23:17 Sam James
2023-09-23 23:17 Sam James
2023-09-14  5:27 WANG Xuerui
2023-01-31 10:41 Jakov Smolić
2022-10-20 18:59 Jakov Smolić
2022-10-15  7:27 Arthur Zamarin
2022-10-14  6:56 Agostino Sarubbo
2022-10-14  4:14 Arthur Zamarin
2022-10-13 23:19 Sam James
2022-09-03 21:01 Sam James
2022-02-08  6:35 Sam James
2022-02-08  2:02 Sam James
2022-01-18 22:16 Sam James
2022-01-18 22:16 Sam James
2022-01-10  9:25 Jakov Smolić
2022-01-10  8:38 Agostino Sarubbo
2021-12-26  0:20 Sam James
2021-07-06 19:57 Georgy Yakovlev
2021-05-01 10:14 Mikle Kolyada
2021-04-03 15:44 Sam James
2020-12-29 20:46 Sam James
2020-11-14 19:17 Sergei Trofimovich
2020-11-06 20:25 Sam James
2020-11-06  5:50 Robin H. Johnson
2020-10-26 23:47 Sergei Trofimovich
2020-10-22  5:18 Georgy Yakovlev
2020-10-22  4:08 Georgy Yakovlev
2020-10-21 22:09 Robin H. Johnson
2020-08-19 20:00 Sam James
2020-07-21  7:10 Andreas Sturmlechner
2020-05-16  9:47 Georgy Yakovlev
2019-05-26 11:21 Mikle Kolyada
2019-05-26 11:21 Mikle Kolyada
2019-05-26  7:04 Sergei Trofimovich
2019-05-24 22:08 Sergei Trofimovich
2018-06-13 13:05 Lars Wendler
2017-01-16 15:42 Jeroen Roovers
2016-12-20 18:26 Thomas Deutschmann
2016-12-20 18:18 Tobias Klausmann
2016-10-17 23:19 Anthony G. Basile
2016-10-17  9:05 Lars Wendler
2016-10-17  9:05 Lars Wendler
2016-09-28 20:32 Lars Wendler
2016-07-31  8:33 Lars Wendler
2016-04-25  8:52 Lars Wendler
2016-04-25  8:52 Lars Wendler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1695510719.d3c0bb9583f39ebb8810b2e334bfdbd7c01ab991.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox