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 19CB31582EF for ; Sat, 22 Feb 2025 09:38:54 +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 06CAE34321B for ; Sat, 22 Feb 2025 09:38:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B27AD110471; Sat, 22 Feb 2025 09:38:48 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id AAAE1110471 for ; Sat, 22 Feb 2025 09:38:48 +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 65A473431F5 for ; Sat, 22 Feb 2025 09:38:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02CCF272B for ; Sat, 22 Feb 2025 09:38:47 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1740217089.21223690a3951fad61f7c07b09a7dae764e0977a.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/goland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/goland/goland-2022.3.3-r1.ebuild X-VCS-Directories: dev-util/goland/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 21223690a3951fad61f7c07b09a7dae764e0977a X-VCS-Branch: master Date: Sat, 22 Feb 2025 09:38:47 +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: 833e43f7-18db-4827-840b-d7ab92a821b9 X-Archives-Hash: fca50ee0a9130971714a9520856ddb68 commit: 21223690a3951fad61f7c07b09a7dae764e0977a Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 14:11:10 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 22 09:38:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21223690 dev-util/goland: Port to ver_replacing Signed-off-by: Ulrich Müller gentoo.org> dev-util/goland/goland-2022.3.3-r1.ebuild | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/dev-util/goland/goland-2022.3.3-r1.ebuild b/dev-util/goland/goland-2022.3.3-r1.ebuild index 514b7bc36e7a..47a7c085f624 100644 --- a/dev-util/goland/goland-2022.3.3-r1.ebuild +++ b/dev-util/goland/goland-2022.3.3-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit desktop wrapper +inherit desktop eapi9-ver wrapper DESCRIPTION="Golang IDE by JetBrains" HOMEPAGE="https://www.jetbrains.com/go" @@ -71,20 +71,14 @@ pkg_postinst() { elog " https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit" fi - local replacing_version - for replacing_version in ${REPLACING_VERSIONS} ; do - if ver_test "${replacing_version}" -lt "2019.3-r1"; then - # This revbump requires user interaction. - echo - ewarn "Previous versions configured fs.inotify.max_user_watches without user interaction." - ewarn "Since version 2019.3-r1 you need to do so manually, e.g. by calling" - ewarn "echo \"fs.inotify.max_user_watches = 524288\" > /etc/sysctl.d/30-idea-inotify-watches.conf" - ewarn "and reloading with \"sysctl --system\" (and restarting the IDE)." - ewarn "For details see:" - ewarn " https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit" - - # Show this ewarn only once - break - fi - done + if ver_replacing -lt "2019.3-r1"; then + # This revbump requires user interaction. + echo + ewarn "Previous versions configured fs.inotify.max_user_watches without user interaction." + ewarn "Since version 2019.3-r1 you need to do so manually, e.g. by calling" + ewarn "echo \"fs.inotify.max_user_watches = 524288\" > /etc/sysctl.d/30-idea-inotify-watches.conf" + ewarn "and reloading with \"sysctl --system\" (and restarting the IDE)." + ewarn "For details see:" + ewarn " https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit" + fi }