Package Details: intellij-idea-ce-eap 2025.2.252.26199.7-1

Git Clone URL: https://aur.archlinux.org/intellij-idea-ce-eap.git (read-only, click to copy)
Package Base: intellij-idea-ce-eap
Description: Early access version of the upcoming version of Intellij Idea IDE (community version)
Upstream URL: http://www.jetbrains.com/idea/nextversion
Keywords: IDE java JetBrains
Licenses: Apache2
Submitter: Kendos_Kenlen
Maintainer: artafinde
Last Packager: artafinde
Votes: 16
Popularity: 0.000219
First Submitted: 2014-09-07 10:50 (UTC)
Last Updated: 2025-09-04 08:15 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Latest Comments

1 2 3 4 Next › Last »

Magotchi commented on 2025-10-22 16:39 (UTC)

That's fine. The other one does require login to a JetBrains account and has a bunch of extra trial-only plugins, but it works. Thanks for all the time you've put into these packages over the years.

I've created another PKGBUILD, etc., for the Apache-licensed EAP 7.

artafinde commented on 2025-10-17 23:36 (UTC)

I'll delete this and keep the other one

Magotchi commented on 2025-10-15 18:33 (UTC) (edited on 2025-10-15 18:37 (UTC) by Magotchi)

I've created a working PKGBUILD (and other associated files) which builds the Apache-licensed EAP tag idea/2025.3-eap-5 at GitHub, based on the build source for the intellij-idea-community-edition 4:2025.2.3-1 official repo package.

build source

diff from official repo package intellij-idea-community-edition 4:2025.2.3-1 build source

It might not be exactly what you want, and it takes quite a while to build, mostly due to the 5+ gigs of downloads from the source at GitHub, but it works for me so far, and it does not conflict with the official repo package (and the two can run simultaneously even).

It also, just like the official repo package, works just fine with the jre-jetbrains AUR package when launched with the IDEA_JDK=/usr/lib/jvm/jre-jetbrains environment variable.

Magotchi commented on 2025-10-07 14:43 (UTC) (edited on 2025-10-15 18:58 (UTC) by Magotchi)

Separate Community Edition and Ultimate Edition versions seem to be going away as of 2025.3, per https://blog.jetbrains.com/idea/2025/07/intellij-idea-unified-distribution-plan/ :

With the 2025.3 release, IntelliJ IDEA Community Edition will no longer be distributed as a separate product. Instead, all users will download a single IntelliJ IDEA distribution: one installer and one update stream.

If you are currently using Community Edition, your IDE will automatically update to the unified distribution via the usual patch update process. You will get access to additional features at no cost and a more seamless experience. You will also be able to try Ultimate features with just one click.

The change is minimal for Ultimate users: the IDE will simply be called IntelliJ IDEA without the “Ultimate” suffix.

EDIT:

Their FAQ mentions more about open-source versions:

Can I still build an open-source version of IntelliJ IDEA?

The source code remains on GitHub, and we are fully committed to maintaining it. In addition, we will publish open-source builds to GitHub Releases and provide ready-to-use CI/CD pipelines powered by GitHub Actions, reinforcing our commitment to transparency and productive open-source collaboration.

cknoblauch commented on 2024-05-28 16:06 (UTC)

The latest EAP version (2024.2) shows this message:

The IDE seems to be launched with a script launcher (bin/idea.sh). Please consider > switching to a native launcher (bin/idea) for better experience.

You might consider changing the Exec in the desktop launcher file to follow this recommendation, @artafinde.

badlydrawnface commented on 2022-11-29 03:47 (UTC) (edited on 2022-11-29 03:52 (UTC) by badlydrawnface)

added aarch64 support after jetbrains released builds for aarch64 on linux

diff --git a/PKGBUILD b/PKGBUILD
index e7e9101..766ea18 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=intellij-idea-ce-eap
 _pkgname=idea-IC
-_buildver=223.7571.58
+_buildver=223.7571.123
 _veryear=2022
 _verrelease=2
 _verextra=3
@@ -15,10 +15,20 @@ url="http://www.jetbrains.com/idea/nextversion"
 license=('Apache2')
 depends=('java-environment' 'giflib' 'libxtst' 'libdbusmenu-glib')
 _archive="ideaIC-${_buildver}.tar.gz"
-source=("https://download.jetbrains.com/idea/${_archive}"
-        "intellij-idea-ce-eap.desktop")
-sha256sums=($(curl -s "https://download.jetbrains.com/idea/${_archive}.sha256" | cut -f1 -d" ")
-            '977f062d7db3a4c7bd50c24d2426e3226f7350c575f7cea6f5f50ea637bd1348')
+_archive_aarch64="ideaIC-${_buildver}-aarch64.tar.gz"
+# downloads aarch64 version if arch matches
+if [ "${CARCH}" == "aarch64" ]; then
+    source=("https://download.jetbrains.com/idea/${_archive_aarch64}"
+    "${pkgname}.desktop")
+    sha256sums=($(curl -s "https://download.jetbrains.com/idea/${_archive_aarch64}.sha256" | cut -f1 -d" ")
+    '977f062d7db3a4c7bd50c24d2426e3226f7350c575f7cea6f5f50ea637bd1348')
+else
+    source=("https://download.jetbrains.com/idea/${_archive}"
+    "${pkgname}.desktop")
+    sha256sums=($(curl -s "https://download.jetbrains.com/idea/${_archive}.sha256" | cut -f1 -d" ")
+    '977f062d7db3a4c7bd50c24d2426e3226f7350c575f7cea6f5f50ea637bd1348')
+fi
+
 package() {
     install -dm755 "${pkgdir}/opt/${pkgname}"
     cp -r --no-preserve='ownership' "${srcdir}/${_pkgname}-${_buildver}/"* "${pkgdir}/opt/${pkgname}"

artafinde commented on 2021-02-12 14:16 (UTC)

grdgkjrpdihe: Slightly harder to maintain and so far I had no indication of someone using it - I'll try bring it back, wait for -3

grdgkjrpdihe commented on 2021-02-12 13:49 (UTC)

why "no jbr" option has been removed

artafinde commented on 2021-02-06 10:34 (UTC)

Sorry for the delay I was waiting to see if they will fix the JBR-3066 but since no real progress from Jetbrains I packaged with previous JBR.

Please report any issues while building.

artafinde commented on 2019-12-24 13:42 (UTC)

Holidays period without access to the AUR key - I'll fix this when back to base circa 04/01/2020