public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/os-prober/
Date: Thu, 27 Jun 2019 13:34:40 +0000 (UTC)	[thread overview]
Message-ID: <1561642474.84d10e06d0a1c78b7f8bf4839f6f18d8b8ec861a.polynomial-c@gentoo> (raw)

commit:     84d10e06d0a1c78b7f8bf4839f6f18d8b8ec861a
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 27 13:33:07 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 13:34:34 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84d10e06

sys-boot/os-prober: Bump to version 1.77

Thanks-to: paintchip <rickfoland <AT> hotmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12175
Closes: https://bugs.gentoo.org/680538
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-boot/os-prober/Manifest              |  1 +
 sys-boot/os-prober/os-prober-1.77.ebuild | 87 ++++++++++++++++++++++++++++++++
 2 files changed, 88 insertions(+)

diff --git a/sys-boot/os-prober/Manifest b/sys-boot/os-prober/Manifest
index 6308e693288..f611d9e9304 100644
--- a/sys-boot/os-prober/Manifest
+++ b/sys-boot/os-prober/Manifest
@@ -1 +1,2 @@
 DIST os-prober_1.76.tar.xz 26432 BLAKE2B edefc2be0bb51fff3cc0cd582c46a50871228b2c94312e50320e717b9f218854a0682d0b4e66b4bef6455751fcf016fa290ab03923d89acc6965bbc9efcbaafd SHA512 64800c99e0959a35edb639f50d2467453c6f6a7d7fa7a8d74141be36e0ade96ce4f874ba6376adfd663585ce9f47b99038dc00c2f722e6236344047567ed14f3
+DIST os-prober_1.77.tar.xz 26660 BLAKE2B cff8d96927cf251e9d8ee95561289e9c49a89fbcf9045e7c7169f73b1eeb151797db7b075ebc14dbbdd96996d007b07001e2843cf835defd675f63595614297b SHA512 4d9c22ccc4d950644a06a17ec4424aca5ff82aeb20052dc389dd451b6b9a1799c5a9438644a29093153730af42066abbbbb78f593f2564314c9adbd43f60e39b

diff --git a/sys-boot/os-prober/os-prober-1.77.ebuild b/sys-boot/os-prober/os-prober-1.77.ebuild
new file mode 100644
index 00000000000..f3a75923bd7
--- /dev/null
+++ b/sys-boot/os-prober/os-prober-1.77.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 toolchain-funcs
+
+DESCRIPTION="Utility to detect other OSs on a set of drives"
+HOMEPAGE="https://packages.debian.org/source/sid/os-prober"
+SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${PV}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# grub-mount needed per bug #607518
+RDEPEND="sys-boot/grub:2[mount]"
+DEPEND=""
+
+# bug 594250
+QA_MULTILIB_PATHS="usr/lib/os-prober/.*"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.76-exherbo.patch )
+
+DOC_CONTENTS="
+	If you intend for os-prober to detect versions of Windows installed on
+	NTFS-formatted partitions, your system must be capable of reading the
+	NTFS filesystem. One way to do this is by installing sys-fs/ntfs3g
+"
+
+src_prepare() {
+	default
+	# use default GNU rules
+	rm Makefile || die 'rm Makefile failed'
+}
+
+src_compile() {
+	tc-export CC
+	emake newns
+}
+
+src_install() {
+	dobin os-prober linux-boot-prober
+
+	# Note: as no shared libraries are installed, /usr/lib is correct
+	exeinto /usr/lib/os-prober
+	doexe newns
+
+	insinto /usr/share/os-prober
+	doins common.sh
+
+	keepdir /var/lib/os-prober
+
+	local debarch=${ARCH%-*} dir
+
+	case ${debarch} in
+		amd64)		debarch=x86 ;;
+		ppc|ppc64)	debarch=powerpc ;;
+	esac
+
+	local dir
+	for dir in os-probes{,/mounted,/init} linux-boot-probes{,/mounted}; do
+		exeinto /usr/lib/${dir}
+		doexe ${dir}/common/*
+		if [[ -d ${dir}/${debarch} ]]; then
+			doexe ${dir}/${debarch}/*
+		fi
+		if [[ -d ${dir}/${debarch}/efi ]]; then
+			exeinto /usr/lib/${dir}/efi
+			doexe ${dir}/${debarch}/efi/*
+		fi
+	done
+
+	if use amd64 || use x86; then
+		exeinto /usr/lib/os-probes/mounted
+		doexe os-probes/mounted/powerpc/20macosx
+	fi
+
+	einstalldocs
+	dodoc debian/changelog
+
+	readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


             reply	other threads:[~2019-06-27 13:34 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-27 13:34 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-02 22:53 [gentoo-commits] repo/gentoo:master commit in: sys-boot/os-prober/ Sam James
2024-10-02 20:11 Sam James
2024-06-14 14:18 Ben Kohler
2024-06-14 14:18 Ben Kohler
2024-06-14 14:13 Ben Kohler
2024-05-09 14:21 Ben Kohler
2022-12-28  9:41 Pacho Ramos
2022-12-27 20:20 Sam James
2022-07-19 14:18 Ben Kohler
2022-07-19 14:18 Ben Kohler
2022-05-27 16:13 Ben Kohler
2022-04-15  6:23 Agostino Sarubbo
2022-04-14 19:36 Jakov Smolić
2022-01-04 16:13 Ben Kohler
2021-12-22 12:34 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-10-08 11:12 Ben Kohler
2021-09-28 17:33 Ben Kohler
2021-07-13 13:44 Ben Kohler
2021-04-28 17:04 Sam James
2021-04-28 17:00 Sam James
2021-03-29 12:26 Ben Kohler
2021-03-26 17:44 Ben Kohler
2021-03-26 17:44 Ben Kohler
2021-03-26 17:44 Ben Kohler
2021-03-26 17:44 Ben Kohler
2019-12-05  7:54 Pacho Ramos
2019-11-20 15:40 Agostino Sarubbo
2019-11-20 11:16 Agostino Sarubbo
2019-06-27 13:36 Lars Wendler
2018-05-14 10:21 Lars Wendler
2018-05-13 23:45 Aaron Bauman
2018-05-13 22:06 Thomas Deutschmann
2017-12-26 12:53 Pacho Ramos
2017-10-29 19:30 Jonas Stein
2017-10-29 19:24 Jonas Stein
2017-10-09 18:22 Manuel Rüger
2017-10-09 18:22 Manuel Rüger
2017-02-19 20:12 Manuel Rüger
2017-01-22  1:51 Manuel Rüger
2017-01-22  1:51 Manuel Rüger
2017-01-05 16:58 Michael Palimaka
2016-12-31 15:59 Pacho Ramos
2016-11-01 13:58 Mike Gilbert
2016-05-22 19:05 Jonathan Callen
2016-02-03  0:16 Manuel Rüger
2016-02-03  0:16 Manuel Rüger
2015-11-07 11:40 Manuel Rüger
2015-11-07 11:40 Manuel Rüger
2015-10-15 20:53 Manuel Rüger
2015-10-05 22:25 Manuel Rüger
2015-08-31 22:54 Manuel Rüger
2015-08-31 22:54 Manuel Rüger

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=1561642474.84d10e06d0a1c78b7f8bf4839f6f18d8b8ec861a.polynomial-c@gentoo \
    --to=polynomial-c@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