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:44:49
Message-Id: 1590007483.75ede7d0290aa5b218574b354a07520a1aa376cc.jer@gentoo
1 commit: 75ede7d0290aa5b218574b354a07520a1aa376cc
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 20 20:41:19 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 20:44:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ede7d0
7
8 sys-boot/palo: Version 2.13
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 sys-boot/palo/Manifest | 1 +
14 sys-boot/palo/palo-2.13.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest
18 index 3a5e40c4d03..e6abab36f8c 100644
19 --- a/sys-boot/palo/Manifest
20 +++ b/sys-boot/palo/Manifest
21 @@ -1 +1,2 @@
22 DIST palo-2.12.tar.gz 124911 BLAKE2B 79fa572e118e77114dcb3b888abc65163bd56cb44cf69cd25bcaa33a7c6151b8254bf00c459ad17ca1d948f9b440378133f048e2add123a757908c108b802703 SHA512 6ea20490b84bf18a1d1e8037de453f5f480cba8403b267d4d63fceceffb39e18545c6d20c8dd7b07044ff5567eedd2c58b2a626971b53d1d35c5b3a4e8fefbf0
23 +DIST palo-2.13.tar.gz 125108 BLAKE2B 9c73e66be7950ae6e7fd0a5dcb9cf460dfcb469580a25c121eb7ffc41aaf4a0b67d7f77ddf7a12479718c6ffc64a3a9327ab8c92cc73e79cffad07d61c6fd120 SHA512 6ecde0720fcf672cd7baf71bb04e16f2a1412d958ec35c4e2c9a7a3b372dab1a12ce6e47198ac8500aca750cbbb7190c3476ea626007c3418eb6c23f06011d37
24
25 diff --git a/sys-boot/palo/palo-2.13.ebuild b/sys-boot/palo/palo-2.13.ebuild
26 new file mode 100644
27 index 00000000000..17741656154
28 --- /dev/null
29 +++ b/sys-boot/palo/palo-2.13.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="PALO : PArisc Linux Loader"
38 +HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
39 +SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="-* ~hppa"
44 +
45 +PATCHES=(
46 + "${FILESDIR}"/${PN}-2.00-toolchain.patch
47 +)
48 +
49 +src_compile() {
50 + local target
51 + for target in '-C palo' '-C ipl' 'iplboot'; do
52 + emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
53 + done
54 +}
55 +
56 +src_install() {
57 + into /
58 + dosbin palo/palo
59 +
60 + insinto /usr/share/palo
61 + doins iplboot
62 +
63 + insinto /etc
64 + doins "${FILESDIR}"/palo.conf
65 +
66 + insinto /etc/kernel/postinst.d
67 + insopts -m 0744
68 + doins "${FILESDIR}"/99palo
69 +
70 + doman palo.8
71 +
72 + dodoc TODO debian/changelog README.html
73 +}