2
0

Compare commits

..

3 Commits

Author SHA1 Message Date
6779b9eb32 Add additional optimisation for x86_64 CARCHs 2024-12-16 14:49:16 +02:00
1125cc5764 Move .install functionality into PKGBUILD
Building things belongs in build() in the PKGBUILD and placing them in
the filesystem belongs in package() and removing package files belongs
to the package manager… none of these are the .install files, so
removing the .install files in favour of moving these things into the
PKGBUILD’s functions.
2024-12-16 14:49:14 +02:00
78da946ddd Update to 2024.3.1 2024-12-12 15:42:43 -05:00
2 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
pkgbase = pycharm-professional pkgbase = pycharm-professional
pkgdesc = Python IDE for Professional Developers. Professional Edition pkgdesc = Python IDE for Professional Developers. Professional Edition
pkgver = 2024.3 pkgver = 2024.3.1
pkgrel = 1.1 pkgrel = 1
url = https://www.jetbrains.com/pycharm/ url = https://www.jetbrains.com/pycharm/
arch = x86_64 arch = x86_64
arch = x86_64_v3 arch = x86_64_v3
@ -33,11 +33,11 @@ pkgbase = pycharm-professional
source = ltedit-professional.desktop source = ltedit-professional.desktop
sha256sums = 6ff245b42b475a5b97c359d97bc48d573c2988170fc195073c9187d5abe1c576 sha256sums = 6ff245b42b475a5b97c359d97bc48d573c2988170fc195073c9187d5abe1c576
sha256sums = 21e9d192712fb537d9e5abccc54970becb347b32ad2be469a35b2585f45a9116 sha256sums = 21e9d192712fb537d9e5abccc54970becb347b32ad2be469a35b2585f45a9116
source_x86_64 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3.tar.gz source_x86_64 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3.1.tar.gz
sha256sums_x86_64 = 142d7033f0548fd4f3e26bb2f8507f5d16048d9dfbe2f3a3de5246042e269ff7 sha256sums_x86_64 = 7bd9ea5c4eae1d1fc71cd538b1443c809c77c05fb8c793f3ebb5b1abd898a70f
source_x86_64_v3 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3.tar.gz source_x86_64_v3 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3.1.tar.gz
sha256sums_x86_64_v3 = 142d7033f0548fd4f3e26bb2f8507f5d16048d9dfbe2f3a3de5246042e269ff7 sha256sums_x86_64_v3 = 7bd9ea5c4eae1d1fc71cd538b1443c809c77c05fb8c793f3ebb5b1abd898a70f
source_aarch64 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3-aarch64.tar.gz source_aarch64 = https://download-cf.jetbrains.com/python/pycharm-professional-2024.3.1-aarch64.tar.gz
sha256sums_aarch64 = 7394972b57d04d3e1f147a9802661ee6600d6b0213576a551eac9b88939ebd6e sha256sums_aarch64 = 2483768c690f6caa9c1c3e3ef948fbd88e2b1ebb6f77ebd3f6c80e12e406e6c9
pkgname = pycharm-professional pkgname = pycharm-professional

View File

@ -4,7 +4,7 @@
# Contributor: Andrew Shark # Contributor: Andrew Shark
pkgname=pycharm-professional pkgname=pycharm-professional
pkgver=2024.3 pkgver=2024.3.1
pkgrel=1.1 pkgrel=1.1
pkgdesc="Python IDE for Professional Developers. Professional Edition" pkgdesc="Python IDE for Professional Developers. Professional Edition"
arch=('x86_64' 'x86_64_v3' 'aarch64') arch=('x86_64' 'x86_64_v3' 'aarch64')
@ -32,9 +32,9 @@ source_x86_64_v3=($source_x86_64)
source_aarch64=("https://download-cf.jetbrains.com/python/${pkgname}-${pkgver}-aarch64.tar.gz") source_aarch64=("https://download-cf.jetbrains.com/python/${pkgname}-${pkgver}-aarch64.tar.gz")
sha256sums=('6ff245b42b475a5b97c359d97bc48d573c2988170fc195073c9187d5abe1c576' sha256sums=('6ff245b42b475a5b97c359d97bc48d573c2988170fc195073c9187d5abe1c576'
'21e9d192712fb537d9e5abccc54970becb347b32ad2be469a35b2585f45a9116') '21e9d192712fb537d9e5abccc54970becb347b32ad2be469a35b2585f45a9116')
sha256sums_x86_64=('142d7033f0548fd4f3e26bb2f8507f5d16048d9dfbe2f3a3de5246042e269ff7') sha256sums_x86_64=('7bd9ea5c4eae1d1fc71cd538b1443c809c77c05fb8c793f3ebb5b1abd898a70f')
sha256sums_x86_64_v3=('142d7033f0548fd4f3e26bb2f8507f5d16048d9dfbe2f3a3de5246042e269ff7') sha256sums_x86_64_v3=('7bd9ea5c4eae1d1fc71cd538b1443c809c77c05fb8c793f3ebb5b1abd898a70f')
sha256sums_aarch64=('7394972b57d04d3e1f147a9802661ee6600d6b0213576a551eac9b88939ebd6e') sha256sums_aarch64=('2483768c690f6caa9c1c3e3ef948fbd88e2b1ebb6f77ebd3f6c80e12e406e6c9')
# makedepends=('python-setuptools' 'cython') # makedepends=('python-setuptools' 'cython')
optdepends=( optdepends=(
'ipython: For enhanced interactive Python shell inside Pycharm' 'ipython: For enhanced interactive Python shell inside Pycharm'