| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.5.9 | 8 | ~amd64 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="${PN//composer-/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Tools for working with and validating SPDX licenses"
HOMEPAGE="https://github.com/composer/spdx-licenses"
SRC_URI="https://github.com/composer/${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-php/spdx-licenses
dev-lang/php:*
dev-php/fedora-autoloader"
BDEPEND="test? ( dev-php/composer
dev-php/phpunit )"
PATCHES=( "${FILESDIR}/${PN}"-1.5.8-res-path.patch )
src_prepare() {
default
install -D -m 644 "${FILESDIR}"/autoload.php \
src/autoload.php || die "install failed"
# mimic system path for bootstrap
mkdir -p composer tmp/fake || die "mkdir failed"
ln -s -t composer ../res || die "ln for res 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 for non-existed class
rm tests/SpdxLicensesUpdaterTest.php || die "rm failed"
# fix function declaration and path to res
sed -i -e "/__DIR__/s|__DIR__ . '/../res|'${S}/res|" \
-e '/setUp/s|$|: void|' tests/SpdxLicensesTest.php \
|| die "sed failed for SpdxLicensesTest.php"
# mimic system path for bootstrap
cp -a src tests tmp/fake || die "cp failed"
# fix non-static data provider deprecation
sed -i -e '/provideValidLicenses(/s|function|static function|' \
-e '/provideInvalidLicenses(/s|function|static function|' \
-e '/provideInvalidArgument(/s|function|static function|' \
-e '/provideResourceFiles(/s|function|static function|g' \
tmp/fake/tests/SpdxLicensesTest.php \
|| die "sed failed for SpdxLicensesTest.php"
phpunit --bootstrap tmp/fake/src/autoload.php \
tmp/fake/tests --testdox || die "phpunit failed"
}
src_install() {
einstalldocs
insinto /usr/share/php/Composer/Spdx
doins -r src/.
insinto /usr/share/composer/res
doins -r res/.
}
!dev-php/spdx-licenses dev-lang/php:* dev-php/fedora-autoloader
test? ( dev-php/composer dev-php/phpunit )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | composer-spdx-licenses-1.5.9.tar.gz | 15647 bytes | https://github.com/composer/${PN//composer-/}/archive/1.5.9.tar.gz |