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: Tue, 12 Oct 2021 13:30:19
Message-Id: 1634045293.f527db286e9ff3e055d2ef74149ee37e8aab47da.hattya@gentoo
1 commit: f527db286e9ff3e055d2ef74149ee37e8aab47da
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 12 13:28:13 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 12 13:28:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f527db28
7
8 app-shells/yash: new upstream release
9
10 Package-Manager: Portage-3.0.20, 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.52.ebuild | 35 +++++++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/app-shells/yash/Manifest b/app-shells/yash/Manifest
18 index 57368fb9574..61a7fd09a48 100644
19 --- a/app-shells/yash/Manifest
20 +++ b/app-shells/yash/Manifest
21 @@ -1,2 +1,3 @@
22 DIST yash-2.50.tar.xz 739988 BLAKE2B 4d8047150e2326b7c401f79416d87d09c099d4743026ee997e7f49d096cb23de210ded489b348cc9a264ece2fd4778b4f5c5c9999ed7391ab78699ce77ec03e0 SHA512 fc78d61b09f7c81d1d7bd3f4feefa7d4c0de910524759ebcba2b53322abc3f1e0a937007b36a5060af0ee759df210ec06d5eed2c71cf3f7ccd0825521b50edb7
23 DIST yash-2.51.tar.xz 753880 BLAKE2B 4c66137eb2abf454c75b50c9d153522136bd835e7c26a305b424b8cf88694fd1dc83d9012efc8e2a611abc25217b34ae1dd36c20e0645204fb349871d23feefa SHA512 53f85f98dfd66c8937db292694da05fb7fdc8d270fc4811d7ec4d2787ab56600eca8e44379ef349755ec5fb739af3b32036a588ac35be810108ccc388be122e6
24 +DIST yash-2.52.tar.xz 755016 BLAKE2B 44c26d310e9bd50a6f381adefedcdf9bcb49998860a8a67e300d31d5a8615d7346e06e7c4ca5e098d7232a0acc112daa2230572939f665db982f187ccd741778 SHA512 1024ff7e3cce6e64cbc0bd5c0d04a9863d0d51013baf07723d09562b156d05dbfe1fc2df5b736cdec5f562c56ad634f865554a1fe5aeeed91ec0d9276667f02a
25
26 diff --git a/app-shells/yash/yash-2.52.ebuild b/app-shells/yash/yash-2.52.ebuild
27 new file mode 100644
28 index 00000000000..d9439e440b7
29 --- /dev/null
30 +++ b/app-shells/yash/yash-2.52.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +PLOCALES="en ja"
37 +
38 +inherit flag-o-matic plocale toolchain-funcs
39 +
40 +DESCRIPTION="Yash is a POSIX-compliant command line shell"
41 +HOMEPAGE="https://yash.osdn.jp/"
42 +SRC_URI="mirror://sourceforge.jp/${PN}/76153/${P}.tar.xz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="nls test"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="sys-libs/ncurses:=
51 + nls? ( virtual/libintl )"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="nls? ( sys-devel/gettext )
54 + test? ( sys-apps/ed )"
55 +
56 +src_configure() {
57 + append-cflags -std=c99
58 +
59 + sh ./configure \
60 + --prefix="${EPREFIX}"/usr \
61 + --exec-prefix="${EPREFIX}" \
62 + $(use_enable nls) \
63 + CC=$(tc-getCC) \
64 + LINGUAS="$(plocale_get_locales | sed "s/en/en@quot en@boldquot/")" \
65 + || die
66 +}