public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Stefan Cristian B." <stefan.cristian+git@rogentos.ro>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/webstorm/
Date: Tue, 18 Mar 2025 18:29:38 +0000 (UTC)	[thread overview]
Message-ID: <1742322534.46065044f9bda959749dfc554003995f541b15ba.stefan.cristian+git@gentoo> (raw)

commit:     46065044f9bda959749dfc554003995f541b15ba
Author:     Stefan Cristian B. <stefan.cristian+git <AT> rogentos <DOT> ro>
AuthorDate: Tue Mar 18 18:28:54 2025 +0000
Commit:     Stefan Cristian B. <stefan.cristian+git <AT> rogentos <DOT> ro>
CommitDate: Tue Mar 18 18:28:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46065044

dev-util/webstorm: add 2024.3.5

Signed-off-by: Stefan Cristian B. <stefan.cristian+git <AT> rogentos.ro>

 dev-util/webstorm/Manifest                 |  1 +
 dev-util/webstorm/metadata.xml             | 12 ++++
 dev-util/webstorm/webstorm-2024.3.5.ebuild | 97 ++++++++++++++++++++++++++++++
 3 files changed, 110 insertions(+)

diff --git a/dev-util/webstorm/Manifest b/dev-util/webstorm/Manifest
new file mode 100644
index 000000000..69b68b5c5
--- /dev/null
+++ b/dev-util/webstorm/Manifest
@@ -0,0 +1 @@
+DIST WebStorm-2024.3.5.tar.gz 1088962559 BLAKE2B 7bd2e5b8e3d4396eeedfb7b3d64658072aec5ee3df8e764cf613c3c4487211ff3bf50ccc1a953cef87dbb2609eeede2ab44293fec21d8a408eeb739affed1e47 SHA512 bc50bd6dfd48431511d07d853d269234bad5604b24b7f5c6a6023a6a04568240d4f720109ccd827789399621810b49f72008274dbef4e0a13924e066fa463322

diff --git a/dev-util/webstorm/metadata.xml b/dev-util/webstorm/metadata.xml
new file mode 100644
index 000000000..94c878049
--- /dev/null
+++ b/dev-util/webstorm/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>stefan.cristian+git@rogentos.ro</email>
+		<name>Stefan Cristian B.</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+</pkgmetadata>
\ No newline at end of file

