app-admin/mcelog: Drop old
authorMatt Turner <mattst88@gentoo.org>
Fri, 7 Apr 2017 07:05:56 +0000 (00:05 -0700)
committerMatt Turner <mattst88@gentoo.org>
Fri, 7 Apr 2017 07:05:56 +0000 (00:05 -0700)
app-admin/mcelog/Manifest
app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-bashism.patch [deleted file]
app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-build.patch [deleted file]
app-admin/mcelog/files/mcelog.init [deleted file]
app-admin/mcelog/mcelog-100.ebuild [deleted file]
app-admin/mcelog/mcelog-117.ebuild [deleted file]
app-admin/mcelog/mcelog-122.ebuild [deleted file]
app-admin/mcelog/mcelog-148.ebuild [deleted file]

index 59f4fcb900f274d4bf5dd92a9c2bc20d10ca09cf..37d6392a0ebf2999554eb03e1bb3af2f53da66de 100644 (file)
@@ -1,5 +1 @@
-DIST mcelog-100.tar.gz 288423 SHA256 b18f029ec9f498b6249b3a3dfef7753ac9d45ebf3382af452cb3e14d49274bab SHA512 efd7864daaafe5d149fc27259d4fa72221372842d41ad57c046c967fd1eb710ef921f45111e95bfe76df119276b3b9af1bf1094a9411037eb1f5ac06e319e87d WHIRLPOOL 9f2f7fdbb3c94b7740f486005641a90529e240c34f3709989e6e0d448c96369f4562408aa678ea992f47f396cdfb60c71eadf75475c52ff0cd6318a99c4ad2eb
-DIST mcelog-117.tar.gz 296068 SHA256 0e0422e8693e4592a85ed344738004dcedcd930234ab862b0bdcb6ae7aa44f2b SHA512 664e4d9224ec1878153561bebdf4f6c58ea44cf0d494a04eb38cdd73cc8158fabdb0b4823f2303e39818f104298208206dfb9ff64ef13654dadfb5e7a4f5e723 WHIRLPOOL 1919bb2069f216d6a649c883bb9a9417edc9b51d639a73a81f5d5a8d06d874447dc839401858b1d402bbed588077dab93273d012768cb5d1b3fff3ec378d662e
-DIST mcelog-122.tar.gz 296366 SHA256 bfdffa82044a4e712ee9570b737169d900bbf53b0a1ea4c9a244b327f8987107 SHA512 895c5263d5632db446edb871d5ec84df75604572c1522f5d457eadaa05edc9a46c761708344a744b460bac5a82f2e52802280c0e6369f34ecd7f50abc6d15c70 WHIRLPOOL e43194b836623fbc268b51494ed3abe9e9cf67e5bd5c1134427f7ae67a30ccb321b971f211b68718a00e85c0c2382b462d59cc598b8c290685708f05b1c631f7
-DIST mcelog-148.tar.gz 296927 SHA256 3de7312ee13b0968ae8e1aa0a77acaaee89a0ed7de45f7ce557939723df3dc04 SHA512 67b793a6446fdba7cbb5b0e9cd6ce7aa6545e6e42395b4731d0431200525960cb8c9c3a10e7e5710836ae9759092235ef817f0ca1cdcc0a441afc402cc0a12bf WHIRLPOOL 638f556dcd4e4ec1b5fd9d8b31522cbbd919ec39b201dfeebf887f55d3f15e0dafd1ebb6fb350f5ecdd21f8e70d5845f36698b39e2d8360ef6f36731f288f10d
 DIST mcelog-149.tar.gz 296943 SHA256 a9313ed45cabaf7ef0a4d986ecf24a3c9ced9a4b1e34032d380af4e70c73512f SHA512 d2cb7cb26d4407dd03a425568a19c96e5f53cc9447c58cd105d74a2f69b645ef6b444c9533186aac6b052f0721959a321a3f8061477d1451a62be36add097aeb WHIRLPOOL ddea0a8efca6e5180d4d3ce663a0366b1a2eb78d8d11690e21aea81d3956838013aec7e83f29f6a745a63d18e95e8c71a2b00be135a5982013462b3911aa7f57
