diff options
author | 2023-12-28 04:41:48 +0000 | |
---|---|---|
committer | 2023-12-28 04:41:48 +0000 | |
commit | c2ed8854b623650b1a857b546ef2a2029f861af6 (patch) | |
tree | e642d1bf97d638612440411334411852e48bd1b1 /sys-boot | |
parent | dev-python/feedgenerator: Keyword 2.1.0 arm64, #903047 (diff) | |
download | gentoo-c2ed8854b623650b1a857b546ef2a2029f861af6.tar.gz gentoo-c2ed8854b623650b1a857b546ef2a2029f861af6.tar.bz2 gentoo-c2ed8854b623650b1a857b546ef2a2029f861af6.zip |
sys-boot/palo: drop 2.22
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/palo/Manifest | 1 | ||||
-rw-r--r-- | sys-boot/palo/palo-2.22.ebuild | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest index be0404c817cc..402a7081d8c8 100644 --- a/sys-boot/palo/Manifest +++ b/sys-boot/palo/Manifest @@ -1,2 +1 @@ -DIST palo-2.22.tar.gz 130037 BLAKE2B bbca5662ecc0d67bb8af478ee67f5d872888170b0072d6b2620b3c6ca61e52f6519209b620ffb1dfc40d1e746b522dc89118e292fd5cb78e9f3ba7eec7277a2b SHA512 817bf2dc40d01464aa943cd5495950b89196628f2ef002f6334bbc526515d9e4885532821bf18134b7d4b3adbd20d850ee2d6c2350a663f432d567ac56ef7a90 DIST palo-2.24.tar.gz 132587 BLAKE2B a24bd6b70cf395b1254c280821f92eb00e02cb2dc0cc142e7bb706361c86a2fd45424f832d6c3ff383f02bde3eccc6e250a7ee279af3977b5bc2b2576e6ac9d0 SHA512 e520eff46798b7b94eed081c6310b1dfda07918e5f31ce140095b6742d81b85e62a657aa3761f9a3819ad7c8897d548af8fdd85b43997386c2ec6ace6fbf1b2e diff --git a/sys-boot/palo/palo-2.22.ebuild b/sys-boot/palo/palo-2.22.ebuild deleted file mode 100644 index 967e766b9dee..000000000000 --- a/sys-boot/palo/palo-2.22.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="PALO: PArisc Linux Loader" -HOMEPAGE="https://parisc.wiki.kernel.org/ https://git.kernel.org/pub/scm/linux/kernel/git/deller/palo.git/" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/palo.git" - inherit git-r3 -else - SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz" - KEYWORDS="-* hppa" -fi - -LICENSE="GPL-2" -SLOT="0" - -PATCHES=( - "${FILESDIR}"/${PN}-2.00-toolchain.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 -} |