diff --git a/dev-util/webstorm/webstorm-2024.3.5.ebuild b/dev-util/webstorm/webstorm-2024.3.5.ebuild
new file mode 100644
index 000000000..fe5e1afe3
--- /dev/null
+++ b/dev-util/webstorm/webstorm-2024.3.5.ebuild
@@ -0,0 +1,97 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper
+
+DESCRIPTION="An integrated development environment for JavaScript and related technologies."
+HOMEPAGE="https://www.jetbrains.com/webstorm/"
+SRC_URI="https://download-cdn.jetbrains.com/${PN}/WebStorm-${PV}.tar.gz"
+
+LICENSE="|| ( JetBrains-business JetBrains-classroom JetBrains-educational JetBrains-individual )
+		Apache-2.0
+		BSD
+		CC0-1.0
+		CDDL
+		CDDL-1.1
+		EPL-1.0
+		GPL-2
+		GPL-2-with-classpath-exception
+		ISC
+		LGPL-2.1
+		LGPL-3
+		MIT
+		MPL-1.1
+		OFL-1.1
+		ZLIB
+"
+SLOT="0/2024"
+KEYWORDS="~amd64"
+IUSE="wayland"
+
+RESTRICT="bindist mirror"
+QA_PREBUILT="opt/${P}/*"
+
+BDEPEND="dev-util/debugedit
+	dev-util/patchelf
+"
+RDEPEND="
+		dev-libs/wayland
+		sys-libs/pam
+		sys-process/audit
+"
+
+src_unpack() {
+		# WebStorm unarchived directory is in format WebStorm-xxx.yyy.zzz, not ${P}
+		cp "${DISTDIR}"/WebStorm-${PV}.tar.gz "${WORKDIR}"/ || die
+		mkdir -p "${P}"
+		tar --strip-components=1 -xzf "WebStorm-${PV}".tar.gz -C "${P}" || die
+}
+
+src_prepare() {
+		default
+
+		local remove_me=(
+			lib/async-profiler/aarch64
+			plugins/platform-ijent-impl/ijent-aarch64-unknown-linux-musl-release
+		)
+
+		rm -rv "${remove_me[@]}" || die
+
+		# removing debug symbols and relocating debug files as per #876295
+		# we're escaping all the files that contain $() in their name
+		# as they should not be executed
+		find . -type f ! -name '*$(*)*' -exec sh -c '
+			if file "{}" | grep -qE "ELF (32|64)-bit"; then
+				objcopy --remove-section .note.gnu.build-id "{}"
+				debugedit -b "${EPREFIX}/opt/${PN}" -d "/usr/lib/debug" -i "{}"
+			fi
+		' \;
+
+		patchelf --set-rpath '$ORIGIN' "jbr/lib/libjcef.so" || die
+		patchelf --set-rpath '$ORIGIN' "jbr/lib/jcef_helper" || die
+
+		# As per https://blog.jetbrains.com/platform/2024/07/wayland-support-preview-in-2024-2/ for full wayland support
+		if use wayland; then
+				echo "-Dawt.toolkit.name=WLToolkit" >> bin/webstorm64.vmoptions || die
+		fi
+}
+
+src_install() {
+		local dir="/opt/${P}"
+
+		insinto "${dir}"
+		doins -r *
+		fperms 755 "${dir}"/bin/{"${PN}",fsnotifier,format.sh,inspect.sh,jetbrains_client.sh,ltedit.sh,remote-dev-server,remote-dev-server.sh,restarter}
+		fperms 755 "${dir}"/jbr/bin/{java,javac,javadoc,jcmd,jdb,jfr,jhsdb,jinfo,jmap,jps,jrunscript,jstack,jstat,jwebserver,keytool,rmiregistry,serialver}
+		fperms 755 "${dir}"/jbr/lib/{chrome-sandbox,jcef_helper,jexec,jspawnhelper}
+
+		make_wrapper "${PN}" "${dir}"/bin/"${PN}"
+		newicon bin/"${PN}".svg "${PN}".svg
+		make_desktop_entry "${PN}" "WebStorm ${PV}" "${PN}" "Development;IDE;"
+
+		# recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
+		insinto /usr/lib/sysctl.d
+		newins - 30-"${PN}"-inotify-watches.conf <<<"fs.inotify.max_user_watches = 524288"
+}


             reply	other threads:[~2025-03-18 18:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-18 18:29 Stefan Cristian B. [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-21 13:16 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/webstorm/ Takuya Wakazono
2025-03-21 14:00 Stefan Cristian B.
2025-03-26 14:28 Stefan Cristian B.
2025-04-27  0:40 Stefan Cristian B.
2025-04-28  9:08 Stefan Cristian B.
2025-05-28 13:39 Stefan Cristian B.
2025-06-28 14:55 Stefan Cristian B.
2025-06-28 14:55 Stefan Cristian B.
2025-07-16 23:26 Stefan Cristian B.
2025-07-16 23:26 Stefan Cristian B.
2025-08-10 23:38 Stefan Cristian B.
2025-08-10 23:41 Stefan Cristian B.
2025-09-16 14:39 Stefan Cristian B.
2025-09-16 14:39 Stefan Cristian B.
2025-09-21 11:59 Stefan Cristian B.

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1742322534.46065044f9bda959749dfc554003995f541b15ba.stefan.cristian+git@gentoo \
    --to=stefan.cristian+git@rogentos.ro \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox