Update pycharm to 2019.2

This commit is contained in:
rsadowski 2019-08-07 06:02:31 +00:00
parent 3d0267ab8d
commit cf43afbe41
4 changed files with 1028 additions and 63 deletions

View File

@ -1,9 +1,8 @@
# $OpenBSD: Makefile,v 1.17 2019/07/12 20:45:56 sthen Exp $
# $OpenBSD: Makefile,v 1.18 2019/08/07 06:02:31 rsadowski Exp $
COMMENT= Python IDE based on IntelliJ IDEA
V= 2019.1.3
REVISION= 0
V= 2019.2
DISTNAME= pycharm-community-${V}
PKGNAME= pycharm-${V}
CATEGORIES= devel

View File

@ -1,2 +1,2 @@
SHA256 (pycharm-community-2019.1.3.tar.gz) = 8G1arTczVzWtkpwLV7c8CIpxwoua1s0+CWD4CW53nCk=
SIZE (pycharm-community-2019.1.3.tar.gz) = 334018235
SHA256 (pycharm-community-2019.2.tar.gz) = YyAVzEDW5Kh0q1y6sEMOwZYs08Sn/18IPOiCQhgPeEs=
SIZE (pycharm-community-2019.2.tar.gz) = 359295798

View File

@ -1,16 +1,16 @@
$OpenBSD: patch-bin_pycharm_sh,v 1.1 2018/12/27 19:14:15 rsadowski Exp $
$OpenBSD: patch-bin_pycharm_sh,v 1.2 2019/08/07 06:02:31 rsadowski Exp $
Avoid "egrep: -: No such file or directory" issue
Index: bin/pycharm.sh
--- bin/pycharm.sh.orig
+++ bin/pycharm.sh
@@ -174,7 +174,7 @@ fi
@@ -180,7 +180,7 @@ fi
VM_OPTIONS=""
if [ -r "$VM_OPTIONS_FILE" ]; then
VM_OPTIONS=`"$CAT" "$VM_OPTIONS_FILE" | "$GREP" -v "^#.*"`
- if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent" - ; } then
+ if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent"; } then
VM_OPTIONS=$("$CAT" "$VM_OPTIONS_FILE" | "$GREP" -v "^#.*")
- if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent" - ; }; then
+ if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent"; }; then
if [ "$OS_TYPE" = "Linux" ]; then
VM_OPTIONS=`echo "$VM_OPTIONS" | "$SED" -e "s|-agentlib:yjpagent\(-linux\)\?\([^=]*\)|-agentpath:$IDE_BIN_HOME/libyjpagent-linux\2.so|"`
VM_OPTIONS=$(echo "$VM_OPTIONS" | "$SED" -e "s|-agentlib:yjpagent\(-linux\)\?\([^=]*\)|-agentpath:$IDE_BIN_HOME/libyjpagent-linux\2.so|")
else

File diff suppressed because it is too large Load Diff