dev-php/ralouphie-getallheaders - 3.0.3 (nest)

Search

Package Information

Description:
PHP getallheaders polyfill
Homepage:
https://github.com/ralouphie/getallheaders
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
3.0.3 8 ~amd64 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

MY_PN="${PN//ralouphie-/}"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="PHP getallheaders polyfill"
HOMEPAGE="https://github.com/ralouphie/getallheaders"
SRC_URI="https://github.com/ralouphie/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="test"
PROPERTIES="test_network"

RDEPEND="dev-lang/php:*
	dev-php/fedora-autoloader"
BDEPEND="test? ( 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,tests} "${S}" \
		|| die "cp failed"
	# fix non-static data provider deprecation
	sed -i '/dataWorks(/s|function|static function|' \
		tests/GetAllHeadersTest.php \
		|| die "sed failed for CompliesTest.php"

	phpunit --testdox || die "phpunit failed"
}

src_install() {
	einstalldocs
	insinto /usr/share/php/Ralouphie/Getallheaders
	doins -r src/.
}

USE Flags

Dependencies

RDEPEND

dev-lang/php:*
	dev-php/fedora-autoloader

BDEPEND

test? ( dev-php/composer
		dev-php/phpunit )

Manifest for 3.0.3

Type File Size Source URLs
DIST ralouphie-getallheaders-3.0.3.tar.gz 2121 bytes https://github.com/ralouphie/${PN//ralouphie-/}/archive/3.0.3.tar.gz