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/phar-utils/
Date: Thu, 20 Sep 2018 12:00:42
Message-Id: 1537444818.089c91791a8f2268e456772950a35fd4ef62777b.whissi@gentoo
1 commit: 089c91791a8f2268e456772950a35fd4ef62777b
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 7 11:14:53 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 20 12:00:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089c9179
7
8 dev-php/phar-utils: bump to 1.0.1
9
10 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12
13 dev-php/phar-utils/Manifest | 1 +
14 dev-php/phar-utils/phar-utils-1.0.1.ebuild | 22 ++++++++++++++++++++++
15 2 files changed, 23 insertions(+)
16
17 diff --git a/dev-php/phar-utils/Manifest b/dev-php/phar-utils/Manifest
18 index 0446b10eaec..0015d97693c 100644
19 --- a/dev-php/phar-utils/Manifest
20 +++ b/dev-php/phar-utils/Manifest
21 @@ -1 +1,2 @@
22 DIST phar-utils-1.0.0.tar.gz 3152 BLAKE2B c4dfd3d659989bc22adcc14c79e28d623753988742d2fdd178dfd98590b629083ad85c9f112ab23c6213fa70cdad838ebbdc01c45551892ed9a20a3374abd28c SHA512 bf3d7074a3f1101a7f03e8fb8a5bc1456674bf2f9ded6a5fc5fb2f892c1cc3c4643fab6c003851ed12ea16ce6390f482cf897beee7d7c38922b6c54c90b0934e
23 +DIST phar-utils-1.0.1.tar.gz 3251 BLAKE2B 4d12701c53c3a17a141dd35210bbac16b84be7bb6d87b459d13114b09188487f86aedc13afbf510a2e01741a72e1929e25ee5204b729fa5b23801e429f844a58 SHA512 a1fb09b712add948f7b5c19e2f9e81869c76f91dd7d41c981b3f06870a6f7a15d0c413338751587642e3dc538e181336b9fe80f61148ce304025434e9d01d6bd
24
25 diff --git a/dev-php/phar-utils/phar-utils-1.0.1.ebuild b/dev-php/phar-utils/phar-utils-1.0.1.ebuild
26 new file mode 100644
27 index 00000000000..9ed73f9e628
28 --- /dev/null
29 +++ b/dev-php/phar-utils/phar-utils-1.0.1.ebuild
30 @@ -0,0 +1,22 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="PHAR file format utilities, for when PHP phars you up"
37 +HOMEPAGE="https://github.com/Seldaek/phar-utils"
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:*[phar]
46 + dev-php/fedora-autoloader"
47 +
48 +src_install() {
49 + insinto "/usr/share/php/Seld/PharUtils"
50 + doins -r src/. "${FILESDIR}"/autoload.php
51 + dodoc README.md
52 +}