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-io-manifest/
Date: Fri, 22 Feb 2019 14:55:40
Message-Id: 1550846157.d00233a99c1410d1972cdfcba58353fa16a8c5fe.whissi@gentoo
1 commit: d00233a99c1410d1972cdfcba58353fa16a8c5fe
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 22 14:35:57 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 22 14:35:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d00233a9
7
8 dev-php/phar-io-manifest: bump to v1.0.3
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/phar-io-manifest/Manifest | 1 +
14 .../phar-io-manifest/phar-io-manifest-1.0.3.ebuild | 27 ++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/dev-php/phar-io-manifest/Manifest b/dev-php/phar-io-manifest/Manifest
18 index f78f8aa5b7e..f5d78ab77fe 100644
19 --- a/dev-php/phar-io-manifest/Manifest
20 +++ b/dev-php/phar-io-manifest/Manifest
21 @@ -1 +1,2 @@
22 DIST phar-io-manifest-1.0.1.tar.gz 21403 BLAKE2B 0f18d94d127ec54914cb60756fd3e75c2d13ec593b7101735e385e4515abf4da0f03ef94d0bbbfaee02f348309525504f5e99e150a68b0d0fcd2129ccade4541 SHA512 3e4dd7ddd6de0a9f70595d0d8a6721782d2584526d3d4649cf0338ab36f106798daf4b7dcbf5bd972893a1569b622e4217212e5812b14e4bf3f698504f4d2228
23 +DIST phar-io-manifest-1.0.3.tar.gz 21903 BLAKE2B 48fb8858ea6c89415e78da399e2d3b6660e1857958094bf5e6c42465cfc32e34122ec1ab6e413f36f48e288ef40af7b85f93c80e6a2cfa547a166557de04ec97 SHA512 f8f9a6d4b761b739ec24a9f94ae5d4ac74f7276621675e3f3c7c3085aa7662c73cc703b1c86531d327199cf42074bb19446c14f78a3c8a888b1d236dc59bed94
24
25 diff --git a/dev-php/phar-io-manifest/phar-io-manifest-1.0.3.ebuild b/dev-php/phar-io-manifest/phar-io-manifest-1.0.3.ebuild
26 new file mode 100644
27 index 00000000000..c50a6a0feca
28 --- /dev/null
29 +++ b/dev-php/phar-io-manifest/phar-io-manifest-1.0.3.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +DESCRIPTION="Reading phar.io manifest information from a PHP Archive (PHAR)"
37 +HOMEPAGE="https://github.com/phar-io/manifest"
38 +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="BSD"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
43 +IUSE="examples"
44 +
45 +S="${WORKDIR}/manifest-${PV}"
46 +
47 +RDEPEND="dev-php/fedora-autoloader
48 + dev-php/phar-io-version
49 + dev-lang/php:*[phar]"
50 +
51 +src_install() {
52 + insinto /usr/share/php/PharIo/Manifest
53 + doins -r src/*
54 + doins "${FILESDIR}/autoload.php"
55 + dodoc README.md
56 + use examples && dodoc -r examples
57 +}