diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-09-17 18:46:40 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-09-17 19:03:57 -0400 |
commit | c6dbc4964c08640dd3de343748cd8cc4145cb0d0 (patch) | |
tree | 88e6707c998191d113a134ec6f0eef7378d1f7a9 /sys-boot | |
parent | dev-python/parsedatetime: bump to 2.6, support Python 3.9 and PyPy3 (diff) | |
download | gentoo-c6dbc4964c08640dd3de343748cd8cc4145cb0d0.tar.gz gentoo-c6dbc4964c08640dd3de343748cd8cc4145cb0d0.tar.bz2 gentoo-c6dbc4964c08640dd3de343748cd8cc4145cb0d0.zip |
sys-boot/dvhtool: port to EAPI=7
* Fix other various QA issues
Closes: https://bugs.gentoo.org/742125
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild index 784aecf4b352..01c70dd3d890 100644 --- a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild +++ b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -inherit autotools eutils toolchain-funcs +inherit autotools toolchain-funcs DESCRIPTION="Tool to copy kernel(s) into the volume header on SGI MIPS-based workstations" HOMEPAGE="http://packages.debian.org/unstable/utils/dvhtool" @@ -12,23 +12,27 @@ SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_1.0.1.orig.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~mips ~x86" + IUSE="" DEPEND="" RDEPEND="" S="${S}.orig" -src_prepare() { - # several applicable hunks from a debian patch - epatch "${FILESDIR}"/${P}-debian.diff +PATCHES=( + "${FILESDIR}/${P}-debian.diff" + "${FILESDIR}/${P}-debian-warn_type_guess.diff" + "${FILESDIR}/${P}-debian-xopen_source.diff" + "${FILESDIR}/${P}-add-raid-lvm-parttypes.patch" +) - # Newer minor patches from Debian - epatch "${FILESDIR}"/${P}-debian-warn_type_guess.diff - epatch "${FILESDIR}"/${P}-debian-xopen_source.diff +src_prepare() { + default - # Allow dvhtool to recognize Linux RAID and Linux LVM partitions - epatch "${FILESDIR}"/${P}-add-raid-lvm-parttypes.patch + # Fix automake warning + mv configure.{in,ac} || die + eapply_user eautoreconf } |