summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2018-09-20 16:53:30 +0200
committerThomas Deutschmann <whissi@gentoo.org>2018-09-20 16:54:27 +0200
commit85df4f93ee31ec4074958cde9f41c4e718f0eb4b (patch)
tree11ed2a9677fcb67fe47748efedf92e80ac7eeb02 /dev-php/spdx-licenses
parentmedia-fonts/x11fonts-jmk: Turn into well-behaved font (diff)
downloadgentoo-85df4f93ee31ec4074958cde9f41c4e718f0eb4b.tar.gz
gentoo-85df4f93ee31ec4074958cde9f41c4e718f0eb4b.tar.bz2
gentoo-85df4f93ee31ec4074958cde9f41c4e718f0eb4b.zip
dev-php/spdx-licenses: fix spdx-{exceptions,licenses}.json install location
spdx-{exceptions,licenses}.json files must be installed into Composer/res or `composer validate` will throw the following error: > [ErrorException] > file_get_contents(/usr/share/php/Composer/res/spdx-licenses.json): failed to open stream: No such file or directory Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-php/spdx-licenses')
-rw-r--r--dev-php/spdx-licenses/spdx-licenses-1.4.0-r1.ebuild (renamed from dev-php/spdx-licenses/spdx-licenses-1.4.0.ebuild)5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-php/spdx-licenses/spdx-licenses-1.4.0.ebuild b/dev-php/spdx-licenses/spdx-licenses-1.4.0-r1.ebuild
index 5d0d65544669..57236bd1ba3c 100644
--- a/dev-php/spdx-licenses/spdx-licenses-1.4.0.ebuild
+++ b/dev-php/spdx-licenses/spdx-licenses-1.4.0-r1.ebuild
@@ -16,7 +16,10 @@ RDEPEND="
dev-php/fedora-autoloader"
src_install() {
+ insinto "/usr/share/php/Composer/res"
+ doins -r res/.
+
insinto "/usr/share/php/Composer/Spdx"
- doins -r src/. res "${FILESDIR}"/autoload.php
+ doins -r src/. "${FILESDIR}"/autoload.php
dodoc README.md
}