From 29613bc12d55d561bcd62358841b91accf4b9351 Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Wed, 15 Feb 2017 09:02:24 +0100 Subject: sys-boot/palo: Old. Package-Manager: Portage-2.3.3, Repoman-2.3.1 --- sys-boot/palo/Manifest | 1 - .../palo/files/palo-1.95-iplboot-gcc-4.9.patch | 36 ------------------ sys-boot/palo/files/palo-1.95-toolchain.patch | 27 ------------- sys-boot/palo/palo-1.95-r1.ebuild | 44 ---------------------- 4 files changed, 108 deletions(-) delete mode 100644 sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch delete mode 100644 sys-boot/palo/files/palo-1.95-toolchain.patch delete mode 100644 sys-boot/palo/palo-1.95-r1.ebuild diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest index 8400b29f1d55..068767907d03 100644 --- a/sys-boot/palo/Manifest +++ b/sys-boot/palo/Manifest @@ -1,3 +1,2 @@ -DIST palo_1.95.tar.xz 102884 SHA256 c168df0255e83f06cf5ae4fd5266f9ee51ba3e9412a9c1bf3131ecff52cec9e8 SHA512 91960a7bbf5a4985809a082d4e75ee25670f6030e701bc106807de4f89c3617e47cf39ef857684b62dcaf906571f6f095b3caa371793754495567f4a14cc8a9d WHIRLPOOL cdf119aa0892fecce4c4dae73053dd9f3c9745a17276012b1d6fb649e3e55eea561dec8f40feb52fb6477f5b289a61844d39c0d8d0ab2ba2a2501c1323b28305 DIST palo_1.96.tar.xz 102480 SHA256 c5ea19dc90834266cf6cbd576c007899ef6628b843ab16c57ed98eecb6e72cf8 SHA512 d287cae0995f4c1f519fac5a83a5f71645b1382c6fbf5117ab416240adda5227bb58eb33ad384b84dfb2622af76948b48f1ccf83fa408e9d2d1c4fe7fbed299f WHIRLPOOL de57336608c2aa0d9b487e0d6cfac05ba608a6c24ed4c0acf59d7027b667cc161616ac3520afc974fa2c8496d93d2025e2dfa353118a941a356cde5a28bb62bc DIST palo_1.97.tar.xz 82780 SHA256 cafa629d7a5df124108f4500354d9c84e29565fe6c0ac33162906a30deec6355 SHA512 5e87858a3c91f32174c4debd2aee2ea8185d18fb1d20e6288b1d78b45b0f033fce4c0dadec249fc4e4189e9b7a3a8823e97742e822cfe1512c5edbc9a3d33545 WHIRLPOOL b118b63906e851db50182f6ec4d15ce699393a3cbc738442eb9c593f92dc1968b4ff59ca59e4b83273677d9dc49082e891e5df4fcb7f2a2cf5f2c8e2f00c45ad diff --git a/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch b/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch deleted file mode 100644 index bff0f4c65270..000000000000 --- a/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch +++ /dev/null @@ -1,36 +0,0 @@ -From eb869303b0c140e806f81f022211648e42290d6d Mon Sep 17 00:00:00 2001 -From: Helge Deller -Date: Wed, 18 Feb 2015 21:26:43 +0100 -Subject: Add -fno-delete-null-pointer-checks compiler option - -Otherwise gcc-4.9 will miscompile the IPL bootloader since it -will optimize out accesses to PAGE0 ---- - ipl/Makefile | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -diff --git a/ipl/Makefile b/ipl/Makefile -index 7695ea5..6b8e105 100644 ---- a/ipl/Makefile -+++ b/ipl/Makefile -@@ -38,7 +38,7 @@ endif - # Source sharing with palo - VPATH=../lib:. - --CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -+CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks - LDFLAGS = -N --section-start .init=0x60000 -e '$$START$$' - - all: iplelf -@@ -61,8 +61,6 @@ distclean: clean - .S.o: - $(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -c -o $*.o $< - --###############} -- - byteio.o \ - ext2.o \ - fileio.o \ --- -cgit v0.12 - diff --git a/sys-boot/palo/files/palo-1.95-toolchain.patch b/sys-boot/palo/files/palo-1.95-toolchain.patch deleted file mode 100644 index 1e70f2d5ebf0..000000000000 --- a/sys-boot/palo/files/palo-1.95-toolchain.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/palo/Makefile -+++ b/palo/Makefile -@@ -12,13 +12,12 @@ - OS := $(shell uname -s) - CC?=cc - ifeq ($(strip ${OS}),HP-UX) --CFLAGS=-g -O -I../include -I../lib -I$(PA)/include -+CFLAGS=-O -I../include -I../lib -I$(PA)/include - else --CFLAGS=-g -O -I../include -I../lib -D_FILE_OFFSET_BITS=64 -+CFLAGS=-O -I../include -I../lib -D_FILE_OFFSET_BITS=64 - endif - - # LDFLAGS=-Wl,-Bstatic --LDFLAGS= - - OFILES2=mkbootable.o elf64.o load.o paloio.o elf32.o error.o gzip.o - -@@ -34,7 +33,7 @@ - $(CC) $(CFLAGS) $(LDFLAGS) -o palo palo.a build.o - - palo.a: $(OFILES) -- ar rv palo.a $? -+ $(AR) rv palo.a $? - - mkbootable: $(OFILES2) - $(CC) $(CFLAGS) $(LDFLAGS) -o mkbootable $(OFILES2) diff --git a/sys-boot/palo/palo-1.95-r1.ebuild b/sys-boot/palo/palo-1.95-r1.ebuild deleted file mode 100644 index 3a1bfe8cfd53..000000000000 --- a/sys-boot/palo/palo-1.95-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="PALO : PArisc Linux Loader" -HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/" -SRC_URI="mirror://debian/pool/main/p/${PN}/${P/-/_}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* hppa" - -PATCHES=( - "${FILESDIR}"/${PN}-1.95-toolchain.patch - "${FILESDIR}"/${PN}-1.95-iplboot-gcc-4.9.patch -) - -src_compile() { - local target - for target in '-C palo' '-C ipl' 'iplboot'; do - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target} - done -} - -src_install() { - into / - dosbin palo/palo - - doman palo.8 - dodoc Changes TODO debian/changelog README.html - - insinto /etc - doins "${FILESDIR}"/palo.conf - - insinto /usr/share/palo - doins iplboot - - insinto /etc/kernel/postinst.d/ - insopts -m 0744 - doins "${FILESDIR}"/99palo -} -- cgit v1.2.3-65-gdbad