Date: Friday, March 31, 2023 @ 08:38:57
  Author: artafinde
Revision: 1431388

archrelease: copy trunk to community-x86_64

Added:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
    (from rev 1431387, pycharm-community-edition/trunk/PKGBUILD)
  pycharm-community-edition/repos/community-x86_64/enable-no-jdr.patch
    (from rev 1431387, pycharm-community-edition/trunk/enable-no-jdr.patch)
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
    (from rev 1431387, pycharm-community-edition/trunk/pycharm.desktop)
  pycharm-community-edition/repos/community-x86_64/pycharm.sh
    (from rev 1431387, pycharm-community-edition/trunk/pycharm.sh)
Deleted:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
  pycharm-community-edition/repos/community-x86_64/enable-no-jdr.patch
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
  pycharm-community-edition/repos/community-x86_64/pycharm.sh

---------------------+
 PKGBUILD            |  195 +++++++++++++++++++++++++-------------------------
 enable-no-jdr.patch |   24 +++---
 pycharm.desktop     |   22 ++---
 pycharm.sh          |   34 ++++----
 4 files changed, 138 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-31 08:38:48 UTC (rev 1431387)
+++ PKGBUILD    2023-03-31 08:38:57 UTC (rev 1431388)
@@ -1,97 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Maintainer: Orhun Parmaksız <[email protected]>
-# Maintainer: Leonidas Spyropoulos <[email protected]>
-# Contributor: Maxime Gauduin <[email protected]>
-# Contributor: David Keogh <[email protected]>
-
-pkgname=pycharm-community-edition
-pkgver=2022.3.3
-_build=223.8836.43
-_jrever=17
-_jdkver=17
-pkgrel=2
-pkgdesc='Python IDE for Professional Developers'
-arch=(x86_64)
-url=https://www.jetbrains.com/pycharm/
-license=(APACHE)
-depends=(
-  giflib
-  glib2
-  "java-runtime=${_jrever}"
-  python
-  sh
-  ttf-font
-  fontconfig
-  libdbusmenu-glib
-)
-optdepends=(
-  'ipython: IPython integration for Python 3'
-)
-makedepends=(
-  git
-  "java-environment-openjdk=${_jdkver}"
-  python-setuptools
-)
-source=(
-  
"git+https://github.com/JetBrains/intellij-community.git#tag=pycharm/${_build}";
-  
idea-android::"git+https://github.com/JetBrains/android.git#tag=pycharm/${_build}";
-  pycharm.desktop
-  pycharm.sh
-  enable-no-jdr.patch
-)
-sha256sums=('SKIP'
-            'SKIP'
-            'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
-            'f4c4f1dfac7fa89ac1ea407904b19d0513d481b2f6f562672d02bfa4ce32c1ff'
-            'af736aad3e3df7e6196944860521dfbdad1e9f7ecc04ac4f38a067f1b63963e5')
-
-prepare() {
-  cd intellij-community
-
-  echo ${_build} > build.txt
-  mv "${srcdir}"/idea-android android
-
-  sed -e 's/var targetOs: String/var targetOs: String = OS_LINUX/' \
-      -e 's/System.getProperty(TARGET_OS_PROPERTY, OS_ALL)/OS_LINUX/' \
-      -i 
"platform/build-scripts/src/org/jetbrains/intellij/build/BuildOptions.kt"
-  sed 's|../build/plugins-autoupload.txt|plugins-autoupload.txt|' \
-      -i 
"platform/build-scripts/src/org/jetbrains/intellij/build/impl/DistributionJARsBuilder.kt"
-  touch plugins-autoupload.txt
-  # Fix pycharm python/installer.cmd & python/plugin.cmd
-  sed 's|intellij.pycharm.community.build|"$(cd "$(dirname "$0")"; pwd)/../" 
intellij.pycharm.community.build|' -i python/installers.cmd
-  #sed 's|intellij.pycharm.community.build|"$(cd "$(dirname "$0")"; pwd)/../" 
intellij.pycharm.community.build|' -i python/plugin.cmd
-  patch -Np1 < "${srcdir}/enable-no-jdr.patch"
-}
-
-build() {
-  cd intellij-community
-
-  export JAVA_HOME="/usr/lib/jvm/java-${_jdkver}-openjdk"
-  export PATH="/usr/lib/jvm/java-${_jdkver}-openjdk/bin:$PATH"
-  export MAVEN_REPOSITORY=/build/.m2/repository
-
-  ./python/installers.cmd -Dintellij.build.use.compiled.classes=false 
-Dintellij.build.target.os=linux
-  #./python/plugin.cmd -Dintellij.build.target.os=linux
-
-  tar -xf out/pycharm-ce/artifacts/pycharmPC-${_build}-no-jbr.tar.gz -C 
"${srcdir}"
-
-  cd ../pycharm-community-${pkgver}
-
-  python3 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
-}
-
-package() {
-  cd pycharm-community-${pkgver}
-
-  # workaround FS#40934
-  sed -i 's/lcd/on/' bin/*.vmoptions
-
-  install -dm 755 "${pkgdir}"/usr/share/{licenses,pixmaps,pycharm}
-  cp -dr --no-preserve='ownership' bin lib plugins 
"${pkgdir}"/usr/share/pycharm/
-  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
-  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
-  install -Dm 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
-  install -Dm 755 ../pycharm.sh "${pkgdir}"/usr/bin/pycharm
-}
-
-# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/PKGBUILD (from rev 
1431387, pycharm-community-edition/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-31 08:38:57 UTC (rev 1431388)
@@ -0,0 +1,98 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Orhun Parmaksız <[email protected]>
+# Maintainer: Leonidas Spyropoulos <[email protected]>
+# Contributor: Maxime Gauduin <[email protected]>
+# Contributor: David Keogh <[email protected]>
+
+pkgname=pycharm-community-edition
+pkgver=2023.1
+_build=231.8109.197
+_jrever=17
+_jdkver=17
+pkgrel=1
+pkgdesc='Python IDE for Professional Developers'
+arch=(x86_64)
+options=(!debug)
+url=https://www.jetbrains.com/pycharm/
+license=(APACHE)
+depends=(
+  giflib
+  glib2
+  "java-runtime=${_jrever}"
+  python
+  sh
+  ttf-font
+  fontconfig
+  libdbusmenu-glib
+)
+optdepends=(
+  'ipython: IPython integration for Python 3'
+)
+makedepends=(
+  git
+  "java-environment-openjdk=${_jdkver}"
+  python-setuptools
+)
+source=(
+  
"git+https://github.com/JetBrains/intellij-community.git#tag=pycharm/${_build}";
+  
idea-android::"git+https://github.com/JetBrains/android.git#tag=pycharm/${_build}";
+  pycharm.desktop
+  pycharm.sh
+  enable-no-jdr.patch
+)
+sha256sums=('SKIP'
+            'SKIP'
+            'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
+            'f4c4f1dfac7fa89ac1ea407904b19d0513d481b2f6f562672d02bfa4ce32c1ff'
+            'af736aad3e3df7e6196944860521dfbdad1e9f7ecc04ac4f38a067f1b63963e5')
+
+prepare() {
+  cd intellij-community
+
+  echo ${_build} > build.txt
+  mv "${srcdir}"/idea-android android
+
+  sed -e 's/var targetOs: String/var targetOs: String = OS_LINUX/' \
+      -e 's/System.getProperty(TARGET_OS_PROPERTY, OS_ALL)/OS_LINUX/' \
+      -i 
"platform/build-scripts/src/org/jetbrains/intellij/build/BuildOptions.kt"
+  sed 's|../build/plugins-autoupload.txt|plugins-autoupload.txt|' \
+      -i 
"platform/build-scripts/src/org/jetbrains/intellij/build/impl/DistributionJARsBuilder.kt"
+  touch plugins-autoupload.txt
+  # Fix pycharm python/installer.cmd & python/plugin.cmd
+  sed 's|intellij.pycharm.community.build|"$(cd "$(dirname "$0")"; pwd)/../" 
intellij.pycharm.community.build|' -i python/installers.cmd
+  #sed 's|intellij.pycharm.community.build|"$(cd "$(dirname "$0")"; pwd)/../" 
intellij.pycharm.community.build|' -i python/plugin.cmd
+  patch -Np1 < "${srcdir}/enable-no-jdr.patch"
+}
+
+build() {
+  cd intellij-community
+
+  export JAVA_HOME="/usr/lib/jvm/java-${_jdkver}-openjdk"
+  export PATH="/usr/lib/jvm/java-${_jdkver}-openjdk/bin:$PATH"
+  export MAVEN_REPOSITORY=/build/.m2/repository
+
+  ./python/installers.cmd -Dintellij.build.use.compiled.classes=false 
-Dintellij.build.target.os=linux
+  #./python/plugin.cmd -Dintellij.build.target.os=linux
+
+  tar -xf out/pycharm-ce/artifacts/pycharmPC-${_build}-no-jbr.tar.gz -C 
"${srcdir}"
+
+  cd ../pycharm-community-${pkgver}
+
+  python3 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
+}
+
+package() {
+  cd pycharm-community-${pkgver}
+
+  # workaround FS#40934
+  sed -i 's/lcd/on/' bin/*.vmoptions
+
+  install -dm 755 "${pkgdir}"/usr/share/{licenses,pixmaps,pycharm}
+  cp -dr --no-preserve='ownership' bin lib plugins 
"${pkgdir}"/usr/share/pycharm/
+  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
+  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
+  install -Dm 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
+  install -Dm 755 ../pycharm.sh "${pkgdir}"/usr/bin/pycharm
+}
+
+# vim: ts=2 sw=2 et:

Deleted: enable-no-jdr.patch
===================================================================
--- enable-no-jdr.patch 2023-03-31 08:38:48 UTC (rev 1431387)
+++ enable-no-jdr.patch 2023-03-31 08:38:57 UTC (rev 1431388)
@@ -1,12 +0,0 @@
-diff --git 
a/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
 
b/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
---- 
a/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
   (revision d2f6e301b539928d66c37f71ee199e9b738e5bb3)
-+++ 
b/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
   (date 1670184559625)
-@@ -24,7 +24,7 @@
-   /**
-    * If {@code true} a separate *-no-jbr.tar.gz artifact without runtime will 
be produced.
-    */
--  var buildTarGzWithoutBundledRuntime = false
-+  var buildTarGzWithoutBundledRuntime = true
- 
-   /**
-    * If {@code true}, the only *-no-jbr.tar.gz will be produced, no other 
binaries for Linux will be built.

Copied: pycharm-community-edition/repos/community-x86_64/enable-no-jdr.patch 
(from rev 1431387, pycharm-community-edition/trunk/enable-no-jdr.patch)
===================================================================
--- enable-no-jdr.patch                         (rev 0)
+++ enable-no-jdr.patch 2023-03-31 08:38:57 UTC (rev 1431388)
@@ -0,0 +1,12 @@
+diff --git 
a/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
 
b/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
+--- 
a/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
   (revision d2f6e301b539928d66c37f71ee199e9b738e5bb3)
++++ 
b/platform/build-scripts/src/org/jetbrains/intellij/build/LinuxDistributionCustomizer.kt
   (date 1670184559625)
+@@ -24,7 +24,7 @@
+   /**
+    * If {@code true} a separate *-no-jbr.tar.gz artifact without runtime will 
be produced.
+    */
+-  var buildTarGzWithoutBundledRuntime = false
++  var buildTarGzWithoutBundledRuntime = true
+ 
+   /**
+    * If {@code true}, the only *-no-jbr.tar.gz will be produced, no other 
binaries for Linux will be built.

Deleted: pycharm.desktop
===================================================================
--- pycharm.desktop     2023-03-31 08:38:48 UTC (rev 1431387)
+++ pycharm.desktop     2023-03-31 08:38:57 UTC (rev 1431388)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=PyCharm Community Edition
-Comment=Python IDE for Professional Developers
-Exec=/usr/bin/pycharm %f
-Icon=pycharm
-Terminal=false
-StartupNotify=true
-StartupWMClass=jetbrains-pycharm-ce
-Categories=Development;IDE;Python;

Copied: pycharm-community-edition/repos/community-x86_64/pycharm.desktop (from 
rev 1431387, pycharm-community-edition/trunk/pycharm.desktop)
===================================================================
--- pycharm.desktop                             (rev 0)
+++ pycharm.desktop     2023-03-31 08:38:57 UTC (rev 1431388)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=PyCharm Community Edition
+Comment=Python IDE for Professional Developers
+Exec=/usr/bin/pycharm %f
+Icon=pycharm
+Terminal=false
+StartupNotify=true
+StartupWMClass=jetbrains-pycharm-ce
+Categories=Development;IDE;Python;

Deleted: pycharm.sh
===================================================================
--- pycharm.sh  2023-03-31 08:38:48 UTC (rev 1431387)
+++ pycharm.sh  2023-03-31 08:38:57 UTC (rev 1431388)
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-if [ -z "$PYCHARM_JDK" ] ; then
-  PYCHARM_JDK="/usr/lib/jvm/java-17-openjdk/"
-fi
-# open-jfx location that should match the JDK version
-if [ -z "$PYCHARM_JFX" ] ; then
-  PYCHARM_JFX="/usr/lib/jvm/java-17-openjfx/"
-fi
-# classpath according to defined JDK/JFX
-if [ -z "$PYCHARM_CLASSPATH" ] ; then
-  PYCHARM_CLASSPATH="${PYCHARM_JDK}/lib/*:${PYCHARM_JFX}/lib/*"
-fi
-
-exec env PYCHARM_JDK="$PYCHARM_JDK" PYCHARM_CLASSPATH="$PYCHARM_CLASSPATH" 
/usr/share/pycharm/bin/pycharm.sh "$@"
-
-# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/pycharm.sh (from rev 
1431387, pycharm-community-edition/trunk/pycharm.sh)
===================================================================
--- pycharm.sh                          (rev 0)
+++ pycharm.sh  2023-03-31 08:38:57 UTC (rev 1431388)
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+if [ -z "$PYCHARM_JDK" ] ; then
+  PYCHARM_JDK="/usr/lib/jvm/java-17-openjdk/"
+fi
+# open-jfx location that should match the JDK version
+if [ -z "$PYCHARM_JFX" ] ; then
+  PYCHARM_JFX="/usr/lib/jvm/java-17-openjfx/"
+fi
+# classpath according to defined JDK/JFX
+if [ -z "$PYCHARM_CLASSPATH" ] ; then
+  PYCHARM_CLASSPATH="${PYCHARM_JDK}/lib/*:${PYCHARM_JFX}/lib/*"
+fi
+
+exec env PYCHARM_JDK="$PYCHARM_JDK" PYCHARM_CLASSPATH="$PYCHARM_CLASSPATH" 
/usr/share/pycharm/bin/pycharm.sh "$@"
+
+# vim: ts=2 sw=2 et:

Reply via email to