commit: 8586a60cec6a891d0e464f36b5b1da4352ca5d13 Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org> AuthorDate: Tue Feb 16 16:13:04 2021 +0000 Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org> CommitDate: Tue Feb 16 16:13:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8586a60c
x11-themes/vdr-channel-logos: fixed install for musl cleanup buggy version this will fix bug 715694 Closes: https://bugs.gentoo.org/715694 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org> ...nel-logos-0.2-r2.ebuild => vdr-channel-logos-0.2-r3.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r2.ebuild b/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r3.ebuild similarity index 81% rename from x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r2.ebuild rename to x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r3.ebuild index 7baf764c285..427c4822d44 100644 --- a/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r2.ebuild +++ b/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -30,9 +30,11 @@ _test_charmap() { src_prepare() { default - _test_charmap - - convmv --notest --replace -f iso-8859-1 -t utf-8 -r "${S}"/ + # bug 715684 + if [[ ${CHOST} != *-musl* ]] ; then + _test_charmap + fi + convmv --notest --replace -f iso-8859-1 -t utf-8 -r "${S}"/ } src_install() {
