Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/push/
Date: Mon, 04 Jan 2016 16:54:35
Message-Id: 1451926449.20e3594b7e678e698e4cb325e26a8bdd8f2496a3.axs@gentoo
1 commit: 20e3594b7e678e698e4cb325e26a8bdd8f2496a3
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 4 16:45:38 2016 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 4 16:54:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20e3594b
7
8 app-shells/push: version bump, migrate to EAPI6
9
10 Package-Manager: portage-2.2.26
11
12 app-shells/push/Manifest | 1 +
13 app-shells/push/push-1.8.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/app-shells/push/Manifest b/app-shells/push/Manifest
17 index 9f977a2..7a21ba3 100644
18 --- a/app-shells/push/Manifest
19 +++ b/app-shells/push/Manifest
20 @@ -1,2 +1,3 @@
21 DIST push-1.5.tar.gz 1971 SHA256 7c9068a619bcc49e3e13f819e23e1c05464729df0529753557f23f65e922fdad SHA512 77f4afd1a8226b0b4104008fcea2a61e5c9a7930b08266e069c387c806ef86e8d5641d70ece6dfd02557c956fc916134551d10777e5730973657d767370f8a26 WHIRLPOOL e1d71d7d9369bf23fe9046a34f7c9cd4f7ff79b4db3e13a9cef089113e31f7db2ecb6ff13e899e1db7726359b68260776723f73201d3db0472d267b8db7515b2
22 DIST push-1.6.tar.gz 1955 SHA256 713dea172ede55971ff82da932782503c2aa6703eba73c1ac317ec4c8eb22e80 SHA512 4623f51249138bacb7251fb5d5d1ae8dd070de7ce628e42b6eed90a4b6ffd36d28eb58b116f5b1833bc1affa8db539da9b94d104ffe03c6bd1e294b56c393c86 WHIRLPOOL 787f65542e92fd10c411969d03ec17b45a90b35e9c8e17b9fb3e732fb1d97813f04c3a03cc329a469a5bea2a194f879f4c600e2e534dd8c778f7f712d4c171b1
23 +DIST push-1.8.tar.gz 1942 SHA256 99ae56c932b59b8b74c6a6d0972dfe5b65458d6871581168918264c5aa50bdbd SHA512 518568fc72d161d3abaea0a0c529d94fc9ad6dc46d18d300990de1367617e095befb8436e69267ebc11bd4dcbbbd9bca6375fc184666e442af6e2eaa68a992e5 WHIRLPOOL 5a763560b8afd4593aa1d0afc8f3ed5b053041c63d5aa742e485c25046191e8c733cdaf265117e23726c2c7cc8aeb87d3858a6228932192c2ee87ff4682e626d
24
25 diff --git a/app-shells/push/push-1.8.ebuild b/app-shells/push/push-1.8.ebuild
26 new file mode 100644
27 index 0000000..2de3b23
28 --- /dev/null
29 +++ b/app-shells/push/push-1.8.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +inherit vcs-snapshot
37 +
38 +DESCRIPTION="A POSIX shell function to treat a variable like an array, quoting args"
39 +HOMEPAGE="https://github.com/vaeth/push/"
40 +SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
45 +IUSE=""
46 +
47 +src_install() {
48 + insinto /usr/bin
49 + doins push.sh
50 + dodoc README
51 +}