From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 093D413835B for ; Sun, 24 Jan 2021 21:06:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40542E0909; Sun, 24 Jan 2021 21:06:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 263D9E0909 for ; Sun, 24 Jan 2021 21:06:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A1D8340B0B for ; Sun, 24 Jan 2021 21:06:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A43F4AA for ; Sun, 24 Jan 2021 21:05:59 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1611521263.7494df80f6775f0407855f51a114b469aa271755.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/scilab/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/scilab/scilab-5.5.2.ebuild X-VCS-Directories: sci-mathematics/scilab/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 7494df80f6775f0407855f51a114b469aa271755 X-VCS-Branch: master Date: Sun, 24 Jan 2021 21:05:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 89d519a0-066d-4051-8b45-1d7de791dbed X-Archives-Hash: 8752cc9c141914e4f30d011c4b747e51 commit: 7494df80f6775f0407855f51a114b469aa271755 Author: Fabio Rossi inwind it> AuthorDate: Sun Jan 24 17:11:03 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Jan 24 20:47:43 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7494df80 sci-mathematics/scilab: fix QA issues Signed-off-by: Fabio Rossi inwind.it> Signed-off-by: Andrew Ammerlaan riseup.net> sci-mathematics/scilab/scilab-5.5.2.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sci-mathematics/scilab/scilab-5.5.2.ebuild b/sci-mathematics/scilab/scilab-5.5.2.ebuild index 35359d37c..4cc9bf0da 100644 --- a/sci-mathematics/scilab/scilab-5.5.2.ebuild +++ b/sci-mathematics/scilab/scilab-5.5.2.ebuild @@ -172,6 +172,9 @@ src_prepare() { # make sure the DOCBOOK_ROOT variable is set sed -i -e "s/xsl-stylesheets-\*/xsl-stylesheets/g" bin/scilab* || die + # fix QA for metainfo data installation path + sed -i.bkp -e "s:/appdata:/metainfo:" desktop/Makefile.in || die + # remove self closing
(error our with javadoc8) # already upstream commit 2103082c find . -name '*.java' -exec sed -i "s|
|
|" {} \; ||die @@ -280,7 +283,7 @@ src_test() { src_install() { default - prune_libtool_files --all + find "${ED}" -name '*.la' -delete || die rm -rf "${D}"/usr/share/scilab/modules/*/tests ||die newbashcomp "${FILESDIR}"/"${PN}".bash_completion "${PN}" bashcomp_alias ${PN} ${PN}-cli ${PN}-adv-cli @@ -291,6 +294,7 @@ src_install() { pkg_postinst() { xdg_mimeinfo_database_update + xdg_desktop_database_update einfo "If you are using the NVIDIA binary drivers, and run into graphics" einfo "crashes, you may try to run scilab as follows:" einfo "EGL_DRIVER=egl_glx scilab" @@ -299,4 +303,5 @@ pkg_postinst() { pkg_postrm() { xdg_mimeinfo_database_update + xdg_desktop_database_update }