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/push/
Date: Fri, 10 Feb 2017 09:44:11
Message-Id: 1486719808.ccbd433e0262b4840c974ee01d828d44e89e393d.xmw@gentoo
1 commit: ccbd433e0262b4840c974ee01d828d44e89e393d
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 10 09:10:06 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 10 09:43:28 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbd433e
7
8 app-shells/push: move push.sh into /usr/share/push (bug 598527).
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-shells/push/push-2.0-r1.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/app-shells/push/push-2.0-r1.ebuild b/app-shells/push/push-2.0-r1.ebuild
16 new file mode 100644
17 index 0000000000..61d091811c
18 --- /dev/null
19 +++ b/app-shells/push/push-2.0-r1.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit vcs-snapshot
27 +
28 +DESCRIPTION="A POSIX shell function to treat a variable like an array, quoting args"
29 +HOMEPAGE="https://github.com/vaeth/push/"
30 +SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="BSD"
33 +SLOT="0"
34 +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"
35 +IUSE=""
36 +
37 +src_install() {
38 + insinto /usr/share/${PN}
39 + doins bin/push.sh
40 + dodoc README
41 +}