public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/
Date: Sun, 27 Jan 2019 11:05:53 +0000 (UTC)	[thread overview]
Message-ID: <1548587116.e4a0da357f92c62338f91dd8fb2f17b39ee6acef.pacho@gentoo> (raw)

commit:     e4a0da357f92c62338f91dd8fb2f17b39ee6acef
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 27 10:18:14 2019 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 27 11:05:16 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a0da35

app-shells/mksh: Drop old

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-shells/mksh/Manifest        |  2 --
 app-shells/mksh/mksh-52.ebuild  | 48 -----------------------------------------
 app-shells/mksh/mksh-52c.ebuild | 48 -----------------------------------------
 3 files changed, 98 deletions(-)

diff --git a/app-shells/mksh/Manifest b/app-shells/mksh/Manifest
index f79137fd505..0faec73f57f 100644
--- a/app-shells/mksh/Manifest
+++ b/app-shells/mksh/Manifest
@@ -1,3 +1 @@
-DIST mksh-R52.tgz 383814 BLAKE2B f0563f19a3ba3b32e075bfb2d3db3a03ae9ada129d4b514573aad65f84ffa0d92a81a09baae0744e75a3d82d774a640dbd3a04856ccbdc7781ea3a1cec32efa8 SHA512 83b478baa401dc6116c363043d9d6629028bbcdf19448db939738c5b98f8e4f7da92932296c2ee813b317151d31a1b6cd55d27f062f79e587e22991b018a0285
-DIST mksh-R52c.tgz 386254 BLAKE2B 027cf8e2bff4b8cc00ccd574a8a11b0e5d0164d9e59a9ae18c1684a2b0f7c45ccb342d1cc0f8812b42c656a6e253cc24d14e25f55c1bf12d6f521b3f72bb4cba SHA512 f2434f2e165da290cc3f5d78846fb4774115a6e35ef3299d0343b1797b3773921d614396b0da78f8e9a451d6029df9abff503575c5cdcb232e18df7731d18da0
 DIST mksh-R56c.tgz 417218 BLAKE2B 3512855dd177be8432fe503716ca571a3c06ab3eeb6b44de923ab7d9eb9246087f627b7d7a3e9bb29a849da126b88c223864f140b136e922776ec7bd4a04e96d SHA512 7e4cd2d24c6bca2ebad7c6b02d158188e766bd4693d93f5bed198d69238aef078d42ce911431ad4e419e4af55083047d823bfad53973db5c6d8a685482770135

diff --git a/app-shells/mksh/mksh-52.ebuild b/app-shells/mksh/mksh-52.ebuild
deleted file mode 100644
index a68670f3d6d..00000000000
--- a/app-shells/mksh/mksh-52.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="MirBSD KSH Shell"
-HOMEPAGE="http://mirbsd.de/mksh"
-SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="static"
-DEPEND="static? ( dev-libs/klibc )"
-RDEPEND=""
-S="${WORKDIR}/${PN}"
-
-src_compile() {
-	tc-export CC
-	# we want to build static with klibc
-	if use static ; then
-		unset CC
-		export CC="/usr/bin/klcc"
-		export LDSTATIC="-static"
-	fi
-	export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\""
-	# we can't assume lto existing/enabled, so we add a fallback
-	sh Build.sh -r -c lto || sh Build.sh -r || die
-}
-
-src_install() {
-	exeinto /bin
-	doexe mksh
-	doman mksh.1
-	dodoc dot.mkshrc
-}
-
-src_test() {
-	./test.sh || die
-}
-
-pkg_postinst() {
-	ebegin "Updating /etc/shells"
-	( grep -v "^/bin/mksh$" "${ROOT}"etc/shells; echo "/bin/mksh" ) > "${T}"/shells
-	mv -f "${T}"/shells "${ROOT}"etc/shells
-	eend $?
-}

diff --git a/app-shells/mksh/mksh-52c.ebuild b/app-shells/mksh/mksh-52c.ebuild
deleted file mode 100644
index fd388886225..00000000000
--- a/app-shells/mksh/mksh-52c.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="MirBSD KSH Shell"
-HOMEPAGE="http://mirbsd.de/mksh"
-SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="static"
-DEPEND="static? ( dev-libs/klibc )"
-RDEPEND=""
-S="${WORKDIR}/${PN}"
-
-src_compile() {
-	tc-export CC
-	# we want to build static with klibc
-	if use static ; then
-		unset CC
-		export CC="/usr/bin/klcc"
-		export LDSTATIC="-static"
-	fi
-	export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\""
-	# we can't assume lto existing/enabled, so we add a fallback
-	sh Build.sh -r -c lto || sh Build.sh -r || die
-}
-
-src_install() {
-	exeinto /bin
-	doexe mksh
-	doman mksh.1
-	dodoc dot.mkshrc
-}
-
-src_test() {
-	./test.sh || die
-}
-
-pkg_postinst() {
-	ebegin "Updating /etc/shells"
-	( grep -v "^/bin/mksh$" "${ROOT}"etc/shells; echo "/bin/mksh" ) > "${T}"/shells
-	mv -f "${T}"/shells "${ROOT}"etc/shells
-	eend $?
-}


             reply	other threads:[~2019-01-27 11:06 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-27 11:05 Pacho Ramos [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-17 13:48 Joonas Niilola
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-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=1548587116.e4a0da357f92c62338f91dd8fb2f17b39ee6acef.pacho@gentoo \
    --to=pacho@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