sys-apps/kexec-tools: Removed old.
authorLars Wendler <polynomial-c@gentoo.org>
Tue, 1 May 2018 20:10:29 +0000 (22:10 +0200)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 1 May 2018 20:10:53 +0000 (22:10 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

sys-apps/kexec-tools/Manifest
sys-apps/kexec-tools/files/kexec-tools-2.0.0-respect-LDFLAGS.patch [deleted file]
sys-apps/kexec-tools/files/kexec.init-2.0.4-r2 [deleted file]
sys-apps/kexec-tools/kexec-tools-2.0.15.ebuild [deleted file]
sys-apps/kexec-tools/kexec-tools-2.0.4-r2.ebuild [deleted file]

index 47b2cbcd4312947c83b91d0cd9a3ed551be35c91..0327fc4ca1d9a8746f52c87dd1260845d78c26bd 100644 (file)
@@ -1,5 +1,3 @@
 DIST kexec-tools-2.0.14.tar.xz 283640 BLAKE2B f84b5485904c0d4bbe5f7fdae391a4fb0b2a7436e078f23de649e79aaa7dfcdeff99139230a299bf2b9b0554ac13fa833e31211682c92f07cd6b8072907e35aa SHA512 8c1f9d1f4bb69a621961d45091f9c8349535ae69b80168423663685b44d89e1b9324d5cd11c83e86d805a3371f4f1600b0def551c52efb3c6cf020e9c11c273f
-DIST kexec-tools-2.0.15.tar.xz 286944 BLAKE2B 00344b607fbbca77398e74bf7f6506efa124ddb4ad0f2e55424a40b90ac0d1a6336dd43f4c8804323e12598f1647cd105880960abfda7df8215c787dae150bda SHA512 0bddf31b9bb0e203b813d820e1e248974c2d62cb388dfaf4f2f4971f764cc71e54edbaeaeb663c15d6fa06574beceb87d9ffd7d822ac6699d86c54645096e7e9
 DIST kexec-tools-2.0.16.tar.xz 287888 BLAKE2B 7e7bbe11dc2792be3cab6318c12b6866bf6b373fb7bf2d7601ef68a39dd5882aceab7c8905ce0d9b0af1da2072b3f3d2677bd9e006676c484e1d6506ac7036fa SHA512 f2f06e7702fef20c8d7d6aabe1b264e2e2689e5c38cc00dbc2186dd7fa0479edb2dc9e307dd2ad7f03db47015e966e577f11576172604ef01c1bcca471fe2c24
 DIST kexec-tools-2.0.17.tar.xz 290612 BLAKE2B 57ec5b5ed33a5c5bbe433099d6e80663717c8a086bdb8b95f4a1d81fd7e546619c0064698454dc79f489313f98696ee6dee4cafbc8b1b93db5c7909cdf7a6234 SHA512 e0f254ca2b26fa02cb61ba9a0735423b26bac2693fbd920eaf7cc2822c298de958bd65f7c37947ca1f6811a3752a58f7cf8aa903494f0109ea76b7159a037fa6
-DIST kexec-tools-2.0.4.tar.xz 271604 BLAKE2B f3359e91295b1c37bd94d3ea7889e948e0716781375f3387077962313615986947b0ac134023876b88cf92b5f0b5e1d3d5d97099ac799d0ba182b58f1bb4674c SHA512 2514f407d9150d2615dffc91a525fb28f159bef92b9543f9802e2618746b7d4c04137668ad8a8d8f0b75f68ed9057d09629ce736b6a061b5cf817b9d904f549e
diff --git a/sys-apps/kexec-tools/files/kexec-tools-2.0.0-respect-LDFLAGS.patch b/sys-apps/kexec-tools/files/kexec-tools-2.0.0-respect-LDFLAGS.patch
deleted file mode 100644 (file)
index 040d138..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- kdump/Makefile
-+++ kdump/Makefile
-@@ -18,7 +18,7 @@
- $(KDUMP): CC=$(TARGET_CC)
- $(KDUMP): $(KDUMP_OBJS)
-       @$(MKDIR) -p $(@D)
--      $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ $(KDUMP_OBJS)
-+      $(LINK.o) $(CFLAGS) -o $@ $(KDUMP_OBJS)
- $(KDUMP_MANPAGE): kdump/kdump.8
-       $(MKDIR) -p     $(MANDIR)/man8
diff --git a/sys-apps/kexec-tools/files/kexec.init-2.0.4-r2 b/sys-apps/kexec-tools/files/kexec.init-2.0.4-r2
deleted file mode 100644 (file)
index f60cb2a..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-       need localmount
-}
-
-image_path() {
-       local x= kver=$(uname -r) karch=$(uname -m)
-       BOOTPART="${BOOTPART:-/boot}"
-       KNAME="${KNAME:-bzImage}"
-       if [ -e "${KNAME}" ]; then
-               echo "${KNAME}"
-               return 0
-       fi
-       for x in "${KNAME#${BOOTPART}}" vmlinuz \
-               bzImage-${kver} vmlinuz-${kver} \
-               kernel-genkernel-${karch}-${kver} \
-               kernel-${kver} kernel-${karch}; do
-               if [ -e "${BOOTPART}/${x}" ]; then
-                       echo "${BOOTPART}/${x}"
-                       return 0
-               fi
-       done
-
-       return 1
-}
-
-initrd_path() {
-       local x= kver=$(uname -r) karch=$(uname -m)
-       BOOTPART="${BOOTPART:-/boot}"
-       INITRD="${INITRD:-initrd}"
-       if [ -e "${INITRD}" ]; then
-               echo "${INITRD}"
-               return 0
-       fi
-       for x in "${INITRD#${BOOTPART}}" \
-               initrd.img-${kver} initrd-${kver}.img \
-               initrd-${kver} initramfs-${kver}.img \
-               initramfs-genkernel-${karch}-${kver} ; do
-               if [ -e "${BOOTPART}/${x}" ]; then
-                       echo "${BOOTPART}/${x}"
-                       return 0
-               fi
-       done
-
-       return 1
-}
-
-mount_boot(){
-       local ret
-
-       [ -n "${DONT_MOUNT_BOOT}" ] && return 1
-       grep -q " ${BOOTPART:-/boot} " /proc/mounts && return 1
-
-       BOOTPART="${BOOTPART:-/boot}"
-       ebegin "Mounting ${BOOTPART}"
-       mount "${BOOTPART}"; ret=$?
-       eend ${ret}
-       return ${ret}
-}
-
-load_image() {
-       local ret
-       if [ "${KNAME}" = "-" ]; then
-               ebegin "Disabling kexec"
-               kexec -u; ret=$?
-               eend ${ret}
-               return ${ret}
-       fi
-
-       BOOTPART="${BOOTPART:-/boot}"
-       local img= initrd="$(initrd_path)" mounted=false initrdopt=
-
-       if ! img="$(image_path)"; then
-               if mount_boot; then
-                       if img="$(image_path)"; then
-                               mounted=true
-                               initrd="$(initrd_path)"
-                       else
-                               eerror "No kernel image found in ${BOOTPART}!"
-                               umount "${BOOTPART}"
-                               return 1
-                       fi
-               else
-                       eerror "No kernel image found in ${BOOTPART}!"
-                       return 1
-               fi
-       fi
-
-       if [ -n "${INITRD}" ] && \
-               ! [ "${BOOTPART}/${INITRD#${BOOTPART}}" = "${initrd}" ]; then
-               eerror "Requested initrd: ${INITRD#${BOOTPART}}"
-               eerror "could not be found"
-               return 1
-       fi
-
-       [ -n "${ROOTPART}" ] || \
-               ROOTPART="$(readlink -f "$(sed -n '/^\/[^ ]* \/ / s,^\([^ ]*\).*,\1,p' /proc/mounts)")"
-
-       [ -n "${KPARAM}" ] || KEXEC_OPT_ARGS="${KEXEC_OPT_ARGS} --reuse-cmdline"
-
-       [ -n "${initrd}" ] && [ -e "${initrd}" ] && initrdopt="--initrd=${initrd}"
-
-       local msg=
-       [ -n "${initrd}" ] && \
-               msg="with ${initrd}"
-       einfo "Using kernel image ${img} ${msg} for kexec"
-
-       ebegin "Setting kexec with ${KEXEC_OPT_ARGS} -l ${img} root=${ROOTPART} ${KPARAM} ${initrdopt}"
-       kexec ${KEXEC_OPT_ARGS} -l "${img}" --append="root=${ROOTPART} ${KPARAM}" ${initrdopt}
-       local res=$?
-
-       ${mounted} && umount "${BOOTPART}"
-       eend ${res}
-       return ${res}
-}
-
-start() {
-       if [ "${LOAD_DURING_SHUTDOWN:-yes}" = "yes" ]; then
-               local ret=0
-               BOOTPART="${BOOTPART:-/boot}"
-               if mount_boot; then
-                       mounted=true
-               fi
-               if ! image_path > /dev/null; then
-                       ewarn "Cannot find kernel image!"
-                       ewarn "Please make sure a valid kernel image is present before reboot."
-                       return 0
-               fi
-               if [ -n "${mounted}" ]; then
-                       ebegin "Unmounting ${BOOTPART}"
-                       umount "${BOOTPART}"; ret=$?
-                       eend ${ret}
-               fi
-               return ${ret}
-       else
-               ebegin "Configuring kexec"
-               load_image
-               eend $?
-       fi
-}
-
-stop() {
-       [ "${LOAD_DURING_SHUTDOWN:-yes}" != "yes" ] && return 0
-
-       if ! yesno $RC_REBOOT; then
-               einfo "Not rebooting, so disabling"
-               kexec -u
-               return 0
-       fi
-
-       if [ -f /nokexec ]; then
-               einfo "Not using kexec during reboot"
-               rm -f /nokexec
-               kexec -u
-               return 0
-       fi
-
-       ebegin "Configuring kexec"
-       load_image
-       eend $?
-}
diff --git a/sys-apps/kexec-tools/kexec-tools-2.0.15.ebuild b/sys-apps/kexec-tools/kexec-tools-2.0.15.ebuild
deleted file mode 100644 (file)
index f3f0157..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == "9999" ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
-       AUTOTOOLS_AUTORECONF=true
-else
-       SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
-       KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-inherit libtool linux-info systemd
-
-DESCRIPTION="Load another kernel from the currently executing Linux kernel"
-HOMEPAGE="https://kernel.org/pub/linux/utils/kernel/kexec/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="booke lzma xen zlib"
-
-REQUIRED_USE="lzma? ( zlib )"
-
-DEPEND="
-       lzma? ( app-arch/xz-utils )
-       zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}"
-
-CONFIG_CHECK="~KEXEC"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-2.0.4-disable-kexec-test.patch
-       "${FILESDIR}"/${PN}-2.0.4-out-of-source.patch
-)
-
-pkg_setup() {
-       # GNU Make's $(COMPILE.S) passes ASFLAGS to $(CCAS), CCAS=$(CC)
-       export ASFLAGS="${CCASFLAGS}"
-}
-
-src_prepare() {
-       default
-       elibtoolize
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with booke)
-               $(use_with lzma)
-               $(use_with xen)
-               $(use_with zlib)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       dodoc "${FILESDIR}"/README.Gentoo
-
-       newinitd "${FILESDIR}"/kexec.init-2.0.13-r1 kexec
-       newconfd "${FILESDIR}"/kexec.conf-2.0.4 kexec
-
-       insinto /etc
-       doins "${FILESDIR}"/kexec.conf
-
-       insinto /etc/kernel/postinst.d
-       doins "${FILESDIR}"/90_kexec
-
-       systemd_dounit "${FILESDIR}"/kexec.service
-}
-
-pkg_postinst() {
-       if systemd_is_booted || has_version sys-apps/systemd; then
-               elog "For systemd support the new config file is"
-               elog "   /etc/kexec.conf"
-               elog "Please adopt it to your needs as there is no autoconfig anymore"
-       fi
-}
diff --git a/sys-apps/kexec-tools/kexec-tools-2.0.4-r2.ebuild b/sys-apps/kexec-tools/kexec-tools-2.0.4-r2.ebuild
deleted file mode 100644 (file)
index 89c77e7..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils flag-o-matic linux-info systemd
-
-DESCRIPTION="Load another kernel from the currently executing Linux kernel"
-HOMEPAGE="https://kernel.org/pub/linux/utils/kernel/kexec/"
-SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="booke lzma xen zlib"
-
-REQUIRED_USE="lzma? ( zlib )"
-
-DEPEND="
-       lzma? ( app-arch/xz-utils )
-       zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}"
-
-CONFIG_CHECK="~KEXEC"
-
-PATCHES=(
-               "${FILESDIR}"/${PN}-2.0.0-respect-LDFLAGS.patch
-               "${FILESDIR}"/${P}-disable-kexec-test.patch
-               "${FILESDIR}"/${P}-out-of-source.patch
-       )
-
-pkg_setup() {
-       # GNU Make's $(COMPILE.S) passes ASFLAGS to $(CCAS), CCAS=$(CC)
-       export ASFLAGS="${CCASFLAGS}"
-       # to disable the -fPIE -pie in the hardened compiler
-       if gcc-specs-pie ; then
-               filter-flags -fPIE
-               append-ldflags -nopie
-       fi
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with booke)
-               $(use_with lzma)
-               $(use_with xen)
-               $(use_with zlib)
-               )
-       autotools-utils_src_configure
-}
-
-src_install() {
-       autotools-utils_src_install
-
-       dodoc "${FILESDIR}"/README.Gentoo
-
-       newinitd "${FILESDIR}"/kexec.init-${PVR} kexec
-       newconfd "${FILESDIR}"/kexec.conf-${PV} kexec
-
-       insinto /etc
-       doins "${FILESDIR}"/kexec.conf
-
-       systemd_dounit "${FILESDIR}"/kexec.service
-}
-
-pkg_postinst() {
-       if systemd_is_booted || has_version sys-apps/systemd; then
-               elog "For systemd support the new config file is"
-               elog "   /etc/kexec.conf"
-               elog "Please adopt it to your needs as there is no autoconfig anymore"
-       fi
-}