Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/loksh/
Date: Fri, 19 Oct 2018 01:55:55
Message-Id: 1539914099.d1e99a0901e1586a686010ed5cbe829bc74e5a0f.gyakovlev@gentoo
1 commit: d1e99a0901e1586a686010ed5cbe829bc74e5a0f
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 19 01:54:59 2018 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 19 01:54:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e99a09
7
8 app-shells/loksh: version bump to 6.4
9
10 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-shells/loksh/Manifest | 1 +
14 app-shells/loksh/loksh-6.4.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/app-shells/loksh/Manifest b/app-shells/loksh/Manifest
18 index ea6bd4128b7..963f7a39193 100644
19 --- a/app-shells/loksh/Manifest
20 +++ b/app-shells/loksh/Manifest
21 @@ -1 +1,2 @@
22 DIST loksh-6.3.tar.gz 249493 BLAKE2B 1790b3c272d0ab3f0129ee199c46905850f87a9fc0815833d005ebedde53605701a8820e4ff40761e5742d4e4cac8969c9a4d7004a8fd995e6a4585f352790d7 SHA512 414d25c10096485bd1bb6574d0f91526f452ee0102924398aff0b1451128e5bf3d5d7344bcc746f574ad1acdefd39a92ee59d0b86b05f0c149418302c4d2d3fb
23 +DIST loksh-6.4.tar.gz 250475 BLAKE2B 061538766834038677019ca8f1ccd16c77245855f0d666ec5af78fc24995e74b22637ccb29d92d6c436c377d21c1a9449dcb79568ab5ccf7f141e8f0b6040d99 SHA512 74cce1428346820331fb8bce8acf275077b05a3c46081bce5c35e8e0d47704446bb93ce3e457dbf2e379d5d9656844b78c736b1190b2fe39ee92717863adb86c
24
25 diff --git a/app-shells/loksh/loksh-6.4.ebuild b/app-shells/loksh/loksh-6.4.ebuild
26 new file mode 100644
27 index 00000000000..ce9048c7251
28 --- /dev/null
29 +++ b/app-shells/loksh/loksh-6.4.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Linux port of OpenBSD's ksh"
39 +HOMEPAGE="https://github.com/dimkr/loksh"
40 +SRC_URI="https://github.com/dimkr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="public-domain"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="!app-shells/ksh"
47 +
48 +src_prepare() {
49 + default
50 + tc-export CC
51 +}
52 +
53 +src_install() {
54 + emake \
55 + BIN_DIR="${EROOT}/bin" \
56 + DESTDIR="${D}" \
57 + DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" \
58 + install
59 +
60 + dodoc NOTES
61 +}