From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1676119-garchives=archives.gentoo.org@lists.gentoo.org> 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 550D715808B for <garchives@archives.gentoo.org>; Fri, 4 Oct 2024 20:32:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90D15E29CB; Fri, 4 Oct 2024 20:32:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 6632AE29CB for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2024 20:32:46 +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 7817F343070 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2024 20:32:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD156F32 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2024 20:32:43 +0000 (UTC) From: "Florian Schmaus" <flow@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" <flow@gentoo.org> Message-ID: <1728073936.e7ee697a31ec4b8d90421e3aafd6bc9649675633.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/texstudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/texstudio/texstudio-4.8.4-r1.ebuild app-office/texstudio/texstudio-4.8.4.ebuild X-VCS-Directories: app-office/texstudio/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: e7ee697a31ec4b8d90421e3aafd6bc9649675633 X-VCS-Branch: master Date: Fri, 4 Oct 2024 20:32:43 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f4ebd8ec-12f2-426b-8f85-06c21186f121 X-Archives-Hash: 685dacc779cf11700f2cc04f4f1209e6 commit: e7ee697a31ec4b8d90421e3aafd6bc9649675633 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Fri Oct 4 20:31:17 2024 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Fri Oct 4 20:32:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7ee697a app-office/texstudio: disable qt5 automagic Closes: https://bugs.gentoo.org/940747 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> .../texstudio/{texstudio-4.8.4.ebuild => texstudio-4.8.4-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-office/texstudio/texstudio-4.8.4.ebuild b/app-office/texstudio/texstudio-4.8.4-r1.ebuild similarity index 94% rename from app-office/texstudio/texstudio-4.8.4.ebuild rename to app-office/texstudio/texstudio-4.8.4-r1.ebuild index 859bcaad2a9b..43bd8a076684 100644 --- a/app-office/texstudio/texstudio-4.8.4.ebuild +++ b/app-office/texstudio/texstudio-4.8.4-r1.ebuild @@ -46,6 +46,9 @@ src_prepare() { rm -r "${dir}" || die "Failed to delete ${dir}" done + # https://bugs.gentoo.org/940747 + sed -i 's/Qt5 //' CMakeLists.txt || die + cmake_src_prepare }