From 3e933075dc1923bfeeb52f8e5d718e76bb2b1f82 Mon Sep 17 00:00:00 2001 From: Aleksey Rostovskiy Date: Thu, 21 Nov 2019 10:31:03 +0300 Subject: [PATCH] PyCharm with Anaconda plugin: skip some build steps GitOrigin-RevId: 8b4d255c4e306b6db56817bef9a12cfb18a0c179 --- .../pycharm/PyCharmCommunityProperties.groovy | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy b/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy index 0202760dc72d..ee1f23f702d8 100644 --- a/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy +++ b/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy @@ -79,7 +79,16 @@ class PyCharmCommunityProperties extends PyCharmPropertiesBase { @Override LinuxDistributionCustomizer createLinuxCustomizer(String projectHome) { - return new PyCharmCommunityLinuxDistributionCustomizer(projectHome) + return new PyCharmCommunityLinuxDistributionCustomizer(projectHome) { + @Override + String getSnapName() { return "pycharm-community" } + + @Override + String getSnapDescription() { + return "Python IDE for professional developers. Save time while PyCharm takes care of the routine. " + \ + "Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features." + } + } } @Override @@ -112,10 +121,6 @@ class PyCharmCommunityLinuxDistributionCustomizer extends LinuxDistributionCusto PyCharmCommunityLinuxDistributionCustomizer(projectHome) { iconPngPath = "$projectHome/python/resources/PyCharmCore128.png" iconPngPathForEAP = "$projectHome/python/resources/PyCharmCore128_EAP.png" - snapName = "pycharm-community" - snapDescription = - "Python IDE for professional developers. Save time while PyCharm takes care of the routine. " - "Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features." } @Override