Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 660424 - media-tv/kodi-9999 install phase fails due to file renames
Summary: media-tv/kodi-9999 install phase fails due to file renames
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Craig Andrews
URL:
Whiteboard:
Keywords: PATCH
Depends on:
Blocks:
 
Reported: 2018-07-05 03:52 UTC by Michael Cook
Modified: 2018-07-08 15:43 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Cook 2018-07-05 03:52:33 UTC
rm: cannot remove '/var/tmp/portage/media-tv/kodi-9999/image/usr/share/doc/*/LICENSE.GPL*': No such file or directory
 * ERROR: media-tv/kodi-9999::gentoo failed (install phase):
 *   (no error message)
 * 
 * Call stack:
 *     ebuild.sh, line 124:  Called src_install
 *   environment, line 5936:  Called die
 * The specific snippet of code:
 *       rm "${ED%/}"/usr/share/doc/*/{LICENSE.GPL,copying.txt}* || die;

LICENSE.GPL renamed to LICENSE.md

Unsure if anything else was.
Comment 1 Pertti Kosunen 2018-07-05 16:42:20 UTC
Confirmed, GPL -> md fixes it.

------
 # diff -u /usr/portage/media-tv/kodi/kodi-9999.ebuild /usr/local/portage/media-tv/kodi/kodi-9999.ebuild
--- /usr/portage/media-tv/kodi/kodi-9999.ebuild	2018-06-28 22:39:20.000000000 +0300
+++ /usr/local/portage/media-tv/kodi/kodi-9999.ebuild	2018-07-05 19:08:25.987422374 +0300
@@ -296,7 +296,7 @@
 
 	pax-mark Em "${ED%/}"/usr/$(get_libdir)/${PN}/${PN}.bin
 
-	rm "${ED%/}"/usr/share/doc/*/{LICENSE.GPL,copying.txt}* || die
+	rm "${ED%/}"/usr/share/doc/*/{LICENSE.md,copying.txt}* || die
 
 	newicon media/icon48x48.png kodi.png
 ------