summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2020-12-25 12:08:27 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2020-12-25 12:17:46 +0000
commitbbe9d5d2fb6fa760ea0395a0d6b312748abc20aa (patch)
tree5b8ec5685f5c8a095de1df872aface933e7aa0a8 /sys-boot
parentsys-devel/crossdev: drop old (diff)
downloadgentoo-bbe9d5d2fb6fa760ea0395a0d6b312748abc20aa.tar.gz
gentoo-bbe9d5d2fb6fa760ea0395a0d6b312748abc20aa.tar.bz2
gentoo-bbe9d5d2fb6fa760ea0395a0d6b312748abc20aa.zip
sys-boot/palo: drop old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/palo/Manifest1
-rw-r--r--sys-boot/palo/files/palo-2.12-gcc10.patch11
-rw-r--r--sys-boot/palo/palo-2.12-r1.ebuild44
3 files changed, 0 insertions, 56 deletions
diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest
index 02a9a40b299f..cc5d02da506f 100644
--- a/sys-boot/palo/Manifest
+++ b/sys-boot/palo/Manifest
@@ -1,2 +1 @@
-DIST palo-2.12.tar.gz 124911 BLAKE2B 79fa572e118e77114dcb3b888abc65163bd56cb44cf69cd25bcaa33a7c6151b8254bf00c459ad17ca1d948f9b440378133f048e2add123a757908c108b802703 SHA512 6ea20490b84bf18a1d1e8037de453f5f480cba8403b267d4d63fceceffb39e18545c6d20c8dd7b07044ff5567eedd2c58b2a626971b53d1d35c5b3a4e8fefbf0
DIST palo-2.14.tar.gz 125207 BLAKE2B fcbc7e59552d83828c07acb055429c1155b738dd12e22c9fc81759b9f84382e3ea793e957421d420c93fa5818d5ad8f12b5317cfe6d5d45d95fc15b272c6fe8c SHA512 9d22ea2826a69a9bb661a4c17aaa78d648f0684b96c2dc0f164d2086f48fc85207e40c69227dd76d153dd171574dd62f6e5e90dd415209de372b4d7d8ab40f57
diff --git a/sys-boot/palo/files/palo-2.12-gcc10.patch b/sys-boot/palo/files/palo-2.12-gcc10.patch
deleted file mode 100644
index 7832fbeac942..000000000000
--- a/sys-boot/palo/files/palo-2.12-gcc10.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/ipl/Makefile
-+++ b/ipl/Makefile
-@@ -39,7 +39,7 @@ endif
- VPATH=../lib:.
-
- AFLAGS = -I../lib
--CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks
-+CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks -fno-builtin
- LDFLAGS = -N --section-start .init=0x60000 -e '$$START$$'
-
- all: iplelf
diff --git a/sys-boot/palo/palo-2.12-r1.ebuild b/sys-boot/palo/palo-2.12-r1.ebuild
deleted file mode 100644
index 8e24e8531b2e..000000000000
--- a/sys-boot/palo/palo-2.12-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-DESCRIPTION="PALO : PArisc Linux Loader"
-HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
-SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* hppa"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.00-toolchain.patch
- "${FILESDIR}"/${PN}-2.12-gcc10.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
-
- insinto /usr/share/palo
- doins iplboot
-
- insinto /etc
- doins "${FILESDIR}"/palo.conf
-
- insinto /etc/kernel/postinst.d
- insopts -m 0744
- doins "${FILESDIR}"/99palo
-
- doman palo.8
-
- dodoc TODO debian/changelog README.html
-}