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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B4EC158232 for ; Thu, 5 Dec 2024 07:51:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53A1AE082F; Thu, 5 Dec 2024 07:51:04 +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 840FFE0837 for ; Thu, 5 Dec 2024 07:51:03 +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 92B97340906 for ; Thu, 5 Dec 2024 07:51:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCE3B11DE for ; Thu, 5 Dec 2024 07:51:00 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1733385045.bf458f68ec79c23726a71c50f03878d7a440daff.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pycharm-community/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pycharm-community/pycharm-community-2024.3-r1.ebuild dev-util/pycharm-community/pycharm-community-2024.3.ebuild X-VCS-Directories: dev-util/pycharm-community/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: bf458f68ec79c23726a71c50f03878d7a440daff X-VCS-Branch: master Date: Thu, 5 Dec 2024 07:51:00 +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: 8129013d-81b6-47b0-b587-dc894ccef8be X-Archives-Hash: 9842b89b322531327a42f64d5be34a4b commit: bf458f68ec79c23726a71c50f03878d7a440daff Author: Branko Grubic gmail com> AuthorDate: Wed Dec 4 20:53:23 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Dec 5 07:50:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf458f68 dev-util/pycharm-community: Fixes sysctl.d config value The extra quote leftover from the ebuild rewrite/update creates invalid value for sysctl key which fails to apply. Signed-off-by: Branko Grubic gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39596 Signed-off-by: Joonas Niilola gentoo.org> ...charm-community-2024.3.ebuild => pycharm-community-2024.3-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/pycharm-community/pycharm-community-2024.3.ebuild b/dev-util/pycharm-community/pycharm-community-2024.3-r1.ebuild similarity index 99% rename from dev-util/pycharm-community/pycharm-community-2024.3.ebuild rename to dev-util/pycharm-community/pycharm-community-2024.3-r1.ebuild index 062fd587be4d..6828975b8bd9 100644 --- a/dev-util/pycharm-community/pycharm-community-2024.3.ebuild +++ b/dev-util/pycharm-community/pycharm-community-2024.3-r1.ebuild @@ -185,7 +185,7 @@ src_install() { # recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit dodir /usr/lib/sysctl.d cat > "${ED}/usr/lib/sysctl.d/30-${PN}-inotify-watches.conf" <<-EOF || die - fs.inotify.max_user_watches = 524288" + fs.inotify.max_user_watches = 524288 EOF }