app-shells/loksh: drop old 7.5

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-03-07 12:18:40 +01:00
parent 1ed1923cf5
commit bfd0e8f9f6
2 changed files with 0 additions and 42 deletions

View File

@@ -1,2 +1 @@
DIST loksh-7.5.tar.xz 212104 BLAKE2B c5897860ca9ce7614921e890ec2ba6f464f600df9410082256e7b4cb53c15fbacb2f46fb8eada77910c19a260338f8e2fb55e3b324c96ab82e44f502859769a2 SHA512 9aee8219a4d63d06c95df2347611a04664ec344c2cb4c3d5d14bdea6b9cabc424246b0e070c901b4a5e38f5784b2c43f5c3c78b01f74cbdce46eded6fda043db
DIST loksh-7.6.tar.xz 212080 BLAKE2B 845fbda4b0ff17c432a6ab2b506ad02bc2f9a36873d20ba3ab7b4bf5eeff6609f61c0223f9d18933314bca22b45c02313cdab6cb69bed73227918516b8be186a SHA512 c03a298e93bff3c689591a9864eeb5daa661b6b0b783102a271f7ebb08297a4939d8c923233fc23892b83c86d7102f9ae022f4b4d3fdf33e095e86690014fb24

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Linux port of OpenBSD's ksh"
HOMEPAGE="https://github.com/dimkr/loksh/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/dimkr/${PN}.git"
else
SRC_URI="https://github.com/dimkr/${PN}/releases/download/${PV}/${P}.tar.xz"
KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv ~x86"
fi
LICENSE="public-domain"
SLOT="0"
DEPEND="
sys-libs/ncurses
"
RDEPEND="
${DEPEND}
!app-shells/ksh
"
src_prepare() {
default
sed -i "/install_dir/s@loksh@${PF}@" ./meson.build || die
}
src_configure() {
# we want it as /bin/ksh
meson_src_configure --bindir=../bin
}