From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5AA471580E0 for ; Sun, 26 Jan 2025 12:45:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1DDD634314A for ; Sun, 26 Jan 2025 12:45:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5FE0A110470; Sun, 26 Jan 2025 12:45:12 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 54B71110470 for ; Sun, 26 Jan 2025 12:45:12 +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 070EB343148 for ; Sun, 26 Jan 2025 12:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D90017F2 for ; Sun, 26 Jan 2025 12:45:10 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1737895476.14aa4771083048cb2ba3fa7ee6b434dec68fce56.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/codeblocks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/codeblocks/codeblocks-9999.ebuild X-VCS-Directories: dev-util/codeblocks/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 14aa4771083048cb2ba3fa7ee6b434dec68fce56 X-VCS-Branch: master Date: Sun, 26 Jan 2025 12:45:10 +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: a1ab3ae7-0271-46ad-ba4a-ced03342dacf X-Archives-Hash: d59dbd81824af2275d85ce19512b0d2f commit: 14aa4771083048cb2ba3fa7ee6b434dec68fce56 Author: Sergey Torokhov yandex ru> AuthorDate: Sat Jan 25 20:12:17 2025 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Sun Jan 26 12:44:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14aa4771 dev-util/codeblocks: update 9999.ebuild Update RDEPEND '>=dev-util/astyle-3.1-r2:0/3.1' with '>=dev-util/astyle-3.1-r2:0='. Remove needless 'app-admin/gamin', 'dev-libs/libgamin' dependencies. Force '-std=c++17' to build against 'dev-util/astyle-3.6.1` that requires C++17 compatibility. See upstream issue: https://sourceforge.net/p/codeblocks/tickets/1512 Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/40212 Signed-off-by: Petr Vaněk gentoo.org> dev-util/codeblocks/codeblocks-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/codeblocks/codeblocks-9999.ebuild b/dev-util/codeblocks/codeblocks-9999.ebuild index 330b857627b4..2127adf3b262 100644 --- a/dev-util/codeblocks/codeblocks-9999.ebuild +++ b/dev-util/codeblocks/codeblocks-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,15 +22,13 @@ BDEPEND="virtual/pkgconfig" RDEPEND="app-arch/zip dev-libs/glib:2 >=dev-libs/tinyxml-2.6.2-r3 - >=dev-util/astyle-3.1-r2:0/3.1 + >=dev-util/astyle-3.1-r2:0= x11-libs/gtk+:3 x11-libs/wxGTK:${WX_GTK_VER}[X] contrib? ( - app-admin/gamin app-arch/bzip2 app-text/hunspell:= dev-libs/boost:= - dev-libs/libgamin media-libs/fontconfig sys-libs/zlib )" @@ -55,6 +53,8 @@ src_prepare() { src_configure() { # Bug 858338 append-flags -fno-strict-aliasing + # Upstream issue: https://sourceforge.net/p/codeblocks/tickets/1512 + append-cxxflags -std=c++17 setup-wxwidgets