From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E0651581FB for ; Fri, 30 Aug 2024 15:59:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1956DE29EF; Fri, 30 Aug 2024 15:58:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F16AEE29EF for ; Fri, 30 Aug 2024 15:58:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0664F343069 for ; Fri, 30 Aug 2024 15:58:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 371381844 for ; Fri, 30 Aug 2024 15:58:56 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1725033526.7856f0680bca521f327c61fb770b1a4f683c7c0d.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/mksh/mksh-9999.ebuild X-VCS-Directories: app-shells/mksh/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 7856f0680bca521f327c61fb770b1a4f683c7c0d X-VCS-Branch: master Date: Fri, 30 Aug 2024 15:58:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ea15a66a-1b83-4dff-ae48-7989a7212f1c X-Archives-Hash: 8c6094cf04e6c4eee07f0329ffc33a9a commit: 7856f0680bca521f327c61fb770b1a4f683c7c0d Author: Arthur Zamarin gentoo org> AuthorDate: Fri Aug 30 15:52:02 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Aug 30 15:58:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7856f068 app-shells/mksh: drop 9999 Signed-off-by: Arthur Zamarin gentoo.org> app-shells/mksh/mksh-9999.ebuild | 90 ---------------------------------------- 1 file changed, 90 deletions(-) diff --git a/app-shells/mksh/mksh-9999.ebuild b/app-shells/mksh/mksh-9999.ebuild deleted file mode 100644 index 9154bea1a42e..000000000000 --- a/app-shells/mksh/mksh-9999.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -if [[ ${PV} == *9999 ]] ; then - ECVS_SERVER="anoncvs.mirbsd.org:/cvs" - ECVS_MODULE="mksh" - ECVS_USER="_anoncvs" - ECVS_AUTH="ext" - inherit cvs -else - SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -DESCRIPTION="MirBSD Korn Shell" -# Host is TLSv1.0-only, keep to http for compatibility with modern browsers -HOMEPAGE="http://mirbsd.de/mksh" - -# See http://www.mirbsd.org/TaC-mksh.txt or ${S}/www/files/TaC-mksh.txt -# MirOS for most of it -# BSD for when strlcpy(3) is absent, such as with glibc -# unicode for some included Unicode data -# ISC if the printf builtin is used, not currently the case -LICENSE="MirOS BSD unicode" -SLOT="0" -IUSE="lksh static test" -RESTRICT="!test? ( test )" - -DEPEND=" - test? ( - dev-lang/perl - sys-apps/ed - ) -" - -S="${WORKDIR}/${PN}" - -src_prepare() { - default - if use lksh; then - cp -pr "${S}" "${S}"_lksh || die - fi -} - -src_compile() { - tc-export CC - use static && export LDSTATIC="-static" - export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\"" - - if use lksh; then - pushd "${S}"_lksh >/dev/null || die - CPPFLAGS="${CPPFLAGS} -DMKSH_BINSHPOSIX -DMKSH_BINSHREDUCED" \ - sh Build.sh -r -L || die - popd >/dev/null || die - fi - - sh Build.sh -r || die - sh FAQ2HTML.sh || die -} - -src_test() { - einfo "Testing regular mksh." - ./mksh test.sh -v || die - - if use lksh; then - einfo "Testing lksh, POSIX long-bit mksh." - pushd "${S}"_lksh >/dev/null || die - ./lksh test.sh -v || die - popd >/dev/null || die - fi -} - -src_install() { - into / - dobin mksh - dosym mksh /bin/rmksh - doman mksh.1 - dodoc dot.mkshrc - dodoc FAQ.htm - - if use lksh; then - dobin "${S}"_lksh/lksh - dosym lksh /bin/rlksh - doman "${S}"_lksh/lksh.1 - fi -}