From 85df4f93ee31ec4074958cde9f41c4e718f0eb4b Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Thu, 20 Sep 2018 16:53:30 +0200 Subject: [PATCH] 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 --- ...x-licenses-1.4.0.ebuild => spdx-licenses-1.4.0-r1.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename dev-php/spdx-licenses/{spdx-licenses-1.4.0.ebuild => spdx-licenses-1.4.0-r1.ebuild} (83%) 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 similarity index 83% rename from dev-php/spdx-licenses/spdx-licenses-1.4.0.ebuild rename to dev-php/spdx-licenses/spdx-licenses-1.4.0-r1.ebuild index 5d0d655446699..57236bd1ba3cd 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 }