Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/cli-prompt/
Date: Tue, 18 Dec 2018 00:51:46
Message-Id: 1545094289.8777b48b44500d60a706ee98bf0e52e6a606ddd3.whissi@gentoo
1 commit: 8777b48b44500d60a706ee98bf0e52e6a606ddd3
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 17 23:44:06 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 18 00:51:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8777b48b
7
8 dev-php/cli-prompt: bump to v1.0.3
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/cli-prompt/Manifest | 1 +
14 dev-php/cli-prompt/cli-prompt-1.0.3.ebuild | 22 ++++++++++++++++++++++
15 2 files changed, 23 insertions(+)
16
17 diff --git a/dev-php/cli-prompt/Manifest b/dev-php/cli-prompt/Manifest
18 index 08a5bee3d91..cf275cec7fd 100644
19 --- a/dev-php/cli-prompt/Manifest
20 +++ b/dev-php/cli-prompt/Manifest
21 @@ -1 +1,2 @@
22 DIST cli-prompt-1.0.0.tar.gz 7538 BLAKE2B 650bb080c77471515d9baf31d1c5ea13fbfb4a9100e607e2f9c372c8c2ba0f6eac2d67ea0d2327bf30d1cbfaa65a8feb7e999b3a0b130f54e48c85ed8236cbe4 SHA512 5a1f6f999976f3b01d857890b5a06cfed377597397266b44d4aba324bedc2b9f73db5dc184ab40ee6632b43c80da99f5641366903bbc7bb7e18409cb367c8461
23 +DIST cli-prompt-1.0.3.tar.gz 7563 BLAKE2B 5f4ba04f3ed1e98b30c5ce840fdb0189422b6c83e6df82b3a617eb120b4dadc840287b3ee559b6605f1b2a9eb873abbc446a9ed3ec1dfeba1158a7a27ebee951 SHA512 e7e7bb0ae5173b784ab7dac4453b23d039abb68c11b21bfd3756f7f37da413744dcd76d8f8769ace023f91f0f2a8f78421d432bf96fe0781c05a9584b0f0f64d
24
25 diff --git a/dev-php/cli-prompt/cli-prompt-1.0.3.ebuild b/dev-php/cli-prompt/cli-prompt-1.0.3.ebuild
26 new file mode 100644
27 index 00000000000..5a3a63f745e
28 --- /dev/null
29 +++ b/dev-php/cli-prompt/cli-prompt-1.0.3.ebuild
30 @@ -0,0 +1,22 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Allows you to prompt for user input on the command line"
37 +HOMEPAGE="https://github.com/Seldaek/cli-prompt"
38 +SRC_URI="https://github.com/Seldaek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +RDEPEND="
45 + dev-lang/php:*
46 + dev-php/fedora-autoloader"
47 +
48 +src_install() {
49 + insinto "/usr/share/php/Seld/CliPrompt"
50 + doins -r src/. "${FILESDIR}"/autoload.php
51 + dodoc README.md
52 +}