Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/rush/
Date: Tue, 02 Jul 2019 09:13:27
Message-Id: 1562058798.49f4282c385875b3de854319b96f4af06a7abd13.polynomial-c@gentoo
1 commit: 49f4282c385875b3de854319b96f4af06a7abd13
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 2 09:10:12 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 2 09:13:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f4282c
7
8 app-shells/rush: Initial commit
9
10 Package-Manager: Portage-2.3.68, Repoman-2.3.16
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-shells/rush/Manifest | 1 +
14 app-shells/rush/metadata.xml | 8 ++++++++
15 app-shells/rush/rush-2.0.ebuild | 25 +++++++++++++++++++++++++
16 3 files changed, 34 insertions(+)
17
18 diff --git a/app-shells/rush/Manifest b/app-shells/rush/Manifest
19 new file mode 100644
20 index 00000000000..484d5b66d7f
21 --- /dev/null
22 +++ b/app-shells/rush/Manifest
23 @@ -0,0 +1 @@
24 +DIST rush-2.0.tar.xz 810096 BLAKE2B 793f341910cfa5e1560928ea96234ebcd5185e00450c81fd03e67598227973248ebe2dd12fecaba135fcf991d830e44d2e8b273ff251d1f9b8038df2575ae3cd SHA512 7087962d0489e2cdac903abf193e7b1306ae8f76eae7f722f105a70a14aae3d72627de230edd104da34ea31aa07cdc8024eff33a9c70b987a2111435fe2a684e
25
26 diff --git a/app-shells/rush/metadata.xml b/app-shells/rush/metadata.xml
27 new file mode 100644
28 index 00000000000..c7be278b645
29 --- /dev/null
30 +++ b/app-shells/rush/metadata.xml
31 @@ -0,0 +1,8 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>polynomial-c@g.o</email>
37 + <name>Lars Wendler</name>
38 + </maintainer>
39 +</pkgmetadata>
40
41 diff --git a/app-shells/rush/rush-2.0.ebuild b/app-shells/rush/rush-2.0.ebuild
42 new file mode 100644
43 index 00000000000..7aa72994107
44 --- /dev/null
45 +++ b/app-shells/rush/rush-2.0.ebuild
46 @@ -0,0 +1,25 @@
47 +# Copyright 1999-2019 Gentoo Authors
48 +# Distributed under the terms of the GNU General Public License v2
49 +
50 +EAPI=7
51 +
52 +DESCRIPTION="Restricted User Shell"
53 +HOMEPAGE="https://puszcza.gnu.org.ua/projects/rush/"
54 +SRC_URI="ftp://download.gnu.org.ua/pub/release/${PN}/${P}.tar.xz"
55 +
56 +KEYWORDS="~amd64 ~x86"
57 +LICENSE="GPL-3"
58 +SLOT="0"
59 +
60 +IUSE="nls"
61 +
62 +BDEPEND="
63 + nls? ( sys-devel/gettext )
64 +"
65 +
66 +src_configure() {
67 + local myeconfargs=(
68 + $(use_enable nls)
69 + )
70 + econf "${myeconfargs[@]}"
71 +}