aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-05-02 20:41:18 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-05-02 20:41:23 +0300
commita0d587cb1ae0fadb77420870da37eb936605fea0 (patch)
treeab5dd2bcc95644c9e3ba204fedaf79290097b593
parentdev-libs/qhttpengine: unkeyword s390 (diff)
downloadguru-a0d587cb.tar.gz
guru-a0d587cb.tar.bz2
guru-a0d587cb.zip
app-admin/customrescuecd-x86_64: drop 0.12.6
Dropped because of missing Manifest value Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.12.6.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.12.6.ebuild b/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.12.6.ebuild
deleted file mode 100644
index 97ae9bab2..000000000
--- a/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.12.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P="CUSTOMRESCUECD-x86_64"
-DESCRIPTION="A system rescue cd or usbstick for desktop and server based on gentoo"
-HOMEPAGE="https://sourceforge.net/projects/customrescuecd/"
-SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
-
-LICENSE="GPL-3"
-SLOT="${PV}"
-KEYWORDS="~amd64"
-RESTRICT="bindist mirror"
-
-S=${WORKDIR}
-
-src_unpack() { :; }
-
-src_install() {
- insinto "/usr/share/${PN%-*}"
- doins "${DISTDIR}/${MY_P}-${PV}.iso"
-}
-
-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}-${PV}.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
-}