summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-06-02 08:24:46 +0200
committerMichał Górny <mgorny@gentoo.org>2019-06-02 08:38:13 +0200
commit7dcfc3a7cdbc8000015e2e6e83e7e0d88d973480 (patch)
tree993962a1a3c7b77fca02b27ef4f35b67331bcc3e /app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild
parentapp-emulation/containers-storage: Bump to version 1.12.8 (diff)
downloadgentoo-7dcfc3a7cdbc8000015e2e6e83e7e0d88d973480.tar.gz
gentoo-7dcfc3a7cdbc8000015e2e6e83e7e0d88d973480.tar.bz2
gentoo-7dcfc3a7cdbc8000015e2e6e83e7e0d88d973480.zip
app-admin/systemrescuecd-x86: Drop 6.0.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild')
-rw-r--r--app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild69
1 files changed, 0 insertions, 69 deletions
diff --git a/app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild b/app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild
deleted file mode 100644
index f35372ef646e..000000000000
--- a/app-admin/systemrescuecd-x86/systemrescuecd-x86-6.0.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P=${P/-x86/}
-DESCRIPTION="The .iso image of SystemRescueCD rescue disk, amd64 variant"
-HOMEPAGE="http://www.sysresccd.org/"
-# Large ISO mirroring explicitly approved by infra in bug #588766
-SRC_URI="mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${MY_P}.iso"
-
-LICENSE="Apache-1.0 Apache-2.0 Artistic Artistic-2 BEER-WARE BSD BSD-2 BSD-4 CC0-1.0 CC-BY-SA-3.0 FDL-1.3+ GPL-2 GPL-2+ GPL-3+ icu ISC JasPer2.0 LGPL-2+ LGPL-2.1+ LGPL-3+ linux-firmware MaxMind2 MIT MPL-1.1 MPL-2.0 no-source-code OFL Old-MIT OPENLDAP openssl PSF-2 public-domain Sleepycat unRAR UoI-NCSA vim ZLIB"
-SLOT="${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+isohybrid"
-RESTRICT="bindist mirror"
-
-DEPEND="isohybrid? ( >=sys-boot/syslinux-4 )"
-
-S=${WORKDIR}
-
-pkg_pretend() {
- ewarn "Please note that starting with version 6.0.0, upstream has switched"
- ewarn "to Arch Linux as base of their distribution, and running on 32-bit"
- ewarn "systems is no longer supported."
-}
-
-src_install() {
- insinto "/usr/share/${PN%-*}"
- doins "${DISTDIR}/${MY_P}.iso"
-
- if use isohybrid; then
- set -- isohybrid -u "${ED%/}/usr/share/${PN%-*}/${MY_P}.iso"
- echo "${@}"
- "${@}" || die "${*} failed"
- fi
-}
-
-pkg_postinst() {
- local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
-
- # no version newer than ours? we're the newest!
- if ! has_version ">${CATEGORY}/${PF}"; then
- ln -f -s -v "${MY_P}.iso" "${f}" || die
- fi
-}
-
-pkg_postrm() {
- local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
-
- # if there is no version newer than ours installed
- if ! has_version ">${CATEGORY}/${PF}"; then
- # and we are truly and completely uninstalled...
- if [[ ! ${REPLACED_BY_VERSION} ]]; then
- # then find an older version to set the symlink to
- local newest_version=$(best_version "<${CATEGORY}/${PF}")
-
- if [[ ${newest_version} ]]; then
- # update the symlink
- ln -f -s -v "${newest_version%-r*}.iso" "${f}" || die
- else
- # last version removed? clean up the symlink
- rm -v "${f}" || die
- # and the parent directory
- rmdir "${f%/*}" || die
- fi
- fi
- fi
-}