Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/quoter/
Date: Fri, 10 Feb 2017 09:44:13
Message-Id: 1486719816.1f2c76f541de6c0d4248abbddb2553c85273c0bb.xmw@gentoo
1 commit: 1f2c76f541de6c0d4248abbddb2553c85273c0bb
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 10 09:14:24 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 10 09:43:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f2c76f5
7
8 app-shells/quoter: Move quoter_pipe.sh into /usr/share/quoter (bug 598529).
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-shells/quoter/quoter-3.0_p2-r1.ebuild | 22 ++++++++++++++++++++++
13 1 file changed, 22 insertions(+)
14
15 diff --git a/app-shells/quoter/quoter-3.0_p2-r1.ebuild b/app-shells/quoter/quoter-3.0_p2-r1.ebuild
16 new file mode 100644
17 index 0000000000..29b79f549e
18 --- /dev/null
19 +++ b/app-shells/quoter/quoter-3.0_p2-r1.ebuild
20 @@ -0,0 +1,22 @@
21 +# Copyright 2016-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit vcs-snapshot
26 +
27 +DESCRIPTION="Quote arguments or standard input for usage in POSIX shell by eval"
28 +HOMEPAGE="https://github.com/vaeth/quoter/"
29 +SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 +
31 +LICENSE="MIT"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
34 +IUSE=""
35 +
36 +src_install() {
37 + emake DESTDIR="${ED}" install
38 +
39 + rm -f "${ED}"/usr/bin/quoter_pipe.sh || die
40 + insinto /usr/share/${PN}
41 + doins bin/quoter_pipe.sh
42 +}