From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/composer/
Date: Mon, 5 Apr 2021 19:56:44 +0000 (UTC) [thread overview]
Message-ID: <1617652599.5d30777ce98a57728f0a5780a7b9efa92cda745a.whissi@gentoo> (raw)
commit: 5d30777ce98a57728f0a5780a7b9efa92cda745a
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 5 19:56:39 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Apr 5 19:56:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d30777c
dev-php/composer: bump to v2.0.12
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-php/composer/Manifest | 1 +
dev-php/composer/composer-2.0.12.ebuild | 76 +++++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/dev-php/composer/Manifest b/dev-php/composer/Manifest
index 9b972d2f96d..2c727656309 100644
--- a/dev-php/composer/Manifest
+++ b/dev-php/composer/Manifest
@@ -1,2 +1,3 @@
DIST composer-1.10.20.tar.gz 429016 BLAKE2B 29dcf1e32974230075e56c9b11e53316a1bada9a6ccf43f3357fc39577abadde566df962bb9bf92cc9806a012fbd70c18aba5daee87090fd10de273643d92ce7 SHA512 5b85ebc6a0612c01bd2dd6f6a57526581a821c1a45163ef85511bd0e629b10dc464776b56fe33be192b2a3f07ce818dc40cf2305d9f65ee10287b2265e198cca
DIST composer-2.0.11.tar.gz 494980 BLAKE2B 7095b27ff770c890261a622d2b96febeca226fa307fe14d74df0e723fdf2ade8b04ceb85a25317f4f6b2f5cfc9dce27223738e61a734d6b4c3b4069c03ad551a SHA512 7f2429b4cf0dd237b17d393837e18e12886a9b0641130c8d6e490b37f85b8beee54a2b58003e63b7b157104edf70dff211ca44255ee60bf904b3fb7d57f186d2
+DIST composer-2.0.12.tar.gz 497394 BLAKE2B 6d9fe821466714a6b96faef66b8e934b6e9a680734d7a010727a8e6921ba4e8058fcc01d824b6ccd87ad38dbe6dbfbe8b646d4fc40634721992e58ddf729fe9d SHA512 cede1331eef88ad202b6aac4b9a394bf45358ef069880e33fee13f12fb6039888ba75a6bf2a17c1cc7e514a2e909be2c99cedee4e98a8b76d8f67b3039cacfff
diff --git a/dev-php/composer/composer-2.0.12.ebuild b/dev-php/composer/composer-2.0.12.ebuild
new file mode 100644
index 00000000000..dfdecde74be
--- /dev/null
+++ b/dev-php/composer/composer-2.0.12.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DESCRIPTION="Dependency Manager for PHP"
+HOMEPAGE="https://github.com/composer/composer"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-lang/php:*[curl]
+ >=dev-php/ca-bundle-1.0
+ dev-php/fedora-autoloader
+ >=dev-php/jsonlint-1.4
+ >=dev-php/json-schema-5.2.10
+ >=dev-php/phar-utils-1.0
+ >=dev-php/psr-log-1.0
+ >=dev-php/reactphp-promise-2.7
+ >=dev-php/semver-3.0
+ >=dev-php/spdx-licenses-1.2
+ >=dev-php/symfony-console-2.8.52
+ >=dev-php/symfony-filesystem-2.8.52
+ >=dev-php/symfony-finder-2.8.52
+ >=dev-php/symfony-process-2.8.52
+ >=dev-php/xdebug-handler-1.1"
+
+src_prepare() {
+ default
+
+ mkdir vendor || die
+
+ phpab \
+ --output vendor/autoload.php \
+ --template "${FILESDIR}"/autoload.php.tpl \
+ --basedir src \
+ src \
+ || die
+
+ cat >> vendor/autoload.php <<EOF || die "failed to extend autoload.php"
+
+// Dependencies
+\Fedora\Autoloader\Dependencies::required([
+ '/usr/share/php/Composer/CaBundle/autoload.php',
+ '/usr/share/php/Composer/Semver/autoload.php',
+ '/usr/share/php/Composer/Spdx/autoload.php',
+ '/usr/share/php/Composer/XdebugHandler/autoload.php',
+ '/usr/share/php/JsonSchema/autoload.php',
+ '/usr/share/php/Psr/Log/autoload.php',
+ '/usr/share/php/Seld/JsonLint/autoload.php',
+ '/usr/share/php/Seld/PharUtils/autoload.php',
+ '/usr/share/php/Symfony/Component/Console/autoload.php',
+ '/usr/share/php/Symfony/Component/Filesystem/autoload.php',
+ '/usr/share/php/Symfony/Component/Finder/autoload.php',
+ '/usr/share/php/Symfony/Component/Process/autoload.php',
+ '/usr/share/php/React/Promise/autoload.php'
+]);
+EOF
+}
+
+src_install() {
+ insinto "/usr/share/${PN}"
+
+ # Composer expects the LICENSE file to be there, and the
+ # easiest thing to do is to give it what it wants.
+ doins -r LICENSE res src vendor
+
+ exeinto "/usr/share/${PN}/bin"
+ doexe "bin/${PN}"
+ dosym "../share/${PN}/bin/${PN}" "/usr/bin/${PN}"
+
+ dodoc CHANGELOG.md README.md doc/*.md
+ dodoc -r doc/articles doc/faqs
+}
next reply other threads:[~2021-04-05 19:56 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-05 19:56 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-09 17:42 [gentoo-commits] repo/gentoo:master commit in: dev-php/composer/ Mart Raudsepp
2022-04-27 7:26 Jakov Smolić
2022-04-27 6:58 Agostino Sarubbo
2021-11-14 3:58 Thomas Deutschmann
2021-11-09 0:30 Thomas Deutschmann
2021-11-01 1:25 Thomas Deutschmann
2021-10-15 14:33 Thomas Deutschmann
2021-10-15 10:22 Joonas Niilola
2021-09-22 12:16 Thomas Deutschmann
2021-08-24 13:17 Thomas Deutschmann
2021-07-23 22:41 Thomas Deutschmann
2021-06-11 12:47 Thomas Deutschmann
2021-06-08 9:14 Thomas Deutschmann
2021-06-04 7:33 Thomas Deutschmann
2021-05-28 8:59 Thomas Deutschmann
2021-05-10 6:58 Agostino Sarubbo
2021-05-06 6:55 Agostino Sarubbo
2021-04-27 14:41 Thomas Deutschmann
2021-04-27 14:28 Thomas Deutschmann
2021-04-27 14:28 Thomas Deutschmann
2021-04-27 14:28 Thomas Deutschmann
2021-03-20 10:46 Joonas Niilola
2021-03-20 10:46 Joonas Niilola
2021-03-01 18:06 Thomas Deutschmann
2021-03-01 18:06 Thomas Deutschmann
2021-02-23 22:22 Thomas Deutschmann
2021-02-01 16:50 Thomas Deutschmann
2021-02-01 16:50 Thomas Deutschmann
2020-10-19 21:10 Thomas Deutschmann
2020-09-13 23:19 Thomas Deutschmann
2020-08-06 14:34 Thomas Deutschmann
2020-07-26 18:30 Thomas Deutschmann
2020-06-29 15:09 Thomas Deutschmann
2020-06-14 23:30 Thomas Deutschmann
2020-05-19 9:49 Thomas Deutschmann
2020-04-21 11:07 Thomas Deutschmann
2020-03-19 21:55 Thomas Deutschmann
2020-03-19 21:55 Thomas Deutschmann
2020-02-14 15:15 Thomas Deutschmann
2020-01-23 1:30 Thomas Deutschmann
2019-11-17 21:01 Thomas Deutschmann
2019-08-17 23:37 Thomas Deutschmann
2019-08-16 14:17 Brian Evans
2019-07-18 13:01 Thomas Deutschmann
2019-03-09 21:02 Patrice Clement
2019-02-10 23:11 Patrice Clement
2018-12-22 23:17 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-05-12 20:38 Michał Górny
2018-03-20 13:26 Brian Evans
2018-02-20 19:29 Brian Evans
2018-01-23 2:32 Michael Orlitzky
2018-01-22 21:52 Patrice Clement
2017-12-03 15:06 Michael Orlitzky
2017-12-03 15:06 Michael Orlitzky
2017-11-02 1:03 Michael Orlitzky
2017-11-02 1:03 Michael Orlitzky
2017-11-02 1:03 Michael Orlitzky
2017-08-18 20:04 Michael Orlitzky
2017-08-18 20:04 Michael Orlitzky
2017-01-10 20:32 Michael Orlitzky
2017-01-10 20:32 Michael Orlitzky
2017-01-10 20:32 Michael Orlitzky
2016-12-23 18:43 Michael Orlitzky
2016-12-23 18:43 Michael Orlitzky
2016-12-18 23:18 Michael Orlitzky
2016-12-18 23:18 Michael Orlitzky
2016-12-18 23:18 Michael Orlitzky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1617652599.5d30777ce98a57728f0a5780a7b9efa92cda745a.whissi@gentoo \
--to=whissi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox