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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D997138334 for ; Mon, 29 Apr 2019 13:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A614E089A; Mon, 29 Apr 2019 13:48:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2300FE089A for ; Mon, 29 Apr 2019 13:48:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3984342EA5 for ; Mon, 29 Apr 2019 13:48:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42B0758A for ; Mon, 29 Apr 2019 13:48:10 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1556545267.fc31e6c74853c2efcd4774381508ea785bc80c1c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/mksh/mksh-57-r1.ebuild X-VCS-Directories: app-shells/mksh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fc31e6c74853c2efcd4774381508ea785bc80c1c X-VCS-Branch: master Date: Mon, 29 Apr 2019 13:48:10 +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: 1bde21e3-5663-4544-b3a1-20b0c12496fd X-Archives-Hash: 58697f9041075d4a7d386746d75358c8 commit: fc31e6c74853c2efcd4774381508ea785bc80c1c Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sun Mar 17 10:28:36 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 29 13:41:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc31e6c7 app-shells/mksh: Bump 57 from the live ebuild instead Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> Closes: https://github.com/gentoo/gentoo/pull/11441 Signed-off-by: Michał Górny gentoo.org> app-shells/mksh/mksh-57-r1.ebuild | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/app-shells/mksh/mksh-57-r1.ebuild b/app-shells/mksh/mksh-57-r1.ebuild new file mode 100644 index 00000000000..3aa638fe245 --- /dev/null +++ b/app-shells/mksh/mksh-57-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +if [[ $PV = 9999 ]]; then + inherit cvs + ECVS_SERVER="anoncvs.mirbsd.org:/cvs" + ECVS_MODULE="mksh" + ECVS_USER="_anoncvs" + ECVS_AUTH="ext" + KEYWORDS="" +else + SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz" + KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +fi + +DESCRIPTION="MirBSD Korn Shell" +HOMEPAGE="http://mirbsd.de/mksh" +LICENSE="BSD" +SLOT="0" +IUSE="static test" +RDEPEND="static? ( dev-libs/klibc )" +DEPEND=" + ${RDEPEND} + test? ( + dev-lang/perl + sys-apps/ed + ) +" +S="${WORKDIR}/${PN}" + +src_compile() { + tc-export CC + # we want to build static with klibc + if use static; then export CC="/usr/bin/klcc"; export LDSTATIC="-static"; fi + export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\"" + sh Build.sh -r || die +} + +src_install() { + into / + dobin mksh + doman mksh.1 + dodoc dot.mkshrc +} + +src_test() { + ./test.sh -v || die +}