@navarroaxel It's fixed in the latest eap.
Search Criteria
Package Details: goland-eap 231.8109.46-1
Git Clone URL: | https://aur.archlinux.org/goland-eap.git (read-only, click to copy) |
---|---|
Package Base: | goland-eap |
Description: | Capable and Ergonomic Go IDE |
Upstream URL: | https://www.jetbrains.com/go/ |
Licenses: | custom:jetbrains |
Conflicts: | gogland-eap |
Replaces: | gogland-eap |
Submitter: | freswa |
Maintainer: | freswa |
Last Packager: | freswa |
Votes: | 16 |
Popularity: | 0.000001 |
First Submitted: | 2017-11-02 17:52 (UTC) |
Last Updated: | 2023-03-12 22:18 (UTC) |
Dependencies (3)
- glib2 (glib2-nodocs-git, glib2-selinux, glib2-git, glib2-patched-thumbnailer)
- goland-eap-jre (optional) – JetBrains custom Java Runtime (Recommended)
- java-runtime (java-gcj-compat, jre10, jdk12-openj9-bin, zulu-12-bin, jre6, jre12, server-jre, jdk13-openj9-bin, jdk9-openj9-bin, jdk10, jdk11-openjdk-dcevm, jdk10-openj9-bin, jdk14-openj9-bin, jdk7, jre7, zulu-14-bin, amazon-corretto-15, jdk11-openjdk-dcevm-conflicts-fixed, zulu-embedded-jdk8, sapmachine-jdk-bin, amazon-corretto-16, jdk8-graalvm-bin, jdk16-graalvm-bin, jre8-openjdk-shenandoah, zulu-16-bin, jdk16-adoptopenjdk, jdk11-microsoft-openjdk, jdk16-microsoft-openjdk, jdk11-msopenjdk-bin, jdk18-beta-temurin, jdk8-arm, jre17-jetbrains, liberica-jdk-11-bin, liberica-jdk-11-lite-bin, liberica-jre-11-bin, jre11-jetbrains-imfix, java-openjdk-loom-ea-bin, jdk17-dragonwell-bin, hmcl-zulu-bin, jdk7-j9-bin, jdk7r1-j9-bin, jdk8-j9-bin, jdk11-j9-bin, jdk-jetbrains, jre11-jbr-xdg, jre12-openjdk, jre15-openjdk, jre16-openjdk, jre13-openjdk, jre14-openjdk, jre-bcl, jdk-bcl, amazon-corretto-18, zulu-18-bin, zulu-13-bin, jre15, jre14, jre13, jre16, jre17, bishengjdk-17, bishengjre-17, jdk-arm, jdk11-openj9-bin, jdk-openj9-bin, jre-openj9, zulu-15-bin, jre-jbr-xdg, zulu-embedded-jdk11, jdk-microsoft-openjdk, jre18-openjdk, jdk17-openj9-bin, jdk8-dragonwell-extended, jdk18-openj9-bin, jdk8-openj9-bin, jre8, jdk8, jre11, jdk-android-studio, amazon-corretto-8, amazon-corretto-11, amazon-corretto-19-bin, amazon-corretto-17, zulu-8-bin, zulu-11-bin, zulu-17-bin, zulu-19-bin, liberica-jre-8-full-bin, jdk11-graalvm-bin, jdk17-graalvm-bin, jdk19-graalvm-bin, liberica-jdk-full-bin, jre8-adoptopenjdk, jre-lts, liberica-jdk-11-full-bin, liberica-jdk-17-full-bin, liberica-jre-11-full-bin, jdk8-dragonwell-extended-bin, jdk8-dragonwell-standard-bin, jdk11-dragonwell-extended-bin, jdk11-dragonwell-standard-bin, jdk11-graalvm-ee-bin, jdk8-graalvm-ee-bin, jdk19-graalvm-ee-bin, jdk13-openjdk-bin, zulu-jre-fx-bin, zulu-jdk-fx-bin, liberica-jdk-8-full-bin, jdk17-graalvm-ee-bin, zulu-embedded-jdk, jre-jetbrains, jdk17-temurin, jdk11-temurin, jdk17-dragonwell-standard-bin, jre-openjdk-xdg, jre-openjdk-xdg-bin, mandrel-bin, java-openjdk-bin, jdk17-jetbrains-bin, jdk11-jetbrains-bin, zulu-20-bin, jre, amazon-corretto-20-bin, jdk-temurin, jre8-openjdk-xdg, jre17-openjdk-xdg, jre17-jetbrains-imfix, java-openjdk-ea-bin, jre-openjdk, jre11-openjdk, jre17-openjdk, jre8-openjdk) (optional) – JRE - Required if goland-jre is not installed
Required by (0)
Sources (3)
freswa commented on 2021-02-26 22:28 (UTC)
navarroaxel commented on 2021-02-19 11:42 (UTC)
Did you see my comment about how to fix the goland-eap
command? Because this new release has the same bug https://aur.archlinux.org/packages/goland-eap#comment-791465
navarroaxel commented on 2021-02-13 19:30 (UTC)
The command is not working:
$ goland-eap
Error: Could not find or load main class com.intellij.idea.Main
The error comes from this line in PKGBUILD:
ln -s "/opt/${pkgbase}/bin/${pkgbase%-eap}.sh" "${pkgdir}/usr/bin/${pkgbase}"
You should create a wrapper script instead of symlink to /opt/goland-eap/bin/goland.sh to fix this issue.
The goland-eap command should be a file with this content:
#!/bin/bash
exec /opt/goland-eap/bin/goland.sh "$@"
f1x commented on 2021-01-18 08:29 (UTC)
This diff (at least for the current version) fixes the broken paths:
$ git diff PKGBUILD
diff --git a/PKGBUILD b/PKGBUILD
index f4bb64c..a880892 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgbase=goland-eap
pkgname=(goland-eap goland-eap-jre)
-pkgver=203.6682.75
+pkgver=2020.3.1
pkgrel=1
pkgdesc='Capable and Ergonomic Go IDE'
arch=('x86_64' 'i686')
@@ -13,7 +13,7 @@ options=('!strip')
source=("https://download.jetbrains.com/go/${pkgbase%-eap}-${pkgver}.tar.gz"
jetbrains-goland-eap.desktop
LICENSE)
-b2sums=('db9adb7d5cd327bff0ce20336b672276b3c592ae8cce5807ae17337fbcb2f9a4f7f8c07b46c53ab4ef0e7f8b2df93c1327f2d754645e80a8a38f666ebd6894a7'
+b2sums=('71e9cd673a4503e4a2e7f295be8302be081a323a7694e237e4155763f2d2ae6dd9e77fb2603860482c72abfee54456607a67952f64ffcd02197e7bc9659cd44d'
'b985586e25598fbe87d697403e87ed45f8ce7b944e6d3ba02509f4c6f2544e3b7a55f19861d399dadcae699db894d3f2be73039401ac004370115f3cefc1fe9c'
'dadaf0e67b598aa7a7a4bf8644943a7ee8ebf4412abb17cd307f5989e36caf9d0db529a0e717a9df5d9537b10c4b13e814b955ada6f0d445913c812b63804e77')
Maybe the versioning changed on jetbrains side.
seyfert commented on 2021-01-14 03:30 (UTC)
Couldn't stat GoLand-203.6682.75 when update to goland-eap 203.6682.75-1
cp: cannot stat '/home/$/.cache/yay/goland-eap/src/GoLand-203.6682.75/': No such file or directory
==> ERROR: A failure occurred in package_goland-eap().
Aborting...
error making: goland-eap
but find goland files in src, directory name seems not excepted as we want
⋊> ~/.c/y/g/src on master ◦ ls 11:26:17
GoLand-2020.3.1/ goland-203.6682.75.tar.gz@ jetbrains-goland-eap.desktop@ LICENSE@
petris commented on 2020-11-29 19:54 (UTC)
Update to 203.5981.98-1 does not build properly.
==> Extracting sources... -> Extracting goland-203.5981.98.tar.gz with bsdtar ==> Entering fakeroot environment... ==> Starting package_goland-eap()... cp: cannot stat '/builds/arch-linux/packages-proprietary/goland-eap/src/GoLand-203.5981.98/': No such file or directory ==> ERROR: A failure occurred in package_goland-eap(). Aborting... ERROR: Job failed: exit code 1
navarroaxel commented on 2020-07-31 07:59 (UTC)
Hi @freswa, you shouldn't rollback to a previous version (see https://wiki.archlinux.org/index.php/PKGBUILD#epoch).
Also, if you check the https://snapcraft.io/goland page, JetBrains publish the latest build, stable or EAP, to the "latest/edge" channel (command: snap install goland --edge --classic). So, you should always publish the latest build in this package. Atm, I'm talking about build 202.6397.65 version 2020.2 stable.
anatolik commented on 2020-07-23 21:38 (UTC)
==> Starting package_goland-eap()... cp: cannot stat '/build/goland-eap/src/GoLand-202.6397.65/': No such file or directory
anatolik commented on 2020-06-06 03:49 (UTC)
It fails to build:
==> Starting package_goland-eap()... cp: cannot stat '/build/goland-eap/src/GoLand-2020.1/': No such file or directory ==> ERROR: A failure occurred in package_goland-eap(). Aborting... ==> ERROR: Build failed, check /var/lib/archbuild/local-x86_64/anatol/build
Pinned Comments