View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="${PN//amphp-/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="An advanced async HTTP server library for PHP"
HOMEPAGE="https://github.com/amphp/http-server"
SRC_URI="https://github.com/amphp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="ipv6 test"
RESTRICT="test"
PROPERTIES="test_network"
RDEPEND="dev-lang/php:*[ipv6?]
dev-php/amphp-amp
dev-php/amphp-byte-stream
dev-php/amphp-cache
dev-php/amphp-hpack
dev-php/amphp-http
dev-php/amphp-pipeline
dev-php/amphp-socket
dev-php/amphp-sync
dev-php/fedora-autoloader
dev-php/league-uri
dev-php/league-uri-interfaces
dev-php/psr-http-message
dev-php/psr-log
dev-php/revolt-event-loop"
BDEPEND="test? ( dev-php/amphp-http-client
dev-php/composer
dev-php/phpunit )"
src_prepare() {
default
install -D -m 644 "${FILESDIR}"/autoload.php \
src/autoload.php || die "install failed"
install -D -m 644 "${FILESDIR}"/autoload-test.php \
vendor/autoload.php || die "install test failed"
}
src_test() {
composer require -d "${T}" --prefer-source \
--dev "${PN/-/\/}:${PV}" || die "composer failed"
cp -r "${T}"/vendor/"${PN/-/\/}"/{phpunit.xml.dist,test} "${S}" \
|| die "cp failed"
! use ipv6 && eapply "${FILESDIR}/${PN}"-3.3.1-test-no-ipv6.patch
# fix abstract class with Test suffix
mv test/Driver/HttpDriverTest{,Abstract}.php || die "mv failed"
sed -i '/class /s|HttpDriverTest|HttpDriverTestAbstract|' \
test/Driver/HttpDriverTestAbstract.php \
test/Driver/Http{1,2}DriverTest.php || die "sed failed"
# fix non-static data provider deprecation
sed -i -e '/provideUnparsableRequests(/s|function|static function|g' \
-e '/provideParsableRequests(/s|function|static function|g' \
-e '/chunkSizeProvider(/s|function|static function|' \
-e '/provideUpgradeBodySizeData(/s|function|static function|' \
-e '/provideWriteResponses(/s|function|static function|' \
-e '/provideSimpleCases(/s|function|static function|' \
-e '/provideForwardedHeaders(/s|function|static function|' \
test/Driver/Http1DriverTest.php \
|| die "sed failed for Http1DriverTest.php"
sed -i '/provideSimpleCases(/s|function|static function|' \
test/Driver/Http2DriverTest.php \
|| die "sed failed for Http2DriverTest.php"
sed -i '/provideForwardedHeaders(/s|function|static function|' \
test/Middleware/ForwardedMiddlewareTest.php \
|| die "sed failed for ForwardedMiddlewareTest.php"
# remove failed tests
sed -i -e '/testDispose(/,+5d' \
-e '/testDisposeThrowing(/,+12d' test/ResponseTest.php \
|| die "sed failed for ResponseTest.php"
sed -i '/testPush(/,+32d' test/Driver/Http2DriverTest.php \
|| die "sed failed for Http2DriverTest.php"
sed -i -e '/ verifyWrite(/,+25d' \
-e '/testWrite(/,+51d' \
test/Driver/Http1DriverTest.php \
|| die "sed failed for Http1DriverTest.php"
# skipped — testFlowControl
phpunit --testdox || die "phpunit failed"
}
src_install() {
einstalldocs
insinto /usr/share/php/Amp/Http/Server
doins -r src/.
}