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