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 587D0158009 for ; Thu, 22 Jun 2023 17:07:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97910E07D3; Thu, 22 Jun 2023 17:07:58 +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 77392E07D3 for ; Thu, 22 Jun 2023 17:07:58 +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 687283409E6 for ; Thu, 22 Jun 2023 17:07:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BA23A95 for ; Thu, 22 Jun 2023 17:07:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1687453655.ed8c0f1f3b9abc60c4e4e808a580500c8237b0dc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop/, dev-util/kdevelop/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdevelop/files/kdevelop-23.04.2-astyle-3.4.patch dev-util/kdevelop/kdevelop-23.04.2.ebuild X-VCS-Directories: dev-util/kdevelop/files/ dev-util/kdevelop/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ed8c0f1f3b9abc60c4e4e808a580500c8237b0dc X-VCS-Branch: master Date: Thu, 22 Jun 2023 17:07:55 +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: a8818a19-c196-4bd1-bc06-6b78f5a2c52e X-Archives-Hash: 29cb4af8a833b72c69f955a8b7e24709 commit: ed8c0f1f3b9abc60c4e4e808a580500c8237b0dc Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jun 22 17:03:57 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 22 17:07:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed8c0f1f dev-util/kdevelop: Fix build with dev-util/astyle-3.4 Closes: https://bugs.gentoo.org/908977 Signed-off-by: Andreas Sturmlechner gentoo.org> .../files/kdevelop-23.04.2-astyle-3.4.patch | 62 ++++++++++++++++++++++ dev-util/kdevelop/kdevelop-23.04.2.ebuild | 2 + 2 files changed, 64 insertions(+) diff --git a/dev-util/kdevelop/files/kdevelop-23.04.2-astyle-3.4.patch b/dev-util/kdevelop/files/kdevelop-23.04.2-astyle-3.4.patch new file mode 100644 index 000000000000..e5a73298aa19 --- /dev/null +++ b/dev-util/kdevelop/files/kdevelop-23.04.2-astyle-3.4.patch @@ -0,0 +1,62 @@ +From 8ca40a6454f053a262926794b96024bd02e0cdc5 Mon Sep 17 00:00:00 2001 +From: Milian Wolff +Date: Wed, 31 May 2023 09:31:02 +0200 +Subject: [PATCH] Fix compile with newer astyle + +astyle::streamoff was always just an alias for std::streamoff, +see also the upstream commit [1] that removed the +`using namespace std` in the `astyle` namespace which breaks this +code of our here now. + +[1]: https://gitlab.com/saalen/astyle/-/commit/0add646b21ee329b231ef7c5ab6963a94fb8935b +--- + plugins/astyle/astyle_stringiterator.cpp | 4 ++-- + plugins/astyle/astyle_stringiterator.h | 5 +++-- + 2 files changed, 5 insertions(+), 4 deletions(-) + +diff --git a/plugins/astyle/astyle_stringiterator.cpp b/plugins/astyle/astyle_stringiterator.cpp +index 02f8fb4264..a611869581 100644 +--- a/plugins/astyle/astyle_stringiterator.cpp ++++ b/plugins/astyle/astyle_stringiterator.cpp +@@ -22,7 +22,7 @@ AStyleStringIterator::~AStyleStringIterator() + { + } + +-astyle::streamoff AStyleStringIterator::tellg() ++std::streamoff AStyleStringIterator::tellg() + { + return m_is.pos(); + } +@@ -59,7 +59,7 @@ void AStyleStringIterator::peekReset() + m_peekStart = -1; // invalid + } + +-astyle::streamoff AStyleStringIterator::getPeekStart() const ++std::streamoff AStyleStringIterator::getPeekStart() const + { + // NOTE: we're not entirely sure if this is the correct implementation. + // we're trying to work-around https://bugs.kde.org/show_bug.cgi?id=399048 +diff --git a/plugins/astyle/astyle_stringiterator.h b/plugins/astyle/astyle_stringiterator.h +index f63a59c611..713800c0f3 100644 +--- a/plugins/astyle/astyle_stringiterator.h ++++ b/plugins/astyle/astyle_stringiterator.h +@@ -21,13 +21,14 @@ public: + explicit AStyleStringIterator(const QString &string); + ~AStyleStringIterator() override; + +- astyle::streamoff tellg() override; ++ std::streamoff tellg() override; + int getStreamLength() const override; + bool hasMoreLines() const override; + std::string nextLine(bool emptyLineWasDeleted = false) override; + std::string peekNextLine() override; + void peekReset() override; +- astyle::streamoff getPeekStart() const override; ++ std::streamoff getPeekStart() const override; ++ + private: + QString m_content; + QTextStream m_is; +-- +GitLab + diff --git a/dev-util/kdevelop/kdevelop-23.04.2.ebuild b/dev-util/kdevelop/kdevelop-23.04.2.ebuild index 2d0c7632d4a1..949487270abd 100644 --- a/dev-util/kdevelop/kdevelop-23.04.2.ebuild +++ b/dev-util/kdevelop/kdevelop-23.04.2.ebuild @@ -95,6 +95,8 @@ RDEPEND="${COMMON_DEPEND} reviewboard? ( kde-apps/ktp-accounts-kcm:5 ) " +PATCHES=( "${FILESDIR}/${P}-astyle-3.4.patch" ) # bug 908977 + llvm_check_deps() { has_version -d "sys-devel/clang:${LLVM_SLOT}" }