app-admin/mcelog: Drop old versions
authorMatt Turner <mattst88@gentoo.org>
Tue, 6 Aug 2019 17:46:02 +0000 (10:46 -0700)
committerMatt Turner <mattst88@gentoo.org>
Tue, 6 Aug 2019 17:50:45 +0000 (10:50 -0700)
Signed-off-by: Matt Turner <mattst88@gentoo.org>
app-admin/mcelog/Manifest
app-admin/mcelog/mcelog-161.ebuild [deleted file]

index 5fa992c21e13119d3c2f5f67d0645835f2bbe86a..fa95c2af915172499a78afc7f89e5edd223c2197 100644 (file)
@@ -1,2 +1 @@
-DIST mcelog-161.tar.gz 308227 BLAKE2B cd208cce2685b779a2cac6d347b890d5bff5f07d2e7165c1d078f914aefcc26bef2ab968ec6baac4410134d8188dd73e4f3d77f13603307f8c6b592554146497 SHA512 af38fcc1cc9621d6cfbda2b9acc7698cddbe631690bf394398978bdafd0d98075539012827ca876cef3f64cc56a00d31d0bd0f4fe2ea9171eb41bf0163e35f0e
 DIST mcelog-162.tar.gz 308347 BLAKE2B bd438e85ea793c6c5ce4d561f0400e91b101a010cce7f937751a11a0a974fec49db7e9d768fc50db68a91c973c90c8ab1b4ffa80964cb6fde860b9f2ac217435 SHA512 d61a0b7ad3974098963edde1e9e9acdf4dbd1a025577b7044bafc17302abd19080c8145a2700c691400af0768ff4b6833d47697e1478c5bef8831f7f8b61ae48
diff --git a/app-admin/mcelog/mcelog-161.ebuild b/app-admin/mcelog/mcelog-161.ebuild
deleted file mode 100644 (file)
index 37a8e88..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd toolchain-funcs
-
-DESCRIPTION="A tool to log and decode Machine Check Exceptions"
-HOMEPAGE="http://mcelog.org/"
-SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-mcelog )"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-pkg_pretend() {
-       if [[ ${MERGE_TYPE} != buildonly ]]; then
-               local CONFIG_CHECK="~X86_MCE"
-               kernel_is -ge 4 12 && CONFIG_CHECK+=" ~X86_MCELOG_LEGACY"
-               check_extra_config
-       fi
-}
-
-src_prepare() {
-       eapply "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-               "${FILESDIR}"/${PN}-129-debugflags.patch
-       eapply_user
-       tc-export CC
-}
-
-src_install() {
-       default
-
-       insinto /etc/cron.daily
-       newins ${PN}.cron ${PN}
-
-       insinto /etc/logrotate.d/
-       newins ${PN}.logrotate ${PN}
-
-       newinitd "${FILESDIR}"/${PN}.init-r1 ${PN}
-       systemd_dounit "${FILESDIR}"/${PN}.service
-
-       dodoc *.pdf
-}
-
-pkg_postinst() {
-       einfo "The default configuration set is now installed in /etc/${PN}"
-       einfo "you might want to edit those files."
-       einfo
-       einfo "A sample cronjob is installed into /etc/cron.daily"
-       einfo "without executable bit (system service is the preferred method now)"
-}