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/files/, sys-boot/palo/
Date: Sun, 27 Sep 2015 06:11:55
Message-Id: 1443334305.a4e36398fda3a0889172eb544590a4ce466a7ab0.jer@gentoo
1 commit: a4e36398fda3a0889172eb544590a4ce466a7ab0
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 06:11:45 2015 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 06:11:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e36398
7
8 sys-boot/palo: Old.
9
10 Package-Manager: portage-2.2.20.1
11
12 sys-boot/palo/Manifest | 1 -
13 sys-boot/palo/files/palo-1.92-toolchain.patch | 20 ------------
14 sys-boot/palo/palo-1.92.ebuild | 47 ---------------------------
15 3 files changed, 68 deletions(-)
16
17 diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest
18 index 0e4ce3f..d133cd9 100644
19 --- a/sys-boot/palo/Manifest
20 +++ b/sys-boot/palo/Manifest
21 @@ -1,2 +1 @@
22 -DIST palo_1.92.tar.gz 122554 SHA256 9782578cae5a990c5037e8a9feb43d3d6802412918b97c27a04c1b9113de3c4f SHA512 a0b01b12bf80c6727a9a5eff1189e7515d3f21e8fe68712d0cb944e06f6d0f91272e5457b97ed596f06fd51505c7f62f654d1d3081c79443023cbbd0cb98e58c WHIRLPOOL 46b498b48a35ff2557bf91182b2daa30211f0de37f3c986794de83c58b3b633ebca21c19542c16f8b9d229a5f81d1419189b72adde8d7b783fa053c605e73c14
23 DIST palo_1.95.tar.xz 102884 SHA256 c168df0255e83f06cf5ae4fd5266f9ee51ba3e9412a9c1bf3131ecff52cec9e8 SHA512 91960a7bbf5a4985809a082d4e75ee25670f6030e701bc106807de4f89c3617e47cf39ef857684b62dcaf906571f6f095b3caa371793754495567f4a14cc8a9d WHIRLPOOL cdf119aa0892fecce4c4dae73053dd9f3c9745a17276012b1d6fb649e3e55eea561dec8f40feb52fb6477f5b289a61844d39c0d8d0ab2ba2a2501c1323b28305
24
25 diff --git a/sys-boot/palo/files/palo-1.92-toolchain.patch b/sys-boot/palo/files/palo-1.92-toolchain.patch
26 deleted file mode 100644
27 index b72947b..0000000
28 --- a/sys-boot/palo/files/palo-1.92-toolchain.patch
29 +++ /dev/null
30 @@ -1,20 +0,0 @@
31 ---- a/palo/Makefile
32 -+++ b/palo/Makefile
33 -@@ -14,7 +14,7 @@
34 - ifeq ($(strip ${OS}),HP-UX)
35 - CFLAGS=-g -O -I../include -I../lib -I$(PA)/include
36 - else
37 --CFLAGS=-g -O -I../include -I../lib
38 -+CFLAGS+= -O -I../include -I../lib
39 - endif
40 -
41 - # LDFLAGS=-Wl,-Bstatic
42 -@@ -34,7 +34,7 @@
43 - $(CC) $(CFLAGS) $(LDFLAGS) -o palo palo.a build.o
44 -
45 - palo.a: $(OFILES)
46 -- ar rv palo.a $?
47 -+ $(AR) rv palo.a $?
48 -
49 - mkbootable: $(OFILES2)
50 - $(CC) $(CFLAGS) $(LDFLAGS) -o mkbootable $(OFILES2)
51
52 diff --git a/sys-boot/palo/palo-1.92.ebuild b/sys-boot/palo/palo-1.92.ebuild
53 deleted file mode 100644
54 index 6ee80b6..0000000
55 --- a/sys-boot/palo/palo-1.92.ebuild
56 +++ /dev/null
57 @@ -1,47 +0,0 @@
58 -# Copyright 1999-2014 Gentoo Foundation
59 -# Distributed under the terms of the GNU General Public License v2
60 -# $Id$
61 -
62 -EAPI=5
63 -
64 -inherit eutils flag-o-matic toolchain-funcs
65 -
66 -DESCRIPTION="PALO : PArisc Linux Loader"
67 -HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
68 -SRC_URI="https://dev.gentoo.org/~jer/${P/-/_}.tar.gz"
69 -
70 -LICENSE="GPL-2"
71 -SLOT="0"
72 -KEYWORDS="-* hppa"
73 -IUSE=""
74 -
75 -src_prepare() {
76 - epatch \
77 - "${FILESDIR}"/${PN}-1.92-toolchain.patch
78 - sed -i palo/Makefile -e '/^LDFLAGS=/d' || die
79 -}
80 -
81 -src_compile() {
82 - local target
83 - for target in '-C palo' '-C ipl' 'iplboot'; do
84 - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
85 - done
86 -}
87 -
88 -src_install() {
89 - into /
90 - dosbin palo/palo
91 -
92 - doman palo.8
93 - dohtml README.html
94 - dodoc Changes TODO debian/changelog
95 -
96 - insinto /etc
97 - doins "${FILESDIR}"/palo.conf
98 -
99 - insinto /usr/share/palo
100 - doins iplboot
101 -
102 - insinto /etc/kernel/postinst.d/
103 - INSOPTIONS="-m 0744" doins "${FILESDIR}"/99palo
104 -}