public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/
Date: Thu, 17 Dec 2020 13:48:39 +0000 (UTC)	[thread overview]
Message-ID: <1608212911.9eadf5deb80b52e7a180d36aa1fe556f5681b443.juippis@gentoo> (raw)

commit:     9eadf5deb80b52e7a180d36aa1fe556f5681b443
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Wed Dec 16 18:03:50 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 13:48:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eadf5de

app-shells/mksh: version clean, <59

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/18680
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-shells/mksh/Manifest          |  2 -
 app-shells/mksh/mksh-57-r2.ebuild | 82 ---------------------------------------
 app-shells/mksh/mksh-58.ebuild    | 81 --------------------------------------
 3 files changed, 165 deletions(-)

diff --git a/app-shells/mksh/Manifest b/app-shells/mksh/Manifest
index 46ca58ae9c4..ff346b02d66 100644
--- a/app-shells/mksh/Manifest
+++ b/app-shells/mksh/Manifest
@@ -1,4 +1,2 @@
-DIST mksh-R57.tgz 419604 BLAKE2B 11af09535ace3fdd982189fb7d7f3e5961776c3bdbf6b981f4f1506a66ebdbd893efb9aa50a5a36fd8b3b7bd3e149021aad154888dc81e0de29f41e91eeb583c SHA512 7d7fa557c17da4f1f62f82877a136439efb6d4f9fde52b2df39214db09868982e756df6e4fe83498f9013cbcf3252dc383b00ddfafaa4c9f143ffded7cd255b3
-DIST mksh-R58.tgz 435617 BLAKE2B c5dd16effc8c08ac5f4a3986a14d786990b64d9da76b1b7d27de8a2dfbfa6fe172e9c58681df8f428a1e3548e54b5f6b037714a924f1053bfa3eedacc8eba173 SHA512 711351f8bbe8e44fcf9e7963f8e749938ec3ccb362fafd5350d44593841c2acb6d54ffa115dbb6b83c30865728a4c5274c05feedb063e293361e2830d263d80f
 DIST mksh-R59.tgz 438821 BLAKE2B 4a737b47ab58a99707d93b680ec5474b7b6e190241778010879d0b20028f97bfca9b526c807ed0b37d03b6aef9a2eaf2506d73d1a00ac14b60b21e57791d8d4f SHA512 be5009ce8f02eab1392f95d7f85f5aad57b1445684b4fe8cd0284a7d79386170979303ef19f039fdbb53bd2a791f3e3603d2fe57e015fed4cb4a24ab710bcfbb
 DIST mksh-R59c.tgz 442736 BLAKE2B 4e1b6e6fc69b27d01e262a5622191515fa71d29e81a3f10fb60458542506874b49f60f9af1e28c1cd266c63c91e3287579ab6bda00c39b7388445b19c969fa22 SHA512 f56b6956f9e1dd88ddce2294301a5eb698050d9d4f49286fdcd8f9df8554eabbcc71d37e2bf3eb7234e3968a17231cc6de8aa7efbf17768834a90b14e8cdf340

diff --git a/app-shells/mksh/mksh-57-r2.ebuild b/app-shells/mksh/mksh-57-r2.ebuild
deleted file mode 100644
index d1d0012bb68..00000000000
--- a/app-shells/mksh/mksh-57-r2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2020 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="amd64 arm arm64 ~ia64 ppc ppc64 sparc x86"
-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"
-
-LICENSE="BSD"
-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
-}
-
-src_install() {
-	into /
-	dobin mksh
-	doman mksh.1
-	dodoc dot.mkshrc
-
-	if use lksh; then
-		dobin "${S}"_lksh/lksh
-		doman "${S}"_lksh/lksh.1
-	fi
-}
-
-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
-}

diff --git a/app-shells/mksh/mksh-58.ebuild b/app-shells/mksh/mksh-58.ebuild
deleted file mode 100644
index a3e79a49d42..00000000000
--- a/app-shells/mksh/mksh-58.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2020 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"
-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"
-
-LICENSE="BSD"
-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
-}
-
-src_install() {
-	into /
-	dobin mksh
-	doman mksh.1
-	dodoc dot.mkshrc
-
-	if use lksh; then
-		dobin "${S}"_lksh/lksh
-		doman "${S}"_lksh/lksh.1
-	fi
-}
-
-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
-}


             reply	other threads:[~2020-12-17 13:48 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-17 13:48 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-30 15:58 [gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/ Arthur Zamarin
2022-12-27 19:45 Sam James
2022-12-16 21:19 Arthur Zamarin
2022-12-02 18:44 WANG Xuerui
2021-05-24  7:39 Joonas Niilola
2021-04-27 20:18 Sam James
2021-02-22 14:47 Joonas Niilola
2021-02-16 12:34 Sam James
2021-02-14  5:37 Sam James
2021-02-09 21:31 Sam James
2021-02-09 21:30 Sam James
2021-02-09  9:48 Sam James
2021-02-09  6:16 Sam James
2020-12-16 16:12 Sam James
2020-12-16  8:29 Joonas Niilola
2020-12-15 10:39 Sam James
2020-12-15 10:37 Sam James
2020-12-13  7:42 Sam James
2020-12-11  7:42 Sergei Trofimovich
2020-12-10 21:41 Thomas Deutschmann
2020-12-10 17:43 Sam James
2020-05-07 14:57 Lars Wendler
2020-05-07 14:57 Lars Wendler
2020-04-07 10:21 Mart Raudsepp
2020-03-29 14:45 Sergei Trofimovich
2020-03-27 16:48 Lars Wendler
2020-03-27 16:48 Lars Wendler
2020-02-11 14:14 Michał Górny
2020-02-11 12:15 Agostino Sarubbo
2020-02-11 11:36 Agostino Sarubbo
2020-02-11 10:54 Agostino Sarubbo
2019-12-01 23:24 Michał Górny
2019-04-29 13:48 Michał Górny
2019-04-29 13:48 Michał Górny
2019-04-29 13:48 Michał Górny
2019-03-14 17:59 Patrick Lauer
2019-01-27 11:05 Pacho Ramos
2019-01-11 20:33 Hanno Boeck
2018-12-12 16:17 Mikle Kolyada
2018-12-08  9:36 Sergei Trofimovich
2018-12-07  2:41 Thomas Deutschmann
2018-12-05 15:23 Lars Wendler
2018-12-05 15:12 Mikle Kolyada
2018-01-16 16:02 Patrick Lauer
2018-01-07 12:39 Markus Meier
2017-08-30 18:34 Patrick Lauer
2017-08-09 14:06 Patrick Lauer
2016-08-23 14:23 Patrick Lauer
2016-08-23 14:23 Patrick Lauer
2016-07-07  2:35 Stephen Klimaszewski
2016-03-06 23:33 Patrick Lauer
2016-01-22 11:00 Patrick Lauer
2016-01-22 10:59 Patrick Lauer
2015-12-21 10:23 Patrick Lauer
2015-09-20  9:30 Agostino Sarubbo
2015-09-06 13:25 Agostino Sarubbo
2015-09-01 12:08 Lars Wendler
2015-08-26 11:00 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1608212911.9eadf5deb80b52e7a180d36aa1fe556f5681b443.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox