Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/yash/
Date: Mon, 08 Nov 2021 13:19:37
Message-Id: 1636377561.055674d29e81c1f4d15fa58b3541d98e2f891839.hattya@gentoo
1 commit: 055674d29e81c1f4d15fa58b3541d98e2f891839
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 8 13:19:21 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 8 13:19:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=055674d2
7
8 app-shells/yash: drop old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-shells/yash/Manifest | 1 -
14 app-shells/yash/yash-2.51.ebuild | 35 -----------------------------------
15 2 files changed, 36 deletions(-)
16
17 diff --git a/app-shells/yash/Manifest b/app-shells/yash/Manifest
18 index de90f351a26..bcb848198a1 100644
19 --- a/app-shells/yash/Manifest
20 +++ b/app-shells/yash/Manifest
21 @@ -1,2 +1 @@
22 -DIST yash-2.51.tar.xz 753880 BLAKE2B 4c66137eb2abf454c75b50c9d153522136bd835e7c26a305b424b8cf88694fd1dc83d9012efc8e2a611abc25217b34ae1dd36c20e0645204fb349871d23feefa SHA512 53f85f98dfd66c8937db292694da05fb7fdc8d270fc4811d7ec4d2787ab56600eca8e44379ef349755ec5fb739af3b32036a588ac35be810108ccc388be122e6
23 DIST yash-2.52.tar.xz 755016 BLAKE2B 44c26d310e9bd50a6f381adefedcdf9bcb49998860a8a67e300d31d5a8615d7346e06e7c4ca5e098d7232a0acc112daa2230572939f665db982f187ccd741778 SHA512 1024ff7e3cce6e64cbc0bd5c0d04a9863d0d51013baf07723d09562b156d05dbfe1fc2df5b736cdec5f562c56ad634f865554a1fe5aeeed91ec0d9276667f02a
24
25 diff --git a/app-shells/yash/yash-2.51.ebuild b/app-shells/yash/yash-2.51.ebuild
26 deleted file mode 100644
27 index a71eb24ef61..00000000000
28 --- a/app-shells/yash/yash-2.51.ebuild
29 +++ /dev/null
30 @@ -1,35 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -PLOCALES="en ja"
36 -
37 -inherit flag-o-matic plocale toolchain-funcs
38 -
39 -DESCRIPTION="Yash is a POSIX-compliant command line shell"
40 -HOMEPAGE="https://yash.osdn.jp/"
41 -SRC_URI="mirror://sourceforge.jp/${PN}/74064/${P}.tar.xz"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="nls test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="sys-libs/ncurses:=
50 - nls? ( virtual/libintl )"
51 -DEPEND="${RDEPEND}"
52 -BDEPEND="nls? ( sys-devel/gettext )
53 - test? ( sys-apps/ed )"
54 -
55 -src_configure() {
56 - append-cflags -std=c99
57 -
58 - sh ./configure \
59 - --prefix="${EPREFIX}"/usr \
60 - --exec-prefix="${EPREFIX}" \
61 - $(use_enable nls) \
62 - CC=$(tc-getCC) \
63 - LINGUAS="$(plocale_get_locales | sed "s/en/en@quot en@boldquot/")" \
64 - || die
65 -}