Package Details: pycharm-community-jre 2025.3-1

Git Clone URL: https://aur.archlinux.org/pycharm-community-jre.git (read-only, click to copy)
Package Base: pycharm-community-jre
Description: PyCharm Community Edition IDE for Python with bundled JRE
Upstream URL: https://www.jetbrains.com/pycharm/
Keywords: development editor ide jetbrains python
Licenses: Apache-2.0
Conflicts: pycharm-community-eap, pycharm-community-edition
Submitter: PMay
Maintainer: bulletmark
Last Packager: bulletmark
Votes: 20
Popularity: 0.000064
First Submitted: 2020-03-14 20:05 (UTC)
Last Updated: 2025-12-08 22:18 (UTC)

Latest Comments

1 2 3 Next › Last »

medaminezghal commented on 2025-09-16 09:17 (UTC)

@bulletmark not necessary, the replaces just to replace packages by its names.

bulletmark commented on 2025-09-13 23:57 (UTC)

@medaminezghal I inherited this package with those locations. This package replaces pycharm-community-edition so essentially replaces the same files in the same locations.

medaminezghal commented on 2025-09-13 07:30 (UTC) (edited on 2025-09-13 07:31 (UTC) by medaminezghal)

@bulletmark According to Linux filesystem hierarchy, I think it should be installed in /opt not /usr/share.

bulletmark commented on 2023-12-29 05:08 (UTC)

@muhaha, added it. Thanks.

muhaha commented on 2023-12-28 23:18 (UTC)

Here is a patch which adds support for aarch64

diff --git a/PKGBUILD b/PKGBUILD
index 1e5d2f8..dc6fb03 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=$_appname-jre
 pkgver=2023.3.2
 pkgrel=1
 pkgdesc="PyCharm Community Edition IDE for Python with bundled JRE"
-arch=(x86_64)
+arch=(x86_64 aarch64)
 url="https://www.jetbrains.com/pycharm/"
 license=('APACHE')
 conflicts=(
@@ -13,15 +13,19 @@ conflicts=(
   "pycharm-community-edition"
 )
 source=(
-  "https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz"
   pycharm.desktop
   pycharm.sh
 )
 options=(!strip)
-sha256sums=('1a4a95648c68890f2f9eb41cbb9eb041dcd08388c75a91298dfbe73f83a858c8'
-            'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
+sha256sums=('f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
             'b6f0518e59c4744ded38de63efba91205bcba406fa74944a1f3a8937566d8acc')

+source_x86_64=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz")
+sha256sums_x86_64=('1a4a95648c68890f2f9eb41cbb9eb041dcd08388c75a91298dfbe73f83a858c8')
+
+source_aarch64=("https://download.jetbrains.com/python/pycharm-community-${pkgver}-aarch64.tar.gz")
+sha256sums_aarch64=('1d63c0ea7dec718f67ad78e0ccef76058d92f63d07afe931a4ac6ff3f74c9052')
+
 package() {
   cd "${_appname}-${pkgver}"

frazar0 commented on 2023-12-20 09:08 (UTC)

@joshm Yes, the package without the bundled JRE would be pycharm-community-edition in "extra".

joshm commented on 2023-11-17 18:03 (UTC)

I am also confused by the -jre suffix -- is there an option without the bundled JRE?

Ashark commented on 2023-11-08 15:28 (UTC)

This package seems incorrect as of now. It is named with "-jre" suffix, while it provides not only the jre, but also the pycharm itself.
Please make this pkgname contain only the jre. If you want the package to also include the pycharm, it should be a split package. But as the official repository already contain the "pycharm-community-edition", if you want to provide jre for it, then it should be renamed as "pycharm-community-edition-jre".

Ashark commented on 2023-10-28 20:04 (UTC) (edited on 2023-10-28 21:14 (UTC) by Ashark)

The url for jre package is incorrect. Please link to the correct place: https://github.com/JetBrains/JetBrainsRuntime

isatsam commented on 2023-10-19 15:41 (UTC)

PKGBUILD for 2023.2.3:

# Maintainer: Philip May <eniak.info@gmail.com>
pkgname=pycharm-community-jre
_appname=pycharm-community
pkgver=2023.2.3
pkgrel=1
pkgdesc="PyCharm Community Edition IDE for Python with bundled JRE"
arch=(x86_64)
url="https://www.jetbrains.com/pycharm/"
license=('APACHE')
conflicts=(
  "pycharm-community-eap"
  "pycharm-community-edition"
)
source=(
  "https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz"
  pycharm.desktop
  pycharm.sh
)
noextract=()
sha256sums=(
  'd59dd88c1eb51cdd756433d415588c573ca944ebf6f08844b8ac8cd2e3d9937b'
  'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
  'b6f0518e59c4744ded38de63efba91205bcba406fa74944a1f3a8937566d8acc'
)

Paste package() part from this package's PKGBUILD or from my previous comment. (Avoiding posting walls of same old code.) Heard we will get wayland support soon which is very exciting.