a5b03a1b09
Changelog: 2019.1.2 This update comes with a bunch of notable fixes: Fixed several major Gradle issues: IDEA-210487, IDEA-210487, IDEA-178417. The “Open Recent” menu can now display the path to a project: IDEA-168223. The terminal tabs can now be reordered with Ctrl+Shift+Left/Right on Windows / Linux, and cmd+Shift+Left/Right on macOS: IDEA-202809. It’s now possible to build a Groovy project using the Groovy-Eclipse compiler: IDEA-207921. The Recent Locations popup now opens all the selected locations: IDEA-209286 The Run Anything popup shows the correct list of Maven goals: IDEA-199283, and shows correct suggestions on the first run: IDEA-210716. 2019.1.1 Out of dozens of important fixes this update delivers, here are the most important ones: Performance issues: the IDE doesn’t freeze on Auto-import (IDEA-206649) and we’ve fixed the issue that was causing very high memory usage on relatively small projects (IDEA-210047). Regressions fixed: The ‘Start Failed’ dialog doesn’t appear on closing the import settings dialog, and VCS refreshes don’t take very long with Mercurial anymore: IDEA-209262. Updating plugins in an offline environment now works with the new marketplace and custom plugin repository: IDEA-205032. No confirmation dialog is shown when you try to close a Terminal without running processes: IDEA-205690. It’s now possible to switch back from the Terminal tool window to the editor by pressing Esc: IDEA-116221. In the Run Configuration dialog, you can paste just the name or just the value of an Environment Variable: IDEA-206952. The IDE now correctly creates a branch when you open a task with the ‘create branch’ option enabled: IDEA-205194. It’s now possible to type characters that require AltGr (IntelliJ IDEA with JBR11): IDEA-209426. For those using the IdeaVim plugin, the Esc key in insert mode closes the autocomplete popup and exits the insert mode: IDEA-209779. The bundled Kotlin plugin was updated to v1.3.21-release-IJ2019.1-3, with the following fixes integrated: KT-30117, KT-29427, KT-30137, and KT-9618.
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2019/05/13 17:30:12 ryoon Exp $
|
|
|
|
|
|
VERSION= 2019.1.2
|
|
DISTNAME= pycharm-community-${VERSION}
|
|
PKGNAME= pycharm-bin-${VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.jetbrains.com/python/
|
|
|
|
MAINTAINER= youri@NetBSD.org
|
|
HOMEPAGE= http://www.jetbrains.org/
|
|
COMMENT= JetBrain\'s python IDE
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= intellij-fsnotifier-[0-9]*:../../sysutils/intellij-fsnotifier
|
|
|
|
WRKSRC= ${WRKDIR}/pycharm-community-${VERSION}
|
|
USE_JAVA= yes
|
|
USE_JAVA2= 8
|
|
|
|
USE_TOOLS+= pax sed
|
|
|
|
REPLACE_PYTHON= bin/printenv.py \
|
|
bin/restart.py \
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
INSTALLATION_DIRS= pycharm-bin-${VERSION} \
|
|
share/applications
|
|
|
|
NO_BUILD= yes
|
|
|
|
SUBST_CLASSES+= jdk
|
|
SUBST_STAGE.jdk= pre-install
|
|
SUBST_MESSAGE.jdk= Adding JVM options
|
|
SUBST_FILES.jdk= bin/pycharm.sh
|
|
SUBST_VARS.jdk= PKG_JAVA_HOME
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${RM} -r bin/fsnotifier bin/fsnotifier-arm bin/pycharm.sh.orig\
|
|
bin/fsnotifier64 bin/libdbm64.so \
|
|
lib/pty4j-native/linux/x86/libpty.so \
|
|
lib/pty4j-native/linux/x86_64/libpty.so \
|
|
jre64 \
|
|
lib/pty4j-native/linux/ppc64le/libpty.so \
|
|
helpers/pydev/pydevd_attach_to_process/attach_linux_amd64.so \
|
|
helpers/pydev/pydevd_attach_to_process/attach_linux_x86.so && \
|
|
${ECHO} "idea.filewatcher.disabled=true" >> bin/idea.properties && \
|
|
${SED} -e "s|@@IDEA_HOME@@|${PREFIX}/${PKGNAME_NOREV}|g" \
|
|
${FILESDIR}/pycharm.desktop > \
|
|
${DESTDIR}${PREFIX}/share/applications/pycharm.desktop && \
|
|
pax -rw -pm * ${DESTDIR}${PREFIX}/${PKGNAME_NOREV}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|