From 4885f37e0c4ff0b5965639ab6964d22059d5fb58 Mon Sep 17 00:00:00 2001 From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com> Date: Tue, 13 Jul 2021 22:24:33 -0700 Subject: [PATCH] GoLand: update to 2021.1.3. --- srcpkgs/GoLand/template | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/srcpkgs/GoLand/template b/srcpkgs/GoLand/template index 24209cb2e882..898701d61f84 100644 --- a/srcpkgs/GoLand/template +++ b/srcpkgs/GoLand/template @@ -1,6 +1,6 @@ # Template file for 'GoLand' pkgname=GoLand -version=2020.3.2 +version=2021.1.3 revision=1 archs="i686 x86_64" depends="jetbrains-jdk-bin" @@ -9,7 +9,7 @@ maintainer="Anton Afanasyev " license="custom:Commercial" homepage="https://www.jetbrains.com/go" distfiles="https://download.jetbrains.com/go/goland-${version}.tar.gz" -checksum=5f1bacaadac20259b58215fb3a5f58fe97ba1051279a7f9060693d1e1ea18b03 +checksum=ade387550e79a8e4cdd31cfbdef5f344f30d2c4e005144a44e95cdb1419ac977 repository=nonfree restricted=yes nopie=yes @@ -17,23 +17,30 @@ python_version=3 post_extract() { # Remove files for other CPU architectures - rm -rf bin/fsnotifier-arm - rm -rf lib/pty4j-native/linux/ppc64le rm -rf lib/pty4j-native/linux/aarch64 rm -rf lib/pty4j-native/linux/mips64el + rm -rf lib/pty4j-native/linux/ppc64le + + # Remove files for other OSes + rm -rf plugins/cwm-plugin/quiche-native/darwin-aarch64 + rm -rf plugins/cwm-plugin/quiche-native/darwin-x86-64 + rm -rf plugins/cwm-plugin/quiche-native/win32-x86-64 + rm -rf plugins/performanceTesting/bin/yjpagent.dll + rm -rf plugins/performanceTesting/bin/yjpagent64.dll + rm -rf plugins/performanceTesting/bin/libyjpagent.dylib case "$XBPS_TARGET_MACHINE" in x86_64) rm -rf bin/fsnotifier rm -rf bin/goland.vmoptions - rm -rf bin/libyjpagent-linux.so rm -rf lib/pty4j-native/linux/x86 + rm -rf plugins/performanceTesting/bin/libyjpagent.so ;; i686) rm -rf bin/fsnotifier64 rm -rf bin/goland64.vmoptions - rm -rf bin/libyjpagent-linux64.so rm -rf lib/pty4j-native/linux/x86_64 + rm -rf plugins/performanceTesting/bin/libyjpagent64.so ;; esac }