From: "Richard Farina" <zerochaos@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/memtest86+/
Date: Tue, 19 Jun 2018 19:54:27 +0000 (UTC) [thread overview]
Message-ID: <1529438042.6ce05dd6b231bcd06f833fb0449eab39b11fce1e.zerochaos@gentoo> (raw)
commit: 6ce05dd6b231bcd06f833fb0449eab39b11fce1e
Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 19 19:50:37 2018 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue Jun 19 19:54:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce05dd6
sys-apps/memtest86+: install to /usr/share/${PN}
make the files available without forcing mount of /boot,
mostly for the purposes of catalyst. committed with permission
of floppym
Package-Manager: Portage-2.3.40, Repoman-2.3.9
...6+-5.01-r3.ebuild => memtest86+-5.01-r4.ebuild} | 66 +++++++++++++++-------
sys-apps/memtest86+/metadata.xml | 3 +-
2 files changed, 47 insertions(+), 22 deletions(-)
diff --git a/sys-apps/memtest86+/memtest86+-5.01-r3.ebuild b/sys-apps/memtest86+/memtest86+-5.01-r4.ebuild
similarity index 56%
rename from sys-apps/memtest86+/memtest86+-5.01-r3.ebuild
rename to sys-apps/memtest86+/memtest86+-5.01-r4.ebuild
index 54b1ab6e21d..e9528e637a8 100644
--- a/sys-apps/memtest86+/memtest86+-5.01-r3.ebuild
+++ b/sys-apps/memtest86+/memtest86+-5.01-r4.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI="5"
+EAPI="6"
inherit mount-boot eutils toolchain-funcs
@@ -12,15 +12,19 @@ SRC_URI="http://www.memtest.org/download/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
-IUSE="floppy iso serial"
+IUSE="+boot floppy iso serial"
BOOTDIR="/boot/memtest86plus"
-QA_PRESTRIPPED="${BOOTDIR}/memtest"
-QA_FLAGS_IGNORED="${BOOTDIR}/memtest"
+QA_PRESTRIPPED="${BOOTDIR}/memtest /usr/share/${PN}/memtest"
+QA_FLAGS_IGNORED="${BOOTDIR}/memtest /usr/share/${PN}/memtest"
RDEPEND="floppy? ( >=sys-boot/grub-0.95:0 sys-fs/mtools )"
DEPEND="iso? ( app-cdr/cdrtools )"
+pkg_pretend() {
+ use boot && mount-boot_pkg_pretend
+}
+
src_prepare() {
sed -i -e 's,0x10000,0x100000,' memtest.lds || die
epatch "${FILESDIR}/${P}-gcc-473.patch" \
@@ -39,6 +43,7 @@ src_prepare() {
config.h \
|| die "sed failed"
fi
+ default
}
src_configure() {
@@ -56,7 +61,12 @@ src_compile() {
src_test() { :; }
src_install() {
- insinto "${BOOTDIR}"
+ if use boot; then
+ insinto "${BOOTDIR}"
+ doins memtest memtest.bin
+ fi
+
+ insinto /usr/share/${PN}
use iso && newins mt*.iso memtest.iso
doins memtest memtest.bin
@@ -71,20 +81,34 @@ src_install() {
fi
}
+pkg_preinst() {
+ use boot && mount-boot_pkg_preinst
+}
+
pkg_postinst() {
- mount-boot_pkg_postinst
-
- elog "memtest86+ has been installed in ${BOOTDIR}/"
- elog "You may wish to update your bootloader configs by adding these lines:"
- elog " - For grub2 just run grub-mkconfig, a configuration file is installed"
- elog " as /etc/grub.d/39_${PN}"
- elog " - For grub legacy: (replace '?' with correct numbers for your boot partition)"
- elog " > title=${PN}"
- elog " > root (hd?,?)"
- elog " > kernel ${BOOTDIR}/memtest.bin"
- elog " - For lilo:"
- elog " > image = ${BOOTDIR}/memtest.bin"
- elog " > label = ${PN}"
- elog ""
- elog "Note: For older configs, you might have to change from 'memtest' to 'memtest.bin'."
+ if use boot; then
+ mount-boot_pkg_postinst
+
+ elog "memtest86+ has been installed in ${BOOTDIR}/"
+ elog "You may wish to update your bootloader configs by adding these lines:"
+ elog " - For grub2 just run grub-mkconfig, a configuration file is installed"
+ elog " as /etc/grub.d/39_${PN}"
+ elog " - For grub legacy: (replace '?' with correct numbers for your boot partition)"
+ elog " > title=${PN}"
+ elog " > root (hd?,?)"
+ elog " > kernel ${BOOTDIR}/memtest.bin"
+ elog " - For lilo:"
+ elog " > image = ${BOOTDIR}/memtest.bin"
+ elog " > label = ${PN}"
+ elog ""
+ elog "Note: For older configs, you might have to change from 'memtest' to 'memtest.bin'."
+ fi
+}
+
+pkg_prerm() {
+ use boot && mount-boot_pkg_prerm
+}
+
+pkg_postrm() {
+ use boot && mount-boot_pkg_postrm
}
diff --git a/sys-apps/memtest86+/metadata.xml b/sys-apps/memtest86+/metadata.xml
index fc17238d117..1745d86466f 100644
--- a/sys-apps/memtest86+/metadata.xml
+++ b/sys-apps/memtest86+/metadata.xml
@@ -6,8 +6,9 @@
<name>Gentoo Base System</name>
</maintainer>
<use>
- <flag name="serial">Compile with serial console support</flag>
+ <flag name="boot">Also install to /boot instead of just /usr/share/memtest86+/</flag>
<flag name="floppy">Install a script to create floppy disks containing memtest86+ binaries.</flag>
<flag name="iso">Compile an ISO image</flag>
+ <flag name="serial">Compile with serial console support</flag>
</use>
</pkgmetadata>
next reply other threads:[~2018-06-19 19:54 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-19 19:54 Richard Farina [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-10 10:19 [gentoo-commits] repo/gentoo:master commit in: sys-apps/memtest86+/ Sam James
2024-11-14 19:01 Ben Kohler
2024-03-29 15:18 Ben Kohler
2024-01-14 21:00 Ben Kohler
2024-01-07 17:19 Andrew Ammerlaan
2023-12-28 14:16 Ben Kohler
2023-11-03 12:23 Ben Kohler
2023-08-17 7:49 Andrew Ammerlaan
2023-07-14 13:00 Ben Kohler
2023-05-19 13:17 Ben Kohler
2023-05-19 13:05 Ben Kohler
2023-05-10 18:02 Ben Kohler
2023-03-31 12:57 Ben Kohler
2023-03-30 16:42 Sam James
2023-03-30 16:12 Arthur Zamarin
2023-02-05 13:35 Ben Kohler
2023-02-03 13:02 Ben Kohler
2022-12-30 15:59 Ben Kohler
2022-11-30 0:52 Sam James
2022-11-30 0:52 Sam James
2022-11-12 15:36 Ben Kohler
2022-10-25 18:05 Sam James
2022-10-25 13:00 Ben Kohler
2022-08-16 15:15 Ben Kohler
2022-07-18 13:47 Ben Kohler
2022-07-02 12:01 Ben Kohler
2022-07-01 15:36 Ben Kohler
2022-06-29 15:42 Ben Kohler
2022-06-14 16:05 Ben Kohler
2022-01-18 12:24 Sam James
2022-01-18 12:24 Sam James
2022-01-04 16:13 Ben Kohler
2021-12-03 16:17 Ben Kohler
2021-12-03 16:17 Ben Kohler
2021-10-03 11:28 David Seifert
2021-09-16 14:56 Ben Kohler
2021-09-16 14:56 Ben Kohler
2021-08-13 13:22 Lars Wendler
2021-05-26 8:33 David Seifert
2021-05-23 23:05 Agostino Sarubbo
2021-05-23 22:28 Agostino Sarubbo
2021-04-21 19:02 Sam James
2019-11-13 19:58 Aaron Bauman
2019-09-01 7:43 Mikle Kolyada
2018-08-08 21:56 Mikle Kolyada
2018-08-06 22:20 Thomas Deutschmann
2018-06-03 2:59 Aaron Bauman
2017-03-17 10:26 Agostino Sarubbo
2017-03-17 10:15 Agostino Sarubbo
2017-03-15 7:45 Mike Frysinger
2017-03-14 23:37 Mike Frysinger
2017-02-09 15:29 Mike Frysinger
2015-12-12 23:24 Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1529438042.6ce05dd6b231bcd06f833fb0449eab39b11fce1e.zerochaos@gentoo \
--to=zerochaos@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox