From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1547227-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 6FA2D15800A for <garchives@archives.gentoo.org>; Sat, 19 Aug 2023 07:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEAB82BC03B; Sat, 19 Aug 2023 07:05:10 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AD9F2BC03B for <gentoo-commits@lists.gentoo.org>; Sat, 19 Aug 2023 07:05:10 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97FDB340E0A for <gentoo-commits@lists.gentoo.org>; Sat, 19 Aug 2023 07:05:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4445DFD0 for <gentoo-commits@lists.gentoo.org>; Sat, 19 Aug 2023 07:05:08 +0000 (UTC) From: "Arthur Zamarin" <arthurzam@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, "Arthur Zamarin" <arthurzam@gentoo.org> Message-ID: <1692428702.aba9bc8387665d8edaa28639d869a410b5eca437.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgcheck/pkgcheck-0.10.25-r1.ebuild dev-util/pkgcheck/pkgcheck-0.10.25.ebuild dev-util/pkgcheck/pkgcheck-9999.ebuild X-VCS-Directories: dev-util/pkgcheck/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: aba9bc8387665d8edaa28639d869a410b5eca437 X-VCS-Branch: master Date: Sat, 19 Aug 2023 07:05:08 +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: 8f24a64a-52b1-480d-8e8d-f3b0653bc3bf X-Archives-Hash: 67e18d773905b7bfaae69ae3af82c7c6 commit: aba9bc8387665d8edaa28639d869a410b5eca437 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Aug 19 07:03:32 2023 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Aug 19 07:05:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba9bc83 dev-util/pkgcheck: limit dev-libs/tree-sitter-bash version The new 0.20.0 dev-libs/tree-sitter-bash version (young release, still not in gentoo) causes huge memory leak in pkgcheck. Investigation in progress, until then limit for now to not cause breakage. Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> .../pkgcheck/{pkgcheck-0.10.25.ebuild => pkgcheck-0.10.25-r1.ebuild} | 2 +- dev-util/pkgcheck/pkgcheck-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/pkgcheck/pkgcheck-0.10.25.ebuild b/dev-util/pkgcheck/pkgcheck-0.10.25-r1.ebuild similarity index 98% rename from dev-util/pkgcheck/pkgcheck-0.10.25.ebuild rename to dev-util/pkgcheck/pkgcheck-0.10.25-r1.ebuild index 8ffc6915b783..1fab10b785fe 100644 --- a/dev-util/pkgcheck/pkgcheck-0.10.25.ebuild +++ b/dev-util/pkgcheck/pkgcheck-0.10.25-r1.ebuild @@ -34,7 +34,7 @@ else fi RDEPEND+=" dev-libs/tree-sitter - dev-libs/tree-sitter-bash + <dev-libs/tree-sitter-bash-0.20.0 dev-python/chardet[${PYTHON_USEDEP}] dev-python/lazy-object-proxy[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] diff --git a/dev-util/pkgcheck/pkgcheck-9999.ebuild b/dev-util/pkgcheck/pkgcheck-9999.ebuild index 1727c0d298cd..c53659016c06 100644 --- a/dev-util/pkgcheck/pkgcheck-9999.ebuild +++ b/dev-util/pkgcheck/pkgcheck-9999.ebuild @@ -34,7 +34,7 @@ else fi RDEPEND+=" dev-libs/tree-sitter - dev-libs/tree-sitter-bash + <dev-libs/tree-sitter-bash-0.20.0 dev-python/chardet[${PYTHON_USEDEP}] dev-python/lazy-object-proxy[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}]