From 78a39197debd7a812b72a3e55b88d4a990cddca0 Mon Sep 17 00:00:00 2001 From: rsadowski Date: Mon, 17 Aug 2020 04:22:22 +0000 Subject: [PATCH] Forgot to remove a patch, spotted by naddy@ --- devel/pycharm/Makefile | 3 ++- devel/pycharm/patches/patch-bin_pycharm_sh | 16 ---------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 devel/pycharm/patches/patch-bin_pycharm_sh diff --git a/devel/pycharm/Makefile b/devel/pycharm/Makefile index 900246ffa1b..581949e6394 100644 --- a/devel/pycharm/Makefile +++ b/devel/pycharm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.30 2020/08/15 20:45:05 rsadowski Exp $ +# $OpenBSD: Makefile,v 1.31 2020/08/17 04:22:22 rsadowski Exp $ COMMENT= Python IDE based on IntelliJ IDEA @@ -6,6 +6,7 @@ V= 2020.2 DISTNAME= pycharm-community-${V} PKGNAME= pycharm-${V} CATEGORIES= devel +REVISION= 0 HOMEPAGE= https://www.jetbrains.com/pycharm/ diff --git a/devel/pycharm/patches/patch-bin_pycharm_sh b/devel/pycharm/patches/patch-bin_pycharm_sh deleted file mode 100644 index eda1496ca4f..00000000000 --- a/devel/pycharm/patches/patch-bin_pycharm_sh +++ /dev/null @@ -1,16 +0,0 @@ -$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 -@@ -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 - if [ "$OS_TYPE" = "Linux" ]; then - VM_OPTIONS=$(echo "$VM_OPTIONS" | "$SED" -e "s|-agentlib:yjpagent\(-linux\)\?\([^=]*\)|-agentpath:$IDE_BIN_HOME/libyjpagent-linux\2.so|") - else