commit: f496b491de3c9214afe0e5bfeaa6ab186ee9e405 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Jun 8 07:02:01 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jun 8 07:10:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f496b491
app-emulation/libguestfs-appliance: port old to EAPI 7 Signed-off-by: Sam James <sam <AT> gentoo.org> .../libguestfs-appliance-1.38.0.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app-emulation/libguestfs-appliance/libguestfs-appliance-1.38.0.ebuild b/app-emulation/libguestfs-appliance/libguestfs-appliance-1.38.0.ebuild index 31e8b16bfd5..91cac60c818 100644 --- a/app-emulation/libguestfs-appliance/libguestfs-appliance-1.38.0.ebuild +++ b/app-emulation/libguestfs-appliance/libguestfs-appliance-1.38.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 CHECKREQS_DISK_USR=500M CHECKREQS_DISK_BUILD=500M @@ -9,20 +9,18 @@ CHECKREQS_DISK_BUILD=500M inherit check-reqs DESCRIPTION="VM appliance disk image used in libguestfs package" -HOMEPAGE="http://libguestfs.org/" -SRC_URI="http://libguestfs.org/download/binaries/appliance/appliance-${PV}.tar.xz" +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" -IUSE="" -DEPEND="app-arch/xz-utils" +BDEPEND="app-arch/xz-utils" # Mixing libguestfs versions causes weird problems. #501588 RDEPEND="!<app-emulation/libguestfs-${PV}" -S="${WORKDIR}" - src_unpack() { # We'll unpack the tarball directly into ${D} to speed up install. # Otherwise we need to duplicate hundreds of data. @@ -31,7 +29,7 @@ src_unpack() { src_install() { dodir /usr/share/guestfs - cd "${ED}"/usr/share/guestfs + cd "${ED}"/usr/share/guestfs || die unpack ${A} cd appliance || die dodoc README*
