Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/palo/files/, sys-boot/palo/
Date: Fri, 25 Dec 2020 12:17:57
Message-Id: 1608898666.bbe9d5d2fb6fa760ea0395a0d6b312748abc20aa.slyfox@gentoo
1 commit: bbe9d5d2fb6fa760ea0395a0d6b312748abc20aa
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 12:08:27 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 12:17:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe9d5d2
7
8 sys-boot/palo: drop old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-boot/palo/Manifest | 1 -
14 sys-boot/palo/files/palo-2.12-gcc10.patch | 11 --------
15 sys-boot/palo/palo-2.12-r1.ebuild | 44 -------------------------------
16 3 files changed, 56 deletions(-)
17
18 diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest
19 index 02a9a40b299..cc5d02da506 100644
20 --- a/sys-boot/palo/Manifest
21 +++ b/sys-boot/palo/Manifest
22 @@ -1,2 +1 @@
23 -DIST palo-2.12.tar.gz 124911 BLAKE2B 79fa572e118e77114dcb3b888abc65163bd56cb44cf69cd25bcaa33a7c6151b8254bf00c459ad17ca1d948f9b440378133f048e2add123a757908c108b802703 SHA512 6ea20490b84bf18a1d1e8037de453f5f480cba8403b267d4d63fceceffb39e18545c6d20c8dd7b07044ff5567eedd2c58b2a626971b53d1d35c5b3a4e8fefbf0
24 DIST palo-2.14.tar.gz 125207 BLAKE2B fcbc7e59552d83828c07acb055429c1155b738dd12e22c9fc81759b9f84382e3ea793e957421d420c93fa5818d5ad8f12b5317cfe6d5d45d95fc15b272c6fe8c SHA512 9d22ea2826a69a9bb661a4c17aaa78d648f0684b96c2dc0f164d2086f48fc85207e40c69227dd76d153dd171574dd62f6e5e90dd415209de372b4d7d8ab40f57
25
26 diff --git a/sys-boot/palo/files/palo-2.12-gcc10.patch b/sys-boot/palo/files/palo-2.12-gcc10.patch
27 deleted file mode 100644
28 index 7832fbeac94..00000000000
29 --- a/sys-boot/palo/files/palo-2.12-gcc10.patch
30 +++ /dev/null
31 @@ -1,11 +0,0 @@
32 ---- a/ipl/Makefile
33 -+++ b/ipl/Makefile
34 -@@ -39,7 +39,7 @@ endif
35 - VPATH=../lib:.
36 -
37 - AFLAGS = -I../lib
38 --CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks
39 -+CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks -fno-builtin
40 - LDFLAGS = -N --section-start .init=0x60000 -e '$$START$$'
41 -
42 - all: iplelf
43
44 diff --git a/sys-boot/palo/palo-2.12-r1.ebuild b/sys-boot/palo/palo-2.12-r1.ebuild
45 deleted file mode 100644
46 index 8e24e8531b2..00000000000
47 --- a/sys-boot/palo/palo-2.12-r1.ebuild
48 +++ /dev/null
49 @@ -1,44 +0,0 @@
50 -# Copyright 1999-2020 Gentoo Authors
51 -# Distributed under the terms of the GNU General Public License v2
52 -
53 -EAPI=7
54 -inherit toolchain-funcs
55 -
56 -DESCRIPTION="PALO : PArisc Linux Loader"
57 -HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
58 -SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz"
59 -
60 -LICENSE="GPL-2"
61 -SLOT="0"
62 -KEYWORDS="-* hppa"
63 -
64 -PATCHES=(
65 - "${FILESDIR}"/${PN}-2.00-toolchain.patch
66 - "${FILESDIR}"/${PN}-2.12-gcc10.patch
67 -)
68 -
69 -src_compile() {
70 - local target
71 - for target in '-C palo' '-C ipl' 'iplboot'; do
72 - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
73 - done
74 -}
75 -
76 -src_install() {
77 - into /
78 - dosbin palo/palo
79 -
80 - insinto /usr/share/palo
81 - doins iplboot
82 -
83 - insinto /etc
84 - doins "${FILESDIR}"/palo.conf
85 -
86 - insinto /etc/kernel/postinst.d
87 - insopts -m 0744
88 - doins "${FILESDIR}"/99palo
89 -
90 - doman palo.8
91 -
92 - dodoc TODO debian/changelog README.html
93 -}