* [gentoo-commits] repo/gentoo:master commit in: sys-boot/dvhtool/
@ 2020-09-17 23:04 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2020-09-17 23:04 UTC (permalink / raw
To: gentoo-commits
commit: c6dbc4964c08640dd3de343748cd8cc4145cb0d0
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 17 22:46:40 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Sep 17 23:03:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6dbc496
sys-boot/dvhtool: port to EAPI=7
* Fix other various QA issues
Closes: https://bugs.gentoo.org/742125
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild | 26 +++++++++++++++-----------
1 file 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 784aecf4b35..01c70dd3d89 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
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/dvhtool/
@ 2022-03-26 0:01 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-03-26 0:01 UTC (permalink / raw
To: gentoo-commits
commit: fdce1b33fa080e337513aad7560775bd1cd6619e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 25 23:53:21 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 00:00:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdce1b33
sys-boot/dvhtool: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
index 01c70dd3d890..6e23f2cb51d4 100644
--- a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
+++ b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -37,11 +37,11 @@ src_prepare() {
}
src_configure() {
- CC=$(tc-getCC) LD=$(tc-getLD) \
+ CC="$(tc-getCC)" LD="$(tc-getLD)" \
econf
}
src_compile() {
- CC=$(tc-getCC) LD=$(tc-getLD) \
+ CC="$(tc-getCC)" LD="$(tc-getLD)" \
emake
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/dvhtool/
@ 2022-09-22 4:09 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-09-22 4:09 UTC (permalink / raw
To: gentoo-commits
commit: 34d751ba89e925d8b0104cec3112c48e7924a978
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 22 04:04:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 22 04:05:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d751ba
sys-boot/dvhtool: use PV in SRC_URI
Avoids mistakes on bumping and why not?
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
index 6e23f2cb51d4..ba84fd2db50a 100644
--- a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
+++ b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
@@ -7,7 +7,7 @@ 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"
-SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_1.0.1.orig.tar.gz"
+SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_${PV}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/dvhtool/
@ 2024-08-05 7:18 Joonas Niilola
0 siblings, 0 replies; 4+ messages in thread
From: Joonas Niilola @ 2024-08-05 7:18 UTC (permalink / raw
To: gentoo-commits
commit: 3ef89c40f6bc061baf74834ae21e765f1872ffbf
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Tue Jul 30 12:22:45 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 5 07:10:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef89c40
sys-boot/dvhtool: remove empty variables
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
index ba84fd2db50a..ac542155c604 100644
--- a/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
+++ b/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -8,17 +8,12 @@ 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"
SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_${PV}.orig.tar.gz"
+S="${S}.orig"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~x86"
-IUSE=""
-DEPEND=""
-RDEPEND=""
-
-S="${S}.orig"
-
PATCHES=(
"${FILESDIR}/${P}-debian.diff"
"${FILESDIR}/${P}-debian-warn_type_guess.diff"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-05 7:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-22 4:09 [gentoo-commits] repo/gentoo:master commit in: sys-boot/dvhtool/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-08-05 7:18 Joonas Niilola
2022-03-26 0:01 Sam James
2020-09-17 23:04 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox