Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/palo/
Date: Wed, 20 May 2020 20:02:54
Message-Id: 1590004965.5c8a1f566b00d6eaa447eec8b17a86a4be66d0fb.jer@gentoo
1 commit: 5c8a1f566b00d6eaa447eec8b17a86a4be66d0fb
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 20 20:02:01 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 20:02:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c8a1f56
7
8 sys-boot/palo: Old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Closes: https://bugs.gentoo.org/show_bug.cgi?id=724264
12 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
13
14 sys-boot/palo/palo-2.12.ebuild | 43 ------------------------------------------
15 1 file changed, 43 deletions(-)
16
17 diff --git a/sys-boot/palo/palo-2.12.ebuild b/sys-boot/palo/palo-2.12.ebuild
18 deleted file mode 100644
19 index 2ca5818b800..00000000000
20 --- a/sys-boot/palo/palo-2.12.ebuild
21 +++ /dev/null
22 @@ -1,43 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="PALO : PArisc Linux Loader"
30 -HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
31 -SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="-* hppa"
36 -
37 -PATCHES=(
38 - "${FILESDIR}"/${PN}-2.00-toolchain.patch
39 -)
40 -
41 -src_compile() {
42 - local target
43 - for target in '-C palo' '-C ipl' 'iplboot'; do
44 - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
45 - done
46 -}
47 -
48 -src_install() {
49 - into /
50 - dosbin palo/palo
51 -
52 - insinto /usr/share/palo
53 - doins iplboot
54 -
55 - insinto /etc
56 - doins "${FILESDIR}"/palo.conf
57 -
58 - insinto /etc/kernel/postinst.d
59 - insopts -m 0744
60 - doins "${FILESDIR}"/99palo
61 -
62 - doman palo.8
63 -
64 - dodoc TODO debian/changelog README.html
65 -}