From ddfaadddff98bf2d3a19e1dd32fef412bc2fbff4 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 14 Oct 2020 13:08:47 -0700 Subject: sys-boot/yaboot-static: Drop old versions Signed-off-by: Matt Turner --- sys-boot/yaboot-static/Manifest | 2 - sys-boot/yaboot-static/files/sysfs-ofpath.patch | 105 --------------------- .../yaboot-static/yaboot-static-1.3.14-r1.ebuild | 43 --------- .../yaboot-static/yaboot-static-1.3.16-r1.ebuild | 37 -------- .../yaboot-static/yaboot-static-1.3.17-r1.ebuild | 41 -------- 5 files changed, 228 deletions(-) delete mode 100644 sys-boot/yaboot-static/files/sysfs-ofpath.patch delete mode 100644 sys-boot/yaboot-static/yaboot-static-1.3.14-r1.ebuild delete mode 100644 sys-boot/yaboot-static/yaboot-static-1.3.16-r1.ebuild delete mode 100644 sys-boot/yaboot-static/yaboot-static-1.3.17-r1.ebuild (limited to 'sys-boot/yaboot-static') diff --git a/sys-boot/yaboot-static/Manifest b/sys-boot/yaboot-static/Manifest index f45d6aaae944..77a7d03ac7d5 100644 --- a/sys-boot/yaboot-static/Manifest +++ b/sys-boot/yaboot-static/Manifest @@ -1,3 +1 @@ -DIST yaboot-static-1.3.14.tbz2 154587 BLAKE2B 258641b2c12bd7877976d7b22b23a15443327f34c7a07bb60675e040e4b9ba1a9deff56d64c391761d2fafbf830fec7172164e0786beb0cd2971179444d3dcd8 SHA512 e175fd3b31c8e26dd7177ab3c995015ebeb34f2877e1e64eabb3cbb21d0cb0e41e9c60c423e07ebb48f43ccd60ff1ff95a2001d0af220531be1bd25e04cf9bdc -DIST yaboot-static-1.3.16.tbz2 159798 BLAKE2B 8ca04f7c2a43444898c3b057860ccc295c6aa2739fed5aff430563cdfa7395885176a0b8cd8f0e2e00effbd42bcc1f76c6502cf367594c83ffa71f8682dca120 SHA512 9aaf4432764631db923638d11d87868e9774ea6bec875110af1cd21a818c59781b7beebac4848a6a32aa592816fded214f5c6b159ecbd1654a0c6051c42dd580 DIST yaboot-static-1.3.17.tbz2 162142 BLAKE2B ddaa1e01c08b926a0fb295e350ba8a80a0b2c5d0cc7a8346d05e7e6c7441b9748f781a82382afcaad770ed04ebd4e3032bd16e605b8ad984b13ab9564500890a SHA512 23caf8d7308aba7402f13fc558e2182f63317fa7cf502899503247d2d2b8741b8327b447a50edce775eed0ea02fed5b675f4b40c8bafd956cbd25662c9f2ad72 diff --git a/sys-boot/yaboot-static/files/sysfs-ofpath.patch b/sys-boot/yaboot-static/files/sysfs-ofpath.patch deleted file mode 100644 index 7a3659100495..000000000000 --- a/sys-boot/yaboot-static/files/sysfs-ofpath.patch +++ /dev/null @@ -1,105 +0,0 @@ ---- usr/sbin/ofpath 2008-08-03 04:00:35.000000000 -0400 -+++ usr/sbin/ofpath 2009-01-09 13:46:12.000000000 -0500 -@@ -337,15 +337,18 @@ - - ide_ofpath() - { -- if [ ! -L "/proc/ide/$DEVNODE" ] ; then -+ if [ ! -L "/proc/ide/$DEVNODE" ] && [ ! -e "/sys/block/$DEVNODE" ] ; then - echo 1>&2 "$PRG: /dev/$DEVNODE: Device not configured" - return 1 - fi - -- local IDEBUS="$(v=`readlink /proc/ide/$DEVNODE` ; echo ${v%%/*} )" -- if [ -z "$IDEBUS" ] ; then -- echo 1>&2 "$PRG: BUG: IDEBUS == NULL" -- return 1 -+ if [ -L "/proc/ide/$DEVNODE" ] ; then -+ local USE_OLD_PROC=1 -+ local IDEBUS="$(v=`readlink /proc/ide/$DEVNODE` ; echo ${v%%/*} )" -+ if [ -z "$IDEBUS" ] ; then -+ echo 1>&2 "$PRG: BUG: IDEBUS == NULL" -+ return 1 -+ fi - fi - - case "$(uname -r)" in -@@ -363,7 +366,8 @@ - echo 1>&2 "$PRG: Unable to determine sysfs mountpoint" - return 1 - fi -- local OF1275IDE="${SYS}/block/${DEVNODE}/device/../../devspec" -+ local OF1275IDE=$(cd -P "${SYS}/block/${DEVNODE}/device" && pwd) -+ OF1275IDE="${OF1275IDE}/../../devspec" - ;; - *) - local OF1275IDE="/proc/ide/$IDEBUS/devspec" -@@ -402,34 +406,41 @@ - return 1 - fi - -- if [ ! -f "/proc/ide/${IDEBUS}/channel" ] ; then -- echo 1>&2 "$PRG: KERNEL BUG: /proc/ide/${IDEBUS}/channel does not exist" -- return 1 -- fi -- -- case "$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)" in -- ide|ata) -- local MASTER="/disk@0" -- local SLAVE="/disk@1" -- ;; -- pci-ide|pci-ata) -- local MASTER="/@$(cat /proc/ide/${IDEBUS}/channel)/disk@0" -- local SLAVE="/@$(cat /proc/ide/${IDEBUS}/channel)/disk@1" -- ;; -- scsi) ## some lame controllers pretend they are scsi, hopefully all kludges are created equal. -- local MASTER="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 0))" -- local SLAVE="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 1))" -- ;; -- spi) -- local MASTER="/disk@$(cat /proc/ide/${IDEBUS}/channel),0" -- local SLAVE="/disk@$(cat /proc/ide/${IDEBUS}/channel),1" -- ;; -- *) -- echo 1>&2 "$PRG: Unsupported IDE device type: \"$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)\"" -- return 1 -- ;; -- esac -+ -+ if [ "${USE_OLD_PROC}" = "1" ] ; then -+ if [ ! -f "/proc/ide/${IDEBUS}/channel" ] ; then -+ echo 1>&2 "$PRG: KERNEL BUG: /proc/ide/${IDEBUS}/channel does not exist" -+ return 1 -+ fi - -+ case "$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)" in -+ ide|ata) -+ local MASTER="/disk@0" -+ local SLAVE="/disk@1" -+ ;; -+ pci-ide|pci-ata) -+ local MASTER="/@$(cat /proc/ide/${IDEBUS}/channel)/disk@0" -+ local SLAVE="/@$(cat /proc/ide/${IDEBUS}/channel)/disk@1" -+ ;; -+ scsi) ## some lame controllers pretend they are scsi, hopefully all kludges are created equal. -+ local MASTER="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 0))" -+ local SLAVE="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 1))" -+ ;; -+ spi) -+ local MASTER="/disk@$(cat /proc/ide/${IDEBUS}/channel),0" -+ local SLAVE="/disk@$(cat /proc/ide/${IDEBUS}/channel),1" -+ ;; -+ *) -+ echo 1>&2 "$PRG: Unsupported IDE device type: \"$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)\"" -+ return 1 -+ ;; -+ esac -+ else -+ ### I don't know what other disks would look like... FIXME -+ local MASTER="/disk@0" -+ local SLAVE="/disk@1" -+ fi -+ - case "$DEVNODE" in - hda|hdc|hde|hdg|hdi|hdk|hdm|hdo) - echo "${DEVSPEC}${MASTER}:$PARTITION" diff --git a/sys-boot/yaboot-static/yaboot-static-1.3.14-r1.ebuild b/sys-boot/yaboot-static/yaboot-static-1.3.14-r1.ebuild deleted file mode 100644 index 72f3850f3c17..000000000000 --- a/sys-boot/yaboot-static/yaboot-static-1.3.14-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# Generated by using quickpkg on a ppc32 machine, compiled with -O2 -pipe. - -EAPI="5" - -inherit eutils - -DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware" -HOMEPAGE="http://yaboot.ozlabs.org/" -SRC_URI="mirror://gentoo/yaboot-static-${PV}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ppc ppc64" -IUSE="ibm" - -DEPEND="sys-apps/powerpc-utils" -RDEPEND="!sys-boot/yaboot - !ibm? ( - sys-fs/hfsutils - sys-fs/hfsplusutils - sys-fs/mac-fdisk - )" - -S=${WORKDIR} - -QA_PRESTRIPPED=" - /usr/lib/yaboot/yaboot - /usr/lib/yaboot/yaboot.chrp - /usr/lib/yaboot/addnote -" - -src_prepare() { - epatch "${FILESDIR}"/sysfs-ofpath.patch -} - -src_install() { - # don't blow away the user's old conf file - mv "${WORKDIR}"/etc/yaboot.conf{,.sample} || die - cp -pPR "${WORKDIR}"/* "${D}" || die -} diff --git a/sys-boot/yaboot-static/yaboot-static-1.3.16-r1.ebuild b/sys-boot/yaboot-static/yaboot-static-1.3.16-r1.ebuild deleted file mode 100644 index 4ed2be3006cb..000000000000 --- a/sys-boot/yaboot-static/yaboot-static-1.3.16-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# Generated by using quickpkg on a ppc32 machine, compiled with -O2 -pipe. - -EAPI="5" - -inherit eutils - -DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware" -HOMEPAGE="http://yaboot.ozlabs.org/" -SRC_URI="mirror://gentoo/yaboot-static-${PV}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ppc ppc64" -IUSE="ibm" - -DEPEND="sys-apps/powerpc-utils" -RDEPEND="!sys-boot/yaboot - !ibm? ( - sys-fs/hfsutils - sys-fs/hfsplusutils - sys-fs/mac-fdisk - )" - -S=${WORKDIR} - -QA_PRESTRIPPED=" - /usr/lib/yaboot/yaboot - /usr/lib/yaboot/yaboot.chrp - /usr/lib/yaboot/addnote -" - -src_install() { - cp -pPR "${WORKDIR}"/* "${D}" || die -} diff --git a/sys-boot/yaboot-static/yaboot-static-1.3.17-r1.ebuild b/sys-boot/yaboot-static/yaboot-static-1.3.17-r1.ebuild deleted file mode 100644 index 531874033bde..000000000000 --- a/sys-boot/yaboot-static/yaboot-static-1.3.17-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# Generated by using quickpkg on a ppc32 machine, compiled with -O2 -pipe. - -EAPI="5" - -inherit eutils - -DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware" -HOMEPAGE="http://yaboot.ozlabs.org/" -SRC_URI="mirror://gentoo/yaboot-static-${PV}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ppc ppc64" -IUSE="ibm" - -DEPEND="sys-apps/powerpc-utils" -RDEPEND="!sys-boot/yaboot - !ibm? ( - sys-fs/hfsutils - sys-fs/hfsplusutils - sys-fs/mac-fdisk - )" - -S=${WORKDIR} - -QA_PRESTRIPPED=" - /usr/lib/yaboot/yaboot - /usr/lib/yaboot/yaboot.chrp - /usr/lib/yaboot/addnote -" - -src_prepare() { - epatch "${FILESDIR}/new-ofpath-devspec.patch" -} - -src_install() { - cp -pPR "${WORKDIR}"/* "${D}" || die -} -- cgit v1.2.3-65-gdbad