summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-04-29 10:39:27 +0100
committerSam James <sam@gentoo.org>2022-04-29 11:20:36 +0100
commit331b418809e34f480eedf57e4c49a741d73327ec (patch)
treea35f3a67bf49d0290484caa31940b3ccb4db49fc
parentapp-emulation/guestfs-tools: drop 1.46.1-r1 (diff)
downloadgentoo-331b418809e34f480eedf57e4c49a741d73327ec.tar.gz
gentoo-331b418809e34f480eedf57e4c49a741d73327ec.tar.bz2
gentoo-331b418809e34f480eedf57e4c49a741d73327ec.zip
app-emulation/libguestfs-appliance: drop 1.40.1
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--app-emulation/libguestfs-appliance/Manifest1
-rw-r--r--app-emulation/libguestfs-appliance/libguestfs-appliance-1.40.1.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/app-emulation/libguestfs-appliance/Manifest b/app-emulation/libguestfs-appliance/Manifest
index e498573d8eb0..6f9b2b913935 100644
--- a/app-emulation/libguestfs-appliance/Manifest
+++ b/app-emulation/libguestfs-appliance/Manifest
@@ -1,2 +1 @@
-DIST appliance-1.40.1.tar.xz 111566640 BLAKE2B b6ddd3b120a466ce343d67d9e058c201a78f5e605b8bbc2d47fc30c5eaaa874cc032b879a67c5f134b8fa65c58fc27893b062de0c3a21705b64766dd86df648f SHA512 2d63b2ce8850929b42ddc91518b0e2b37d13e358be94bb54899da6c310afa308d708a3443b9f3b3aa3c46f4f2079036a6a4b34027788f183c17a20b68fcf4e6e
DIST appliance-1.46.0.tar.xz 145436856 BLAKE2B d9ed31f533a2772b0f506176b39bfdfdec1421fe4ff7934ccdb1db0cb2644d477211ec1a2d372d7e5dd0a8f278f47a39bff813b7bc4c9a038258a5f6358b4e91 SHA512 842119bdf95dbbd61328891e9bd0b557bed90ba79c6419ee18d1a79cd4a301ea6922339b9e80ac314ff3e16498e9d3c594861aebe8e0fc2db41d285eb8e5d578
diff --git a/app-emulation/libguestfs-appliance/libguestfs-appliance-1.40.1.ebuild b/app-emulation/libguestfs-appliance/libguestfs-appliance-1.40.1.ebuild
deleted file mode 100644
index 5e02fc97cf98..000000000000
--- a/app-emulation/libguestfs-appliance/libguestfs-appliance-1.40.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CHECKREQS_DISK_USR=500M
-CHECKREQS_DISK_BUILD=500M
-
-inherit check-reqs
-
-DESCRIPTION="VM appliance disk image used in libguestfs package"
-HOMEPAGE="https://libguestfs.org/"
-SRC_URI="https://libguestfs.org/download/binaries/appliance/appliance-${PV}.tar.xz"
-S="${WORKDIR}"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="app-arch/xz-utils"
-# Mixing libguestfs versions causes weird problems. #501588
-RDEPEND="!<app-emulation/libguestfs-${PV}"
-
-src_unpack() {
- # We'll unpack the tarball directly into ${D} to speed up install.
- # Otherwise we need to duplicate hundreds of data.
- :
-}
-
-src_install() {
- dodir /usr/share/guestfs
- cd "${ED}"/usr/share/guestfs || Die
- unpack ${A}
-
- cd appliance || die
- dodoc README*
- # Don't rm README.* here, at least README.fixed is needed for libguestfs, see
- # https://bugzilla.redhat.com/show_bug.cgi?id=1183780
- chmod 755 . || die
- chmod 644 * || die
-
- newenvd "${FILESDIR}"/env.file 99${PN}
-}
-
-pkg_postinst() {
- # bug #776790
- elog "Please run . ${EROOT}/etc/profile before attempting to use this package!"
-}