forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-3.0.21, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann <[email protected]>
- Loading branch information
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# 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" | ||
|
||
BDEPEND="dev-php/theseer-Autoload" | ||
|
||
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.11 | ||
>=dev-php/metadata-minifier-1.0 | ||
>=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-2" | ||
|
||
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/MetadataMinifier/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 | ||
} |