From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ipmitool/
Date: Tue, 21 Jul 2020 07:10:51 +0000 (UTC) [thread overview]
Message-ID: <1595315204.046bc5d16fa176e28a53bc48224eacd749e22e82.asturm@gentoo> (raw)
commit: 046bc5d16fa176e28a53bc48224eacd749e22e82
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 11:44:55 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jul 21 07:06:44 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=046bc5d1
sys-apps/ipmitool: Drop 1.8.17-r1
Broken by >=OpenSSL-1.1
Package-Manager: Portage-2.3.66, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sys-apps/ipmitool/Manifest | 2 -
sys-apps/ipmitool/ipmitool-1.8.17-r1.ebuild | 83 -----------------------------
2 files changed, 85 deletions(-)
diff --git a/sys-apps/ipmitool/Manifest b/sys-apps/ipmitool/Manifest
index ea33b17d9c8..b3c7ece3e8c 100644
--- a/sys-apps/ipmitool/Manifest
+++ b/sys-apps/ipmitool/Manifest
@@ -1,4 +1,2 @@
-DIST ipmitool-1.8.17.tar.gz 976189 BLAKE2B 62ca530b2a9fdc0e8071d02b7f903530f223bdf07d75278eb9dafeb167b9ec347b0fbf199e2e7cf8f258463abfc8887c8b9b4df80509758ae8588ca73bbaf68a SHA512 929cf0087d3d712caf845eb62771aa96d034c2222170850b0d8bfdbb41d0b0aee05c14aa48e82368f4494606781c6639ada348fd086907c21b817d95dd36a3f6
DIST ipmitool-1.8.18.tar.gz 995313 BLAKE2B 4aee2b1488a8a97348954dd1555baf3d576d70f22fd17f11ba6147595b07ef52059ac8ab6775afa0ad956355eefbf3e2b0300cf87bb373d2f82b585de807412d SHA512 274d424fff079f7628c0f9fe06580937cb9717c809a71b2f5ef97266c6b6c89983b662fbb1f090e2f94861f1799677c8fc6536013828a8a5e6cb239af53e45ab
-DIST ipmitool_1.8.17-1.debian.tar.xz 18252 BLAKE2B 6219d81b6b54354e8e412850fc1ee673e2dead153076d55c67fad0518e7230642934a52ba0abea29d8b1f47eb7beef10cbe25a7b8a4df158d4b44b1f1e229f4d SHA512 e1133262020e8fabe47e7aa308956078bc9fb3bb7033413230f1cf76aca1d4733bac64e52039365f24fe54a1bf8e271071bdaa1722720fca62f1c9e8888777a8
DIST ipmitool_1.8.18-1.debian.tar.xz 19140 BLAKE2B 255c4da005946f3b118a127f96fc5daad02a170ea079d7a765a0c7650e1eb7e50ad49b31fca95312b49e5a524e04a8a21215cafb1a8451e5b2af2aaec22cda75 SHA512 8aede337d07987decfd032898f194d32730eced443630ac3956676533d693fb2d17a175ef14218cbcd55da44f6b17714f676a912a1d5124a15a995e01d2828ef
diff --git a/sys-apps/ipmitool/ipmitool-1.8.17-r1.ebuild b/sys-apps/ipmitool/ipmitool-1.8.17-r1.ebuild
deleted file mode 100644
index 0e6967bb3a2..00000000000
--- a/sys-apps/ipmitool/ipmitool-1.8.17-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools eutils
-
-DESCRIPTION="Utility for controlling IPMI enabled devices."
-HOMEPAGE="http://ipmitool.sf.net/"
-DEBIAN_PR="1.debian"
-DEBIAN_P="${P/-/_}"
-DEBIAN_PF="${DEBIAN_P}-${DEBIAN_PR}"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
- https://launchpad.net/ubuntu/+archive/primary/+files/${DEBIAN_PF}.tar.xz"
-#IUSE="freeipmi openipmi status"
-IUSE="libressl openipmi static"
-SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ppc x86"
-LICENSE="BSD"
-
-RDEPEND="
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- sys-libs/readline:0="
-DEPEND="${RDEPEND}
- openipmi? ( sys-libs/openipmi )
- virtual/os-headers"
- #freeipmi? ( sys-libs/freeipmi )
-# ipmitool CAN build against || ( sys-libs/openipmi sys-libs/freeipmi )
-# but it doesn't actually need either.
-
-src_prepare() {
- default
- [ -d "${S}"/debian ] && mv "${S}"/debian{,.package}
- ln -s "${WORKDIR}"/debian "${S}"
- for p in $(grep -v "^#" debian/patches/series) ; do
- eapply debian/patches/$p
- done
-
- eautoreconf
-}
-
-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
- # `use_enable freeipmi intf-free` \
- # --enable-ipmievd is now unconditional
- econf \
- $(use_enable static) \
- --enable-ipmishell \
- --enable-intf-lan \
- --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
-
- # Fix linux/ipmi.h to compile properly. This is a hack since it doesn't
- # include the below file to define some things.
- echo "#include <asm/byteorder.h>" >>config.h
-}
-
-src_install() {
- emake DESTDIR="${D}" PACKAGE="${PF}" install
-
- into /usr
- dosbin contrib/bmclanconf
- rm -f "${D}"/usr/share/doc/${PF}/COPYING
- docinto contrib
- cd "${S}"/contrib
- dodoc collect_data.sh create_rrds.sh create_webpage_compact.sh create_webpage.sh README
-
- newinitd "${FILESDIR}"/${PN}-1.8.9-ipmievd.initd ipmievd
- newconfd "${FILESDIR}"/${PN}-1.8.9-ipmievd.confd ipmievd
- # TODO: init script for contrib/bmc-snmp-proxy
- # TODO: contrib/exchange-bmc-os-info
-}
next reply other threads:[~2020-07-21 7:10 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-21 7:10 Andreas Sturmlechner [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-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-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=1595315204.046bc5d16fa176e28a53bc48224eacd749e22e82.asturm@gentoo \
--to=asturm@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