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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 27E8E15808E for ; Sun, 24 Apr 2022 07:40:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98836E0849; Sun, 24 Apr 2022 07:40:20 +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 157DFE0849 for ; Sun, 24 Apr 2022 07:40:11 +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 BDF6B3417E6 for ; Sun, 24 Apr 2022 07:40:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A5633F0 for ; Sun, 24 Apr 2022 07:40:09 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1650785941.ba77b7080e07915c129ea0bf8f07b6b0ab6f9d1f.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/loksh/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/loksh/Manifest app-shells/loksh/loksh-7.1.ebuild X-VCS-Directories: app-shells/loksh/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ba77b7080e07915c129ea0bf8f07b6b0ab6f9d1f X-VCS-Branch: master Date: Sun, 24 Apr 2022 07:40:09 +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: f058af94-bd88-420e-86d9-901930a41098 X-Archives-Hash: a75c6762ab5333507ff2d51a858ca95b commit: ba77b7080e07915c129ea0bf8f07b6b0ab6f9d1f Author: Vinícius Kury protonmail com> AuthorDate: Sat Apr 23 17:50:51 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Apr 24 07:39:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba77b708 app-shells/loksh: add 7.1 Signed-off-by: Vinícius Kury protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/25171 Signed-off-by: Joonas Niilola gentoo.org> app-shells/loksh/Manifest | 1 + app-shells/loksh/loksh-7.1.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/app-shells/loksh/Manifest b/app-shells/loksh/Manifest index 629bfefb3413..b54a8c2c3334 100644 --- a/app-shells/loksh/Manifest +++ b/app-shells/loksh/Manifest @@ -1 +1,2 @@ DIST loksh-7.0.tar.xz 211536 BLAKE2B 7633b89f6f3659cbe714f9dc3ab5b1a8a537d7ddf47bf34ee79617e4a3aa4238067d04be715b6abc2ce37212edb40e841006ec1e2b8e560236075eec364250f6 SHA512 d6eb0e0a639afb79b0d7df85477ded0d48d3ad27dbbd2068c24b81705000501c4542034586222a490a49443da36e7d1c64b5d714c94f942f507a14b89a0c389e +DIST loksh-7.1.tar.xz 211636 BLAKE2B 7604d6a5d3d3bce7dc51cde1d53ec10b927411afe700192e243e8dc022011cb3d89668768ba7940af22e97d95fd074638860e7b74fcacc8c83de4ad995654da4 SHA512 f46221f765f2799856049fbfe1650e6f3d13d597cf97843d4b54b9803b9ecedbf8a8c9364e1ba9b981b667004a8fe4da043006945f8b61f094678d3578518716 diff --git a/app-shells/loksh/loksh-7.1.ebuild b/app-shells/loksh/loksh-7.1.ebuild new file mode 100644 index 000000000000..83a619864ef2 --- /dev/null +++ b/app-shells/loksh/loksh-7.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 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" +SRC_URI="https://github.com/dimkr/loksh/releases/download/${PV}/${P}.tar.xz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +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 +}