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/composer/
Date: Sun, 17 Nov 2019 21:01:46
Message-Id: 1574024484.f5c3e6a61df19467a088d19dc58dc29d6842ec45.whissi@gentoo
1 commit: f5c3e6a61df19467a088d19dc58dc29d6842ec45
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 20:38:53 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 21:01:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c3e6a6
7
8 dev-php/composer: bump to v1.9.1
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/composer/Manifest | 1 +
14 dev-php/composer/composer-1.9.1.ebuild | 48 ++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/dev-php/composer/Manifest b/dev-php/composer/Manifest
18 index 7495d665940..657c1318eee 100644
19 --- a/dev-php/composer/Manifest
20 +++ b/dev-php/composer/Manifest
21 @@ -1,2 +1,3 @@
22 DIST composer-1.8.6.tar.gz 409002 BLAKE2B 15d9621e062646b81518aff816a3e0b187bf1d9cd617c32e3a19167ba0c89b9ee8f55503e7d2e6d3515939f7d50131c5be0786fc04518409584960290eb32118 SHA512 97ab93acba24307897fe64b3762e77ebca9fa794c5eb476a9d774feb124dbd53b090c36b0fa9d1da38ea26d13af8bf13d7bc733c9c465fba6b908e590ea96dbc
23 DIST composer-1.9.0.tar.gz 410267 BLAKE2B 5bbba9eefe703eb55a7d63647e8ecb3e4560b4ffeff321282f4f0c0db1aca143e210b517f98cf5fd9a9839d714b9badb1092b9d1430d65f29e5b134d9321370f SHA512 70e484404752a6b4aa94dc2c5999ab615c5518b60a580399096c7d2b0a026feadc7c10509a00920eab8f0298015fb1f5f82abc426927a35b8bc3c3e454d0b20e
24 +DIST composer-1.9.1.tar.gz 411432 BLAKE2B a5f495f2358166aa04062fa16074fed3978eacce864d0497a0c0ecc9ff130068d37435c15d972740d663acfb1b313276c9b6bcfa32e3e6860e0c0b15045e5d9b SHA512 34ab19a61285ccc065dbedb276677919deaff35a0e963e361d9f2dfb183e80bcea9fb04931ab7cc9fd4088a8806cf516acf0651c692d00d1cee515f7fe46de82
25
26 diff --git a/dev-php/composer/composer-1.9.1.ebuild b/dev-php/composer/composer-1.9.1.ebuild
27 new file mode 100644
28 index 00000000000..d39d5769d38
29 --- /dev/null
30 +++ b/dev-php/composer/composer-1.9.1.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Dependency Manager for PHP"
38 +HOMEPAGE="https://github.com/composer/composer"
39 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + dev-lang/php:*[curl]
49 + >=dev-php/ca-bundle-1.1.3
50 + >=dev-php/psr-log-1.1.0
51 + dev-php/fedora-autoloader
52 + >=dev-php/json-schema-5.2.7
53 + >=dev-php/jsonlint-1.7.1
54 + >=dev-php/phar-utils-1.0.1
55 + >=dev-php/semver-1.4.2
56 + >=dev-php/spdx-licenses-1.5.0
57 + >=dev-php/symfony-console-2.8.48
58 + >=dev-php/symfony-filesystem-2.8.48
59 + >=dev-php/symfony-finder-2.8.49
60 + >=dev-php/symfony-process-2.8.48
61 + >=dev-php/xdebug-handler-1.3.1"
62 +
63 +src_install() {
64 + insinto "/usr/share/${PN}"
65 +
66 + # Composer expects the LICENSE file to be there, and the
67 + # easiest thing to do is to give it what it wants.
68 + doins -r src res LICENSE
69 +
70 + insinto "/usr/share/${PN}/vendor"
71 + newins "${FILESDIR}"/autoload-r1.php autoload.php
72 +
73 + exeinto "/usr/share/${PN}/bin"
74 + doexe "bin/${PN}"
75 + dosym "../share/${PN}/bin/${PN}" "/usr/bin/${PN}"
76 +
77 + dodoc CHANGELOG.md README.md doc/*.md
78 + dodoc -r doc/articles doc/faqs
79 +}