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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34DEB158086 for ; Sat, 1 Jan 2022 09:39:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDCD82BC0ED; Sat, 1 Jan 2022 09:38:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6BCC2BC0EF for ; Sat, 1 Jan 2022 09:38:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95CBE34311A for ; Sat, 1 Jan 2022 09:38:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 048F9285 for ; Sat, 1 Jan 2022 09:38:55 +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: <1641029903.16f470a1da61ee1515eb68c19ef5a9466e6e1776.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/edac-utils/edac-utils-0.18.ebuild X-VCS-Directories: sys-apps/edac-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 16f470a1da61ee1515eb68c19ef5a9466e6e1776 X-VCS-Branch: master Date: Sat, 1 Jan 2022 09:38:55 +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: 5a471101-49e7-4cbd-90aa-15480fb80ea3 X-Archives-Hash: d3edbefd9efe7df992725dd0e5e46a46 commit: 16f470a1da61ee1515eb68c19ef5a9466e6e1776 Author: Sam James gentoo org> AuthorDate: Sat Jan 1 09:31:26 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 1 09:38:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f470a1 sys-apps/edac-utils: drop 0.18 Signed-off-by: Sam James gentoo.org> sys-apps/edac-utils/edac-utils-0.18.ebuild | 49 ------------------------------ 1 file changed, 49 deletions(-) diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild deleted file mode 100644 index c4aa0a9e04cf..000000000000 --- a/sys-apps/edac-utils/edac-utils-0.18.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Userspace helper for Linux kernel EDAC drivers" -HOMEPAGE="https://github.com/grondo/edac-utils" -SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="debug" - -DEPEND="sys-fs/sysfsutils" -RDEPEND="${DEPEND} - sys-apps/dmidecode" - -src_prepare() { - default - - sed -i \ - -e 's|-Werror||' \ - configure || die -} - -src_configure() { - econf \ - --disable-static \ - $(use_enable debug) -} - -src_install() { - default - - # We don't need this init.d file - # Modules should be loaded by adding them to /etc/conf.d/modules - # The rest is done via the udev-rule - rm -rf "${ED}/etc/init.d" || die - - find "${ED}" -name '*.la' -delete || die -} - -pkg_postinst() { - elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db" - elog "in case you want nice labels in /sys/module/*_edac/" - elog "Run the following command to check whether such an entry is already available:" - elog " edac-ctl --print-labels" -}