Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/os-prober/
Date: Tue, 13 Jul 2021 13:44:10
Message-Id: 1626183341.dabb1f1e8c2631155520e81db5f8508d5d1fdd45.bkohler@gentoo
1 commit: dabb1f1e8c2631155520e81db5f8508d5d1fdd45
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 13 13:35:41 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 13 13:35:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dabb1f1e
7
8 sys-boot/os-prober: drop old
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 sys-boot/os-prober/Manifest | 1 -
14 sys-boot/os-prober/os-prober-1.77.ebuild | 86 --------------------------------
15 2 files changed, 87 deletions(-)
16
17 diff --git a/sys-boot/os-prober/Manifest b/sys-boot/os-prober/Manifest
18 index 99438f1607b..3d27c08a60f 100644
19 --- a/sys-boot/os-prober/Manifest
20 +++ b/sys-boot/os-prober/Manifest
21 @@ -1,2 +1 @@
22 -DIST os-prober_1.77.tar.xz 26660 BLAKE2B cff8d96927cf251e9d8ee95561289e9c49a89fbcf9045e7c7169f73b1eeb151797db7b075ebc14dbbdd96996d007b07001e2843cf835defd675f63595614297b SHA512 4d9c22ccc4d950644a06a17ec4424aca5ff82aeb20052dc389dd451b6b9a1799c5a9438644a29093153730af42066abbbbb78f593f2564314c9adbd43f60e39b
23 DIST os-prober_1.78.tar.xz 26848 BLAKE2B eee68ab9be36807d86e8bda831cfd490a01d20d9cc3f84ca50d5e1143e5a2dd66e47d3bdf2b4780cf73cc692f0ffc9497c6cbf13ce7aa0057e996b13d706c8f7 SHA512 7a0425130d17ce8554e7d0797b53e3a984f63a2fdcf8e668c83d357418d8c68259ada25bc350b199adece2e683d9014f234e3a83ce5ab7485be2e69c45874640
24
25 diff --git a/sys-boot/os-prober/os-prober-1.77.ebuild b/sys-boot/os-prober/os-prober-1.77.ebuild
26 deleted file mode 100644
27 index 7c4cb9daf1b..00000000000
28 --- a/sys-boot/os-prober/os-prober-1.77.ebuild
29 +++ /dev/null
30 @@ -1,86 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit readme.gentoo-r1 toolchain-funcs
36 -
37 -DESCRIPTION="Utility to detect other OSs on a set of drives"
38 -HOMEPAGE="https://packages.debian.org/source/sid/os-prober"
39 -SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${PV}.tar.xz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE=""
45 -
46 -# grub-mount needed per bug #607518
47 -RDEPEND="sys-boot/grub:2[mount]"
48 -DEPEND=""
49 -
50 -# bug 594250
51 -QA_MULTILIB_PATHS="usr/lib/os-prober/.*"
52 -
53 -PATCHES=( "${FILESDIR}"/${PN}-1.76-exherbo.patch )
54 -
55 -DOC_CONTENTS="
56 - If you intend for os-prober to detect versions of Windows installed on
57 - NTFS-formatted partitions, your system must be capable of reading the
58 - NTFS filesystem. One way to do this is by installing sys-fs/ntfs3g
59 -"
60 -
61 -src_prepare() {
62 - default
63 - # use default GNU rules
64 - rm Makefile || die 'rm Makefile failed'
65 -}
66 -
67 -src_compile() {
68 - tc-export CC
69 - emake newns
70 -}
71 -
72 -src_install() {
73 - dobin os-prober linux-boot-prober
74 -
75 - # Note: as no shared libraries are installed, /usr/lib is correct
76 - exeinto /usr/lib/os-prober
77 - doexe newns
78 -
79 - insinto /usr/share/os-prober
80 - doins common.sh
81 -
82 - keepdir /var/lib/os-prober
83 -
84 - local debarch=${ARCH%-*} dir
85 -
86 - case ${debarch} in
87 - amd64) debarch=x86 ;;
88 - ppc|ppc64) debarch=powerpc ;;
89 - esac
90 -
91 - for dir in os-probes{,/mounted,/init} linux-boot-probes{,/mounted}; do
92 - exeinto /usr/lib/${dir}
93 - doexe ${dir}/common/*
94 - if [[ -d ${dir}/${debarch} ]]; then
95 - doexe ${dir}/${debarch}/*
96 - fi
97 - if [[ -d ${dir}/${debarch}/efi ]]; then
98 - exeinto /usr/lib/${dir}/efi
99 - doexe ${dir}/${debarch}/efi/*
100 - fi
101 - done
102 -
103 - if use amd64 || use x86; then
104 - exeinto /usr/lib/os-probes/mounted
105 - doexe os-probes/mounted/powerpc/20macosx
106 - fi
107 -
108 - einstalldocs
109 - dodoc debian/changelog
110 -
111 - readme.gentoo_create_doc
112 -}
113 -
114 -pkg_postinst() {
115 - readme.gentoo_print_elog
116 -}