# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 MY_PN="${PN//symfony-/}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Eases the creation of beautiful and testable command line interfaces" HOMEPAGE="https://github.com/symfony/console" SRC_URI="https://github.com/symfony/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RESTRICT="test" PROPERTIES="test_network" RDEPEND="dev-lang/php:* dev-php/fedora-autoloader dev-php/symfony-deprecation-contracts dev-php/symfony-polyfill-mbstring dev-php/symfony-service-contracts dev-php/symfony-string" BDEPEND="test? ( dev-php/composer dev-php/phpunit dev-php/psr-log dev-php/symfony-dependency-injection dev-php/symfony-event-dispatcher dev-php/symfony-lock dev-php/symfony-phpunit-bridge >=dev-php/symfony-process-6.4.8 dev-php/symfony-var-dumper )" DOCS=( {CHANGELOG,README}.md ) src_prepare() { default install -D -m 644 "${FILESDIR}"/autoload.php \ autoload.php || die "install failed" install -D -m 644 "${FILESDIR}"/autoload-test.php \ vendor/autoload.php || die "install failed" } src_test() { composer require -d "${T}" --prefer-source \ --dev "${PN/-/\/}:${PV}" || die "composer failed" cp -r "${T}"/vendor/"${PN/-/\/}"/{phpunit.xml.dist,Tests} "${S}" \ || die "cp failed" # remove test with unsupported method TestFailure sed -i '/testUnsuccessfulCommand/,+15d' \ Tests/Tester/Constraint/CommandIsSuccessfulTest.php \ || die "sed failed for CommandIsSuccessfulTest.php" # remove failed test sed -i '/testAutocompleteMoveCursorBackwards/,+18d' \ Tests/Helper/QuestionHelperTest.php \ || die "sed failed for QuestionHelperTest.php" phpunit --testdox || die "phpunit failed" } src_install() { einstalldocs insinto /usr/share/php/Symfony/Component/Console doins -r Attribute CI Command CommandLoader Completion DataCollector \ Debug DependencyInjection Descriptor Event EventListener \ Exception Formatter Helper Input Logger Messenger Output \ Question Resources SignalRegistry Style Tester ./*.php }