diff --git a/app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-bashism.patch b/app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-bashism.patch
deleted file mode 100644 (file)
index 335a429..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-From: Julian Ospald <hasufell@gentoo.org>
-Date: Sat Jan 26 17:40:22 UTC 2013
-Subject: remove bashisms
-
---- a/triggers/cache-error-trigger
-+++ b/triggers/cache-error-trigger
-@@ -1,4 +1,4 @@
--#!/bin/bash
-+#!/bin/sh
- # cache error trigger. This shell script is executed by mcelog in daemon mode
- # when a CPU reports excessive corrected cache errors. This could be a indication
- # for future uncorrected errors.
-@@ -28,7 +28,7 @@
-       logger -s -p daemon.crit -t mcelog "Offlining CPU $i due to cache error threshold"
-       F=$(printf "/sys/devices/system/cpu/cpu%d/online" $i)
-       echo 0 > $F
--      if [ "$(< $F)" != "0" ] ; then
-+      if [ "$(cat $F)" != "0" ] ; then
-               logger -s -p daemon.warn -t mcelog "Offlining CPU $i failed"
-               EXIT=1
-       fi
diff --git a/app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-build.patch b/app-admin/mcelog/files/mcelog-1.0_pre3_p20120918-build.patch
deleted file mode 100644 (file)
index 6444bfb..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-From: Julian Ospald <hasufell@gentoo.org>
-Date: Wed Oct 24 15:41:33 UTC 2012
-Subject: build system
-
-don't overwrite system CFLAGS, only append "-g -Os" if DEBUG=1 is passed
-as argument
-
-always use $(CC) instead of "gcc"
-
---- Makefile
-+++ Makefile
-@@ -1,4 +1,11 @@
--CFLAGS := -g -Os
-+CC ?= gcc
-+
-+# set to 1 to enable debug flags
-+DEBUG = 0
-+ifeq ($(DEBUG),1)
-+CFLAGS += -g -Os
-+endif
-+
- prefix := /usr
- etcprefix :=
- # Define appropiately for your distribution
-@@ -70,7 +77,7 @@
-       rm -f ${CLEAN} ${OBJ} 
- tsc:    tsc.c
--      gcc -o tsc ${CFLAGS} -DSTANDALONE tsc.c ${LDFLAGS}
-+      $(CC) -o tsc ${CFLAGS} -DSTANDALONE tsc.c ${LDFLAGS}
- dbquery: db.o dbquery.o memutil.o
-@@ -101,7 +108,7 @@
-       echo $(SRC)
- config-test: config.c
--      gcc -DTEST=1 config.c -o config-test
-+      $(CC) -DTEST=1 config.c -o config-test
- test:
-       $(MAKE) -C tests test DEBUG=""
diff --git a/app-admin/mcelog/files/mcelog.init b/app-admin/mcelog/files/mcelog.init
deleted file mode 100644 (file)
index 6c1b801..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description='Start/stop mcelog in daemon mode'
-
-PIDFILE="/var/run/mcelog.pid"
-
-depend() {
-       after udev 
-       need localmount
-       use logging
-}
-
-start() {
-       ebegin "Starting mcelog"
-       start-stop-daemon \
-               --start \
-               --pidfile ${PIDFILE} \
-               --exec /usr/sbin/mcelog -- --daemon --pidfile ${PIDFILE} ${MCELOG_OPTS} 
-        eend $?
-}
-
-stop() {
-       ebegin "Stopping mcelog"
-       start-stop-daemon --stop --pidfile ${PIDFILE}
-       eend $?
-}
diff --git a/app-admin/mcelog/mcelog-100.ebuild b/app-admin/mcelog/mcelog-100.ebuild
deleted file mode 100644 (file)
index 8072b9a..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit linux-info eutils 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 )"
-
-CONFIG_CHECK="~X86_MCE"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-build.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.patch
-       tc-export CC
-}
-
-src_install() {
-       dosbin ${PN}
-
-       insinto /etc/cron.daily
-       newins ${PN}.cron ${PN}
-
-       insinto /etc/logrotate.d/
-       newins ${PN}.logrotate ${PN}
-
-       newinitd "${FILESDIR}"/${PN}.init ${PN}
-       systemd_dounit "${FILESDIR}"/${PN}.service
-
-       insinto /etc/${PN}
-       doins mcelog.conf
-       exeinto /etc/${PN}
-       doexe triggers/*
-
-       dodoc CHANGES README TODO *.pdf
-       doman ${PN}.8
-}
-
-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)"
-}
diff --git a/app-admin/mcelog/mcelog-117.ebuild b/app-admin/mcelog/mcelog-117.ebuild
deleted file mode 100644 (file)
index 6d3cfe9..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit linux-info eutils 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 )"
-
-CONFIG_CHECK="~X86_MCE"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-build.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.patch
-       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)"
-}
diff --git a/app-admin/mcelog/mcelog-122.ebuild b/app-admin/mcelog/mcelog-122.ebuild
deleted file mode 100644 (file)
index 6d3cfe9..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit linux-info eutils 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 )"
-
-CONFIG_CHECK="~X86_MCE"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-build.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.patch
-       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)"
-}
diff --git a/app-admin/mcelog/mcelog-148.ebuild b/app-admin/mcelog/mcelog-148.ebuild
deleted file mode 100644 (file)
index a3753af..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# 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 )"
-
-CONFIG_CHECK="~X86_MCE"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-src_prepare() {
-       eapply "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-               "${FILESDIR}"/${PN}-129-debugflags.patch \
-               "${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.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)"
-}