Package Details: intellij-idea-ce-eap 2024.1.241.15989.21-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: 15
Popularity: 0.000000
First Submitted: 2014-09-07 10:50 (UTC)
Last Updated: 2024-04-15 17:47 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Latest Comments

1 2 3 4 Next › Last »

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

artafinde commented on 2019-04-04 15:25 (UTC)

@Magotchi: maybe it's related to High DPI. I'd suggest jetbrains troubleshooting page and then report it on their bug system if it's not solved.

Magotchi commented on 2019-04-04 14:17 (UTC) (edited on 2019-04-04 14:18 (UTC) by Magotchi)

Thanks for the the options. I tried out JBR 11 and also just the normal OpenJDK 11, and the fonts are looking a little odd in Java 11 in general compared to JBR 8. All menu fonts seem slightly small and a little bit too blurred. For the longest time, I used to use the Infinality builds of JVM 8 to make IDEA look nice, but they seemed to patch the font issues quite nicely in JBR 8 a couple years ago; it just looks like JBR 11 hasn't quite caught up. If anybody has any tweaks or something to make 11 look nice, please share.

artafinde commented on 2019-04-04 08:02 (UTC) (edited on 2019-07-04 15:30 (UTC) by artafinde)

You can now choose to use JBR8 or no-JBR prior to build by editing the _JBR variable in PKDBUILD. Use jbr8, no-jbr or leave empty to default to JBR11. See more info on the blog-post by Jetbrains. PS: Technically the java-environment can be optional dependency since the default is to come with JBR but I'll leave it like this since one would probably want to do development in Java.

artafinde commented on 2018-10-19 08:30 (UTC)

@Magotchi: fixed, I didn't have this issue as I have CLion installed which indeed has that dependency - thanks.

Magotchi commented on 2018-10-18 14:18 (UTC) (edited on 2018-10-18 14:19 (UTC) by Magotchi)

As of 2018.3.183.3795.13-1, I started to get the following "IDE Error": "java.lang.UnsatisfiedLinkError: /opt/intellij-idea-ce-eap/bin/libdbm64.so: libdbusmenu-glib.so.4: cannot open shared object file: No such file or directory" upon loading a project.

I just installed libdbusmenu-glib to fix it, so I'm imagining it's now a dependency.