diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-12-14 22:55:16 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-12-14 22:55:16 -0800 |
commit | afb488c2a68d3c405c3b6ea0c3257c151b6be8b4 (patch) | |
tree | 0af35e467289ed809cdf13db00685df00d7b5065 /app-shells/ksh | |
parent | profiles: mask ~app-shells/ksh-2020.0.0 (diff) | |
download | gentoo-afb488c2a68d3c405c3b6ea0c3257c151b6be8b4.tar.gz gentoo-afb488c2a68d3c405c3b6ea0c3257c151b6be8b4.tar.bz2 gentoo-afb488c2a68d3c405c3b6ea0c3257c151b6be8b4.zip |
app-shells/ksh: drop 9999
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-shells/ksh')
-rw-r--r-- | app-shells/ksh/ksh-9999.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app-shells/ksh/ksh-9999.ebuild b/app-shells/ksh/ksh-9999.ebuild deleted file mode 100644 index e5b08b6bef9c..000000000000 --- a/app-shells/ksh/ksh-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson ninja-utils - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/att/ast" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" - MY_PV="${PV/_/-}" - MY_P="${PN}-${MY_PV}" - SRC_URI="https://github.com/att/ast/releases/download/${MY_PV}/${MY_P}.tar.gz" - S="${WORKDIR}/${MY_P}" -fi - -DESCRIPTION="The Original Korn Shell, 1993 revision (ksh93)" -HOMEPAGE="https://github.com/att/ast" - -LICENSE="CPL-1.0 EPL-1.0" -SLOT="0" - -RDEPEND="!app-shells/pdksh" - -src_test() { - # https://bugs.gentoo.org/702570 - addwrite /proc/self - local cmd=( - meson test - -C "${BUILD_DIR}" - --num-processes "$(makeopts_jobs ${NINJAOPTS:-${MAKEOPTS}})" - ) - echo "${cmd[@]}" >&2 - # https://github.com/att/ast/issues/1392 - env -u T "${cmd[@]}" || die -} - -src_install() { - meson_src_install - dodir /bin - mv "${ED}/usr/bin/ksh" "${ED}/bin/ksh" || die -} |