From: "John Helmert III" <ajak@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/freeipmi/
Date: Thu, 1 Sep 2022 21:36:00 +0000 (UTC) [thread overview]
Message-ID: <1662068149.8102ed9976c51e7c9734d80c3decb798213bf19a.ajak@gentoo> (raw)
commit: 8102ed9976c51e7c9734d80c3decb798213bf19a
Author: John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 1 21:35:30 2022 +0000
Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Thu Sep 1 21:35:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8102ed99
sys-libs/freeipmi: add 1.6.10
Closes: https://bugs.gentoo.org/724854
Closes: https://bugs.gentoo.org/457100
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
sys-libs/freeipmi/Manifest | 1 +
sys-libs/freeipmi/freeipmi-1.6.10.ebuild | 97 ++++++++++++++++++++++++++++++++
sys-libs/freeipmi/metadata.xml | 3 +
3 files changed, 101 insertions(+)
diff --git a/sys-libs/freeipmi/Manifest b/sys-libs/freeipmi/Manifest
index 6e32a18d7813..783da5aa35eb 100644
--- a/sys-libs/freeipmi/Manifest
+++ b/sys-libs/freeipmi/Manifest
@@ -1 +1,2 @@
+DIST freeipmi-1.6.10.tar.gz 3431062 BLAKE2B e217570d8fcf78ca9d04aad4d5bd46b4120beb21f2dcfb083bc9779a4541856e08ec6e87549651ee3c9b62fe54521585e192c784254dd9482bf9da09935853ae SHA512 90b6b78cdd119c2a1f332f007333aa6df70c6e3de0fd81ab007025392ee7cb7a01ab4a7a174d1f2e760c55d78f21ebbbe9667af661ccdd669e4b54edb1346937
DIST freeipmi-1.6.9.tar.gz 3429566 BLAKE2B 68ee7bd27d459a25464e17d9c98370252d33961d10e69675505f046db26a95d780c114b4f90eeab43a39d0fca3d98b1f108c6d3ca9550fd9d3c455d2e9a79c6b SHA512 536add8dc01aa4d9df45e3499f8be1318185b19beb579c8f991a11ca973626d7e0aabe1d8760a9addadc418ea5c1e2b5432053e46ba94fd9078fb6dcabf48280
diff --git a/sys-libs/freeipmi/freeipmi-1.6.10.ebuild b/sys-libs/freeipmi/freeipmi-1.6.10.ebuild
new file mode 100644
index 000000000000..0643d0464957
--- /dev/null
+++ b/sys-libs/freeipmi/freeipmi-1.6.10.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+AT_M4DIR="config"
+
+DESCRIPTION="Provides Remote-Console and System Management Software as per IPMI v1.5/2.0"
+HOMEPAGE="https://www.gnu.org/software/freeipmi/"
+
+MY_P="${P/_/.}"
+[[ ${MY_P} == *.beta* ]] && ALPHA="-alpha"
+SRC_URI="mirror://gnu${ALPHA}/${PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
+IUSE="debug nagios without-root"
+
+RDEPEND="dev-libs/libgcrypt:0="
+DEPEND="${RDEPEND}
+ virtual/os-headers"
+RDEPEND="${RDEPEND}
+ nagios? (
+ || ( net-analyzer/icinga net-analyzer/nagios )
+ dev-lang/perl
+ )
+"
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(usex without-root --with-dont-check-for-root "")
+ --disable-static
+ --disable-init-scripts
+ --localstatedir="${EPREFIX}"/var
+ ac_cv_path_CPP_FOR_BUILD=$(tc-getPROG CPP cpp)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+# There are no tests
+src_test() { :; }
+
+src_install() {
+ default
+
+ # freeipmi by defaults install _all_ commands to /usr/sbin, but
+ # quite a few can be run remotely as standard user, so move them
+ # in /usr/bin afterwards.
+ dodir /usr/bin
+ local prog
+ for prog in ipmi{detect,ping,power,console}; do
+ mv "${ED}"/usr/{s,}bin/${prog} || die
+
+ # The default install symlinks these commands to add a dash
+ # after the ipmi prefix; we repeat those after move for
+ # consistency.
+ rm "${ED}"/usr/sbin/${prog/ipmi/ipmi-}
+ dosym ${prog} /usr/bin/${prog/ipmi/ipmi-}
+ done
+
+ # Install the nagios plugin in its proper place, if desired
+ if use nagios; then
+ dodir /usr/$(get_libdir)/nagios/plugins
+ mv "${ED}"/usr/share/doc/${PF}/contrib/nagios/nagios_ipmi_sensors.pl \
+ "${ED}"/usr/$(get_libdir)/nagios/plugins/ || die
+ fperms 0755 /usr/$(get_libdir)/nagios/plugins/nagios_ipmi_sensors.pl
+
+ insinto /etc/icinga/conf.d
+ newins "${FILESDIR}"/freeipmi.icinga freeipmi-command.cfg
+ fi
+
+ dodoc AUTHORS ChangeLog* DISCLAIMER* NEWS README* TODO doc/*.txt
+
+ keepdir \
+ /var/cache/ipmiseld \
+ /var/cache/ipmimonitoringsdrcache \
+ /var/lib/freeipmi \
+ /var/log/ipmiconsole
+
+ # starting from version 1.2.0 the two daemons are similar enough
+ newinitd "${FILESDIR}"/bmc-watchdog.initd.4 ipmidetectd
+ newconfd "${FILESDIR}"/ipmidetectd.confd ipmidetectd
+
+ newinitd "${FILESDIR}"/bmc-watchdog.initd.4 bmc-watchdog
+ newconfd "${FILESDIR}"/bmc-watchdog.confd bmc-watchdog
+
+ newinitd "${FILESDIR}"/bmc-watchdog.initd.4 ipmiseld
+ newconfd "${FILESDIR}"/ipmiseld.confd ipmiseld
+
+ find "${ED}" -type f -name "*.la" -delete || die
+}
diff --git a/sys-libs/freeipmi/metadata.xml b/sys-libs/freeipmi/metadata.xml
index a4cf4d39338a..71d6d4eef727 100644
--- a/sys-libs/freeipmi/metadata.xml
+++ b/sys-libs/freeipmi/metadata.xml
@@ -10,5 +10,8 @@
<flag name="nagios">
Install a nagios plugin to check sensors' status.
</flag>
+ <flag name="without-root">
+ Configure whether or not to check for root access in ipmi tools.
+ </flag>
</use>
</pkgmetadata>
next reply other threads:[~2022-09-01 21:36 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-01 21:36 John Helmert III [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-14 17:15 [gentoo-commits] repo/gentoo:master commit in: sys-libs/freeipmi/ Sam James
2025-03-08 1:10 Jakov Smolić
2025-03-07 11:47 Jakov Smolić
2025-01-20 3:45 Sam James
2024-11-20 14:36 Sam James
2024-11-14 3:39 Sam James
2024-10-05 12:42 Sam James
2024-04-04 15:05 Arthur Zamarin
2023-09-07 23:03 Sam James
2023-09-07 20:53 Sam James
2023-06-09 8:44 Sam James
2023-06-09 8:44 Sam James
2023-03-04 22:30 Jakov Smolić
2023-03-04 11:03 Arthur Zamarin
2023-03-04 6:19 Arthur Zamarin
2022-10-18 2:18 Sam James
2022-09-02 5:55 John Helmert III
2022-08-17 16:21 Matt Turner
2022-08-17 4:53 Arthur Zamarin
2022-08-04 8:04 Agostino Sarubbo
2022-08-03 7:49 Agostino Sarubbo
2022-01-20 8:00 Lars Wendler
2022-01-20 8:00 Lars Wendler
2021-12-06 19:47 Sam James
2021-12-06 8:03 Agostino Sarubbo
2021-12-05 18:29 Sam James
2021-06-05 1:33 Georgy Yakovlev
2021-05-21 7:06 Lars Wendler
2021-05-21 7:06 Lars Wendler
2021-02-15 12:02 Lars Wendler
2021-02-15 12:02 Lars Wendler
2020-09-06 8:14 Lars Wendler
2020-09-06 8:14 Lars Wendler
2020-05-22 13:35 Lars Wendler
2020-05-22 13:35 Lars Wendler
2019-08-23 1:14 Lars Wendler
2019-08-23 1:14 Lars Wendler
2019-03-24 20:02 Sergei Trofimovich
2019-03-17 11:25 Sergei Trofimovich
2019-02-20 13:02 Mikle Kolyada
2019-01-25 13:11 Lars Wendler
2019-01-25 13:11 Lars Wendler
2018-05-05 1:07 Lars Wendler
2018-05-05 1:07 Lars Wendler
2018-02-03 11:47 Lars Wendler
2018-02-03 11:47 Lars Wendler
2018-02-03 11:47 Lars Wendler
2018-01-05 20:23 Mike Gilbert
2017-10-17 18:53 Sergei Trofimovich
2017-10-17 18:53 Sergei Trofimovich
2017-08-17 8:14 Lars Wendler
2017-08-17 8:14 Lars Wendler
2017-07-06 8:13 Lars Wendler
2017-07-06 8:13 Lars Wendler
2016-11-03 8:51 Lars Wendler
2016-11-03 8:51 Lars Wendler
2016-10-01 11:20 Lars Wendler
2016-10-01 11:20 Lars Wendler
2016-08-02 7:48 Lars Wendler
2016-08-02 7:48 Lars Wendler
2016-05-24 7:15 Lars Wendler
2016-04-25 7:56 Lars Wendler
2016-04-25 7:56 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=1662068149.8102ed9976c51e7c9734d80c3decb798213bf19a.ajak@gentoo \
--to=ajak@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