From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1696545-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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 660F41581FB for <garchives@archives.gentoo.org>; Mon, 2 Dec 2024 17:41:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C240E081E; Mon, 2 Dec 2024 17:41:42 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 129ACE081E for <gentoo-commits@lists.gentoo.org>; Mon, 2 Dec 2024 17:41:42 +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 2518B341214 for <gentoo-commits@lists.gentoo.org>; Mon, 2 Dec 2024 17:41:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E6451F0B for <gentoo-commits@lists.gentoo.org>; Mon, 2 Dec 2024 17:41:38 +0000 (UTC) From: "Mike Pagano" <mpagano@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, "Mike Pagano" <mpagano@gentoo.org> Message-ID: <1733161181.870357c6363d13579639ec7d2c3ade8dd93eae1d.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/idea-community/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/idea-community/idea-community-2024.3-r1.ebuild X-VCS-Directories: dev-util/idea-community/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 870357c6363d13579639ec7d2c3ade8dd93eae1d X-VCS-Branch: master Date: Mon, 2 Dec 2024 17:41:38 +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: 01c826c0-83b9-40f0-bf3b-bdb00ddd0bda X-Archives-Hash: e8a7117658b67478d406d50e4785b8d7 commit: 870357c6363d13579639ec7d2c3ade8dd93eae1d Author: wqvi <137255931+wqvi <AT> users <DOT> noreply <DOT> github <DOT> com> AuthorDate: Sun Dec 1 14:31:02 2024 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Mon Dec 2 17:39:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870357c6 dev-util/idea-community: Shortened line length Signed-off-by: wqvi <137255931+wqvi <AT> users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/39373 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> dev-util/idea-community/idea-community-2024.3-r1.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-util/idea-community/idea-community-2024.3-r1.ebuild b/dev-util/idea-community/idea-community-2024.3-r1.ebuild index 58b39ee380b2..c03b88647d02 100644 --- a/dev-util/idea-community/idea-community-2024.3-r1.ebuild +++ b/dev-util/idea-community/idea-community-2024.3-r1.ebuild @@ -160,12 +160,15 @@ src_install() { local pngfile="$(find ${dst}/bin -maxdepth 1 -iname '*.png')" newicon $pngfile "${PN}.png" || die "we died" - if use wayland; then - make_desktop_entry "/opt/idea-community/bin/idea -Dawt.toolkit.name=WLToolkit" "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" - ewarn "You have enabled the wayland USE flag." - ewarn "This is a support preview. Expect instability." + if use experimental; then + make_desktop_entry "/opt/idea-community/bin/idea -Dawt.toolkit.name=WLToolkit" + "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" + + ewarn "You have enabled the experimental USE flag." + ewarn "This is a Wayland support preview. Expect instability." else - make_desktop_entry "/opt/idea-community/bin/idea" "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" + make_desktop_entry "/opt/idea-community/bin/idea" + "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" fi # recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit