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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9050F159C9B for ; Sun, 4 Aug 2024 19:51:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D93C12BC049; Sun, 4 Aug 2024 19:51:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A06C52BC049 for ; Sun, 4 Aug 2024 19:51:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1659335DC5 for ; Sun, 4 Aug 2024 19:51:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3160D1DB3 for ; Sun, 4 Aug 2024 19:51:36 +0000 (UTC) From: "Ivan Lloro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ivan Lloro" Message-ID: <1722801094.dddee384e3b565220f190073acce350c770b4196.ivan.lloro.boada@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/openmodelica/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-physics/openmodelica/openmodelica-1.23.1.ebuild X-VCS-Directories: sci-physics/openmodelica/ X-VCS-Committer: ivan.lloro.boada X-VCS-Committer-Name: Ivan Lloro X-VCS-Revision: dddee384e3b565220f190073acce350c770b4196 X-VCS-Branch: dev Date: Sun, 4 Aug 2024 19:51:36 +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: 58c88a26-9a98-423a-a478-528345f121b1 X-Archives-Hash: 99260d934d9d4ef3dcbaf4c20a82142b commit: dddee384e3b565220f190073acce350c770b4196 Author: Ivan Lloro gmail com> AuthorDate: Sun Aug 4 19:50:48 2024 +0000 Commit: Ivan Lloro gmail com> CommitDate: Sun Aug 4 19:51:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dddee384 sci-physics/openmodelica: Update third party Minizip library to solve compilation error with GCC 14 Closes: https://bugs.gentoo.org/937038 Signed-off-by: Ivan Lloro gmail.com> sci-physics/openmodelica/openmodelica-1.23.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-physics/openmodelica/openmodelica-1.23.1.ebuild b/sci-physics/openmodelica/openmodelica-1.23.1.ebuild index 2b40845d6..619aeb6ea 100644 --- a/sci-physics/openmodelica/openmodelica-1.23.1.ebuild +++ b/sci-physics/openmodelica/openmodelica-1.23.1.ebuild @@ -105,6 +105,10 @@ src_unpack() { mv "${WORKDIR}/OMSimulator-3rdParty-ca418d7768c036ac15e9894d7f00d2118b3399a6" "${WORKDIR}/${P}/OMSimulator/3rdParty" || die mv "OMBootstrapping-c289e97c41d00939a4a69fe504961b47283a6d8e" "${WORKDIR}/${P}/OMCompiler/Compiler/boot/bomc" || die touch "${WORKDIR}/${P}/OMCompiler/Compiler/boot/bomc/sources.tar.gz" || die + + # Solve https://bugs.gentoo.org/937038 + rm -fr "${WORKDIR}/${P}/OMCompiler/3rdParty/FMIL/ThirdParty/Minizip/minizip" || die + cp -a "${WORKDIR}/${P}/OMSimulator/3rdParty/fmi4c/3rdparty/minizip" "${WORKDIR}/${P}/OMCompiler/3rdParty/FMIL/ThirdParty/Minizip/minizip" || die } src_configure() {