diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk index 98d603c8..0d02f50f 100644 --- a/Mk/bsd.sites.mk +++ b/Mk/bsd.sites.mk @@ -669,16 +669,18 @@ MASTER_SITE_GIMP+= \ .if !defined(IGNORE_MASTER_SITE_GNU) MASTER_SITE_GNU+= \ - https://ftp.de.gnu.org/%SUBDIR%/ \ - https://ftp.gnu.org/gnu/%SUBDIR%/ \ - ftp://ftp.gnu.org/gnu/%SUBDIR%/ \ - http://www.gtlib.gatech.edu/pub/gnu/gnu/%SUBDIR%/ \ + https://ftpmirror.gnu.org/%SUBDIR%/ \ https://mirrors.kernel.org/gnu/%SUBDIR%/ \ - ftp://ftp.kddlabs.co.jp/GNU/gnu/%SUBDIR%/ \ + https://mirror.netcologne.de/gnu/%SUBDIR%/ \ + https://www.nic.funet.fi/pub/gnu/gnu/%SUBDIR%/ \ + http://mirror.navercorp.com/gnu/%SUBDIR%/ \ + http://ftp.halifax.rwth-aachen.de/gnu/%SUBDIR%/ \ + http://download.xs4all.nl/gnu/%SUBDIR%/ \ + http://ftp.kddilabs.jp/GNU/gnu/%SUBDIR%/ \ + ftp://mirrors.rit.edu/gnu/%SUBDIR%/ \ + ftp://ftp.fu-berlin.de/unix/gnu/%SUBDIR%/ \ ftp://ftp.mirrorservice.org/sites/ftp.gnu.org/gnu/%SUBDIR%/ \ - ftp://ftp.informatik.hu-berlin.de/pub/gnu/gnu/%SUBDIR%/ \ - ftp://ftp.informatik.rwth-aachen.de/pub/mirror/ftp.gnu.org/pub/gnu/%SUBDIR%/ \ - http://ftp.funet.fi/pub/gnu/prep/%SUBDIR%/ + https://ftp.gnu.org/gnu/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_GNUPG) diff --git a/_alpha/jetbrains-goland.new/Makefile b/_alpha/jetbrains-goland.new/Makefile new file mode 100644 index 00000000..0451183f --- /dev/null +++ b/_alpha/jetbrains-goland.new/Makefile @@ -0,0 +1,69 @@ +# $FreeBSD: head/devel/jetbrains-goland/Makefile 531401 2020-04-11 06:10:11Z tcberner $ + +PORTNAME= goland +PORTVERSION= 2022.3.2 +CATEGORIES= devel java +MASTER_SITES= https://download-cf.jetbrains.com/go/ +PKGNAMEPREFIX= jetbrains- +DIST_SUBDIR= jetbrains + +MAINTAINER= dmitry.wagin@ya.ru +COMMENT= JetBrains GoLand IDE + +BUILD_DEPENDS= jna>0:java/jna +RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \ + jetbrains-pty4j>=0.12.10:java/jetbrains-pty4j + +USES= python:run shebangfix + +USE_JAVA= yes +JAVA_VERSION= 11+ + +SHEBANG_FILES= bin/restart.py + +NO_ARCH= yes +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/GoLand-${PORTVERSION} + +SUB_FILES= goland goland.desktop pkg-message + +do-install: +# Linux/Windows/OS X only so remove them + @${RM} -r \ + ${WRKSRC}/bin/fsnotifier \ + ${WRKSRC}/bin/fsnotifier-arm \ + ${WRKSRC}/bin/fsnotifier64 \ + ${WRKSRC}/bin/remote-dev-server.sh \ + ${WRKSRC}/bin/repair \ + ${WRKSRC}/jbr \ + ${WRKSRC}/jre64 \ + ${WRKSRC}/lib/pty4j \ + ${WRKSRC}/plugins/cwm-plugin \ + ${WRKSRC}/plugins/gateway-plugin/lib/remote-dev-workers \ + ${WRKSRC}/plugins/go-plugin/lib/dlv \ + ${WRKSRC}/plugins/go/lib/dlv \ + ${WRKSRC}/plugins/performanceTesting \ + ${WRKSRC}/plugins/remote-dev-server + ${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \ + "! -name *\.bak ! -name *\.so ! -name *\.dll ! -name *\.dylib ! -name *\.pdb ! -name *\.sh ! -name *\.exe") + @(cd ${WRKSRC} && ${COPYTREE_BIN} . ${STAGEDIR}${DATADIR} "-name *\.sh") + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${FILESDIR}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/ +# Use fsnotifier replacement provided by java/intellij-fsnotifier + ${ECHO} "idea.filewatcher.executable.path=${PREFIX}/intellij/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties +# Install FreeBSD native lib provided by devel/jna + ${MKDIR} ${WRKDIR}/jna + cd ${WRKDIR}/jna && ${JAR} xf ${JAVAJARDIR}/jna.jar com/sun/jna/freebsd-x86-64/libjnidispatch.so + ${MKDIR} ${STAGEDIR}${DATADIR}/lib/jna/amd64 + ${INSTALL_LIB} ${WRKDIR}/jna/com/sun/jna/freebsd-x86-64/libjnidispatch.so ${STAGEDIR}${DATADIR}/lib/jna/amd64/ +# Use pty4j replacement provided by devel/jetbrains-pty4j + ${LN} -sf ../../../lib/pty4j ${STAGEDIR}${DATADIR}/lib/pty4j + +do-install-DELVE-on: + ${ECHO} "dlv.path=${PREFIX}/bin/dlv" >> ${STAGEDIR}${DATADIR}/bin/idea.properties + + +.include diff --git a/_alpha/jetbrains-goland.new/distinfo b/_alpha/jetbrains-goland.new/distinfo new file mode 100644 index 00000000..4c373114 --- /dev/null +++ b/_alpha/jetbrains-goland.new/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1679731669 +SHA256 (jetbrains/goland-2022.3.2.tar.gz) = f130d0e4c2c89dcd291e05cca33484eb08e247e9ec29c13deaf67176afbf6a36 +SIZE (jetbrains/goland-2022.3.2.tar.gz) = 673411841 diff --git a/_alpha/jetbrains-goland.new/files/goland.1 b/_alpha/jetbrains-goland.new/files/goland.1 new file mode 100644 index 00000000..bc8ba6ea --- /dev/null +++ b/_alpha/jetbrains-goland.new/files/goland.1 @@ -0,0 +1,16 @@ +.\" $OpenBSD: mdoc.template,v 1.10 2007/05/31 22:10:19 jmc Exp $ +.Dd $Mdocdate: May 26 2019 $ +.Dt goland 1 +.Os +.Sh NAME +.Nm goland +.Nd launch JetBrains GoLand Integrated Development Environment +.Sh SYNOPSIS +.Nm +.Op jvm-args +.Sh DESCRIPTION +.Nm +starts up the JetBrains GoLand Integrated Development Environment. +.Sh SEE ALSO +The web site +https://www.jetbrains.com/go/ . diff --git a/_alpha/jetbrains-goland.new/files/goland.desktop.in b/_alpha/jetbrains-goland.new/files/goland.desktop.in new file mode 100644 index 00000000..b1b8a717 --- /dev/null +++ b/_alpha/jetbrains-goland.new/files/goland.desktop.in @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Type=Application +Name=GoLand +GenericName=GoLand +Comment=GoLand Integrated Development Environment +Icon=%%DATADIR%%/bin/goland.png +Exec=%%DATADIR%%/bin/goland.sh +Terminal=false +StartupNotify=true +Categories=Application;Development; diff --git a/_alpha/jetbrains-goland.new/files/goland.in b/_alpha/jetbrains-goland.new/files/goland.in new file mode 100644 index 00000000..dc0f7656 --- /dev/null +++ b/_alpha/jetbrains-goland.new/files/goland.in @@ -0,0 +1,3 @@ +#!/bin/sh + +exec "%%DATADIR%%/bin/goland.sh" "$@" diff --git a/_alpha/jetbrains-goland.new/files/pkg-message.in b/_alpha/jetbrains-goland.new/files/pkg-message.in new file mode 100644 index 00000000..05839729 --- /dev/null +++ b/_alpha/jetbrains-goland.new/files/pkg-message.in @@ -0,0 +1,12 @@ +[ +{ type: install + message: < Edit Custom Properties... + + idea.filewatcher.disabled=true +EOM +} +] diff --git a/_alpha/jetbrains-goland.new/pkg-descr b/_alpha/jetbrains-goland.new/pkg-descr new file mode 100644 index 00000000..6b4886e5 --- /dev/null +++ b/_alpha/jetbrains-goland.new/pkg-descr @@ -0,0 +1,6 @@ +GoLand is cross-platform IDE built specially for Go developers. + +While this is trial software, there are commercial and academic licenses +available. + +WWW: https://www.jetbrains.com/go/ diff --git a/_alpha/jetbrains-goland.new/pkg-plist b/_alpha/jetbrains-goland.new/pkg-plist new file mode 100644 index 00000000..e9244238 --- /dev/null +++ b/_alpha/jetbrains-goland.new/pkg-plist @@ -0,0 +1,1019 @@ +bin/goland +man/man1/goland.1.gz +share/applications/goland.desktop +share/goland/bin/brokenPlugins.db +share/goland/bin/format.sh +share/goland/bin/goland.png +share/goland/bin/goland.sh +share/goland/bin/goland.svg +share/goland/bin/goland64.vmoptions +share/goland/bin/icons/icons-v2-1.0-d.db +share/goland/bin/icons/icons-v2-1.0.db +share/goland/bin/icons/icons-v2-1.25-d.db +share/goland/bin/icons/icons-v2-1.25.db +share/goland/bin/icons/icons-v2-1.5-d.db +share/goland/bin/icons/icons-v2-1.5.db +share/goland/bin/icons/icons-v2-2.0-d.db +share/goland/bin/icons/icons-v2-2.0.db +share/goland/bin/icons/icons-v2-2.5-d.db +share/goland/bin/icons/icons-v2-2.5.db +share/goland/bin/idea.properties +share/goland/bin/inspect.sh +share/goland/bin/ltedit.sh +share/goland/bin/restart.py +share/goland/build.txt +share/goland/help/ReferenceCard.pdf +share/goland/help/ReferenceCardForMac.pdf +share/goland/Install-Linux-tar.txt +share/goland/lib/3rd-party-native.jar +share/goland/lib/3rd-party-rt.jar +share/goland/lib/annotations-java5.jar +share/goland/lib/app.jar +share/goland/lib/async-profiler-windows.jar +share/goland/lib/async-profiler.jar +share/goland/lib/build-marker-GO-223.8617.58 +share/goland/lib/byte-buddy-agent.jar +share/goland/lib/cds/classesLogAgent.jar +share/goland/lib/error-prone-annotations.jar +share/goland/lib/external-system-rt.jar +share/goland/lib/externalProcess-rt.jar +share/goland/lib/forms_rt.jar +share/goland/lib/groovy.jar +share/goland/lib/intellij-coverage-agent-1.0.682.jar +share/goland/lib/intellij-test-discovery.jar +share/goland/lib/jetbrains-annotations.jar +share/goland/lib/jna/amd64/libjnidispatch.so +share/goland/lib/jps-model.jar +share/goland/lib/jsch-agent.jar +share/goland/lib/platform-objectSerializer-annotations.jar +share/goland/lib/platform-statistics-devkit.jar +share/goland/lib/protobuf.jar +share/goland/lib/pty4j +share/goland/lib/rd.jar +share/goland/lib/stats.jar +share/goland/lib/util_rt.jar +share/goland/lib/util.jar +share/goland/license/delve-license.txt +share/goland/license/golang-license.txt +share/goland/license/gopher-license.txt +share/goland/license/javahelp_license.txt +share/goland/license/javolution_license.txt +share/goland/license/re2j-license.txt +share/goland/license/saxon-conditions.html +share/goland/license/third-party-libraries.html +share/goland/license/third-party-libraries.json +share/goland/license/yourkit-license-redist.txt +share/goland/plugins/cloudConfig/lib/cloudConfig.jar +share/goland/plugins/clouds-docker-impl/lib/clouds-docker-impl.jar +share/goland/plugins/color-scheme-colorful-darcula/lib/color-scheme-colorful-darcula.jar +share/goland/plugins/color-scheme-monokai/lib/color-scheme-monokai.jar +share/goland/plugins/color-scheme-solarized-goland/lib/color-scheme-solarized-goland.jar +share/goland/plugins/completionMlRanking/lib/completionMlRanking.jar +share/goland/plugins/configurationScript/lib/configurationScript.jar +share/goland/plugins/copyright/lib/copyright.jar +share/goland/plugins/css-impl/lib/css-openapi.jar +share/goland/plugins/css-impl/lib/css.jar +share/goland/plugins/cwm-plugin-projector/lib/cwm-plugin-projector.jar +share/goland/plugins/cwm-plugin-projector/lib/projector/projector.jar +share/goland/plugins/DatabaseTools/lib/aether-dependency-resolver.jar +share/goland/plugins/DatabaseTools/lib/database-openapi.jar +share/goland/plugins/DatabaseTools/lib/database-plugin.jar +share/goland/plugins/DatabaseTools/lib/jdbc-console.jar +share/goland/plugins/dev/lib/dev.jar +share/goland/plugins/dynamicPluginsTests-performanceTesting/lib/dynamicPluginsTests-performanceTesting.jar +share/goland/plugins/editorconfig/lib/editorconfig.jar +share/goland/plugins/emojipicker/lib/emojipicker.jar +share/goland/plugins/featuresTrainer/lib/featuresTrainer.jar +share/goland/plugins/fileWatcher/lib/fileWatcher.jar +share/goland/plugins/gateway-plugin/lib/gateway-plugin.jar +share/goland/plugins/gateway-plugin/lib/gateway-standalone/gateway.core.jar +share/goland/plugins/gateway-plugin/lib/gateway-standalone/gateway.jar +share/goland/plugins/gateway-plugin/resources/gateway.vmoptions +share/goland/plugins/gateway-terminal/lib/gateway-terminal.jar +share/goland/plugins/go-ide/lib/go-ide.jar +share/goland/plugins/go-plugin/lib/go-plugin.jar +share/goland/plugins/go-plugin/lib/src/go-openapi-src.jar +share/goland/plugins/go-plugin/license/delve-license.txt +share/goland/plugins/go-plugin/license/golang-license.txt +share/goland/plugins/go-plugin/license/gopher-license.txt +share/goland/plugins/go-plugin/license/re2j-license.txt +share/goland/plugins/go-sharedIndexes-bundled/gosdk/gosdk-868f051f5ea8-49dfab5291be.ijx +share/goland/plugins/go-sharedIndexes-bundled/gosdk/gosdk-868f051f5ea8-49dfab5291be.txt +share/goland/plugins/go-sharedIndexes-bundled/lib/go-sharedIndexes-bundled.jar +share/goland/plugins/go-template/lib/go-template.jar +share/goland/plugins/grazie/lib/grazie.jar +share/goland/plugins/grid-core-impl/lib/grid-core.jar +share/goland/plugins/grid-core-impl/lib/jdbc-console-types.jar +share/goland/plugins/grid-impl/lib/grid.jar +share/goland/plugins/grpc/lib/grpc.jar +share/goland/plugins/html-tools/lib/html-tools.jar +share/goland/plugins/indexing-shared-ultimate-plugin-bundled/lib/indexing-shared-ultimate-plugin-bundled.jar +share/goland/plugins/indexing-shared/lib/indexing-shared.jar +share/goland/plugins/javascript-debugger/lib/ChromeConnector.jar +share/goland/plugins/javascript-debugger/lib/debugConnectionForwarder.js +share/goland/plugins/javascript-debugger/lib/debugConnector.js +share/goland/plugins/javascript-debugger/lib/FirefoxConnector.jar +share/goland/plugins/javascript-debugger/lib/javascript-debugger.jar +share/goland/plugins/javascript-debugger/lib/nashorn-debugger-9-rt.jar +share/goland/plugins/javascript-debugger/lib/nashorn-debugger-rt.jar +share/goland/plugins/javascript-impl/helpers/base-test-reporter/intellij-stringifier.js +share/goland/plugins/javascript-impl/helpers/base-test-reporter/intellij-tree.js +share/goland/plugins/javascript-impl/helpers/base-test-reporter/intellij-util.js +share/goland/plugins/javascript-impl/helpers/buildTools/grunt/lib/grunt-intellij-util.js +share/goland/plugins/javascript-impl/helpers/buildTools/grunt/tasks/grunt-tasks-fetcher.js +share/goland/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js +share/goland/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-reporter.js +share/goland/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js +share/goland/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-util.js +share/goland/plugins/javascript-impl/helpers/node-core-modules/node-core-modules-loader.js +share/goland/plugins/javascript-impl/helpers/nodejs/library/yarn/intellij-yarn-pnp-deps-tree-loader.js +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/bin/batch-matcher +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/bin/semver.js +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/CHANGELOG.md +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/LICENSE +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/package.json +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/range.bnf +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/README.md +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/semver.js +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/package-lock.json +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/package.json +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/semver-range-matcher.js +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/test/.gitignore +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/test/package.json +share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/test/version-range-test.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/jasmine-reporter.d.ts +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-cli.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-config.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-jasmine-reporter.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-plugin.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-stringifier.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-tree.js +share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-util.js +share/goland/plugins/javascript-impl/helpers/vitest-intellij/node_modules/vitest-intellij-reporter-safe.js +share/goland/plugins/javascript-impl/helpers/vitest-intellij/vitest-intellij-reporter.js +share/goland/plugins/javascript-impl/helpers/vitest-intellij/vitest-intellij-util.js +share/goland/plugins/javascript-impl/js/js-predefined-ffdd448c697d-ba3f29a498ec.ijx +share/goland/plugins/javascript-impl/js/js-predefined-ffdd448c697d-ba3f29a498ec.txt +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/browser.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/cancellationToken.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/es2019decorators.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/flow.utilities.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.dom.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.collection.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.core.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.generator.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.iterable.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.promise.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.proxy.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.reflect.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.symbol.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.symbol.wellknown.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.array.include.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.object.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.asyncgenerator.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.array.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.object.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.bigint.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.date.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.number.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.promise.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.sharedmemory.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.promise.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.weakref.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.array.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.error.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.object.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.sharedmemory.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es5.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es6.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.full.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.string.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.weakref.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.scripthost.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.iterable.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/react.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/tsserverlibrary.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/typesMap.json +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/watchGuard.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/websql.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external/xpath.d.ts +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/bom.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/core.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/dom.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/indexeddb.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/intl.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/node.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/react-dom.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/react.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/serviceworkers.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/streams.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow/webassembly.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/js-language-service.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ide-watcher.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/logger-impl.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/out-path-process.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/service-loader.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/compile-info-holder.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-common-session-1x_21.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-project-service-1x.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-project-service-21.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-session-1x.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-session-21.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts15impl.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-default-options.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-plugin.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-session-latest.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-session-provider.js +share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/util.js +share/goland/plugins/javascript-impl/languageService/eslint/.gitignore +share/goland/plugins/javascript-impl/languageService/eslint/bin/eslint-api.js +share/goland/plugins/javascript-impl/languageService/eslint/bin/eslint-common.js +share/goland/plugins/javascript-impl/languageService/eslint/bin/eslint-plugin-provider.js +share/goland/plugins/javascript-impl/languageService/eslint/bin/eslint-plugin.js +share/goland/plugins/javascript-impl/languageService/eslint/bin/eslint8-plugin.js +share/goland/plugins/javascript-impl/languageService/eslint/bin/standard17-plugin.js +share/goland/plugins/javascript-impl/languageService/eslint/package-lock.json +share/goland/plugins/javascript-impl/languageService/eslint/package.json +share/goland/plugins/javascript-impl/languageService/eslint/src/eslint-api.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/eslint-common.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/eslint-plugin-provider.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/eslint-plugin.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/eslint8-plugin.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/standard17-plugin.ts +share/goland/plugins/javascript-impl/languageService/eslint/src/typings/js-lanuage-api.d.ts +share/goland/plugins/javascript-impl/languageService/eslint/tsconfig.json +share/goland/plugins/javascript-impl/lib/javascript-impl.jar +share/goland/plugins/javascript-intentions/lib/javascript-intentions.jar +share/goland/plugins/makefile/lib/makefile.jar +share/goland/plugins/markdown/lib/markdown.jar +share/goland/plugins/microservices-ui/lib/microservices-ui.jar +share/goland/plugins/platform-images/lib/platform-images.jar +share/goland/plugins/platform-langInjection/lib/IntelliLang.jar +share/goland/plugins/platform-langInjection/lib/java-langInjection-jps.jar +share/goland/plugins/platform-langInjection/lib/platform-langInjection.jar +share/goland/plugins/protoeditor/lib/protoeditor.jar +share/goland/plugins/qodana/lib/qodana.jar +share/goland/plugins/remoteRun/lib/remoteRun.jar +share/goland/plugins/restClient/lib/restClient.jar +share/goland/plugins/searchEverywhereMl/lib/searchEverywhereMl.jar +share/goland/plugins/settingsSync/lib/settingsSync.jar +share/goland/plugins/sh/lib/sh.jar +share/goland/plugins/space/lib/space-java-jps.jar +share/goland/plugins/space/lib/space.jar +share/goland/plugins/swagger/lib/swagger.jar +share/goland/plugins/terminal/.zshenv +share/goland/plugins/terminal/fish/config.fish +share/goland/plugins/terminal/jediterm-bash.in +share/goland/plugins/terminal/lib/terminal.jar +share/goland/plugins/textmate/lib/bundles/bat/.vscodeignore +share/goland/plugins/textmate/lib/bundles/bat/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/bat/language-configuration.json +share/goland/plugins/textmate/lib/bundles/bat/package.json +share/goland/plugins/textmate/lib/bundles/bat/package.nls.json +share/goland/plugins/textmate/lib/bundles/bat/snippets/batchfile.code-snippets +share/goland/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/clojure/.vscodeignore +share/goland/plugins/textmate/lib/bundles/clojure/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/clojure/language-configuration.json +share/goland/plugins/textmate/lib/bundles/clojure/package.json +share/goland/plugins/textmate/lib/bundles/clojure/package.nls.json +share/goland/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/coffeescript/.vscodeignore +share/goland/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/coffeescript/language-configuration.json +share/goland/plugins/textmate/lib/bundles/coffeescript/package.json +share/goland/plugins/textmate/lib/bundles/coffeescript/package.nls.json +share/goland/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.code-snippets +share/goland/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/cpp/.vscodeignore +share/goland/plugins/textmate/lib/bundles/cpp/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/cpp/language-configuration.json +share/goland/plugins/textmate/lib/bundles/cpp/package.json +share/goland/plugins/textmate/lib/bundles/cpp/package.nls.json +share/goland/plugins/textmate/lib/bundles/cpp/snippets/c.code-snippets +share/goland/plugins/textmate/lib/bundles/cpp/snippets/cpp.code-snippets +share/goland/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/cpp/syntaxes/cuda-cpp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/csharp/.vscodeignore +share/goland/plugins/textmate/lib/bundles/csharp/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/csharp/language-configuration.json +share/goland/plugins/textmate/lib/bundles/csharp/package.json +share/goland/plugins/textmate/lib/bundles/csharp/package.nls.json +share/goland/plugins/textmate/lib/bundles/csharp/snippets/csharp.code-snippets +share/goland/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/css/.vscode/launch.json +share/goland/plugins/textmate/lib/bundles/css/.vscodeignore +share/goland/plugins/textmate/lib/bundles/css/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/css/language-configuration.json +share/goland/plugins/textmate/lib/bundles/css/package.json +share/goland/plugins/textmate/lib/bundles/css/package.nls.json +share/goland/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/dart/.vscodeignore +share/goland/plugins/textmate/lib/bundles/dart/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/dart/language-configuration.json +share/goland/plugins/textmate/lib/bundles/dart/package.json +share/goland/plugins/textmate/lib/bundles/dart/package.nls.json +share/goland/plugins/textmate/lib/bundles/dart/syntaxes/dart.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/diff/.vscodeignore +share/goland/plugins/textmate/lib/bundles/diff/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/diff/language-configuration.json +share/goland/plugins/textmate/lib/bundles/diff/package.json +share/goland/plugins/textmate/lib/bundles/diff/package.nls.json +share/goland/plugins/textmate/lib/bundles/diff/syntaxes/diff.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/docker/.vscodeignore +share/goland/plugins/textmate/lib/bundles/docker/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/docker/language-configuration.json +share/goland/plugins/textmate/lib/bundles/docker/package.json +share/goland/plugins/textmate/lib/bundles/docker/package.nls.json +share/goland/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/erlang/grammar/Erlang.plist +share/goland/plugins/textmate/lib/bundles/erlang/language-configuration.json +share/goland/plugins/textmate/lib/bundles/erlang/package.json +share/goland/plugins/textmate/lib/bundles/fsharp/.vscodeignore +share/goland/plugins/textmate/lib/bundles/fsharp/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/fsharp/language-configuration.json +share/goland/plugins/textmate/lib/bundles/fsharp/package.json +share/goland/plugins/textmate/lib/bundles/fsharp/package.nls.json +share/goland/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.code-snippets +share/goland/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/git-base/.vscodeignore +share/goland/plugins/textmate/lib/bundles/git-base/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/git-base/languages/git-commit.language-configuration.json +share/goland/plugins/textmate/lib/bundles/git-base/languages/git-rebase.language-configuration.json +share/goland/plugins/textmate/lib/bundles/git-base/languages/ignore.language-configuration.json +share/goland/plugins/textmate/lib/bundles/git-base/package.json +share/goland/plugins/textmate/lib/bundles/git-base/package.nls.json +share/goland/plugins/textmate/lib/bundles/git-base/README.md +share/goland/plugins/textmate/lib/bundles/git-base/syntaxes/git-commit.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/git-base/syntaxes/git-rebase.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/git-base/syntaxes/ignore.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/git-base/tsconfig.json +share/goland/plugins/textmate/lib/bundles/go/.vscodeignore +share/goland/plugins/textmate/lib/bundles/go/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/go/language-configuration.json +share/goland/plugins/textmate/lib/bundles/go/package.json +share/goland/plugins/textmate/lib/bundles/go/package.nls.json +share/goland/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/groovy/.vscodeignore +share/goland/plugins/textmate/lib/bundles/groovy/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/groovy/language-configuration.json +share/goland/plugins/textmate/lib/bundles/groovy/package.json +share/goland/plugins/textmate/lib/bundles/groovy/package.nls.json +share/goland/plugins/textmate/lib/bundles/groovy/snippets/groovy.code-snippets +share/goland/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/handlebars/.vscodeignore +share/goland/plugins/textmate/lib/bundles/handlebars/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/handlebars/language-configuration.json +share/goland/plugins/textmate/lib/bundles/handlebars/package.json +share/goland/plugins/textmate/lib/bundles/handlebars/package.nls.json +share/goland/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/hlsl/.vscodeignore +share/goland/plugins/textmate/lib/bundles/hlsl/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/hlsl/language-configuration.json +share/goland/plugins/textmate/lib/bundles/hlsl/package.json +share/goland/plugins/textmate/lib/bundles/hlsl/package.nls.json +share/goland/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/html/.vscodeignore +share/goland/plugins/textmate/lib/bundles/html/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/html/language-configuration.json +share/goland/plugins/textmate/lib/bundles/html/package.json +share/goland/plugins/textmate/lib/bundles/html/package.nls.json +share/goland/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/ini/.vscodeignore +share/goland/plugins/textmate/lib/bundles/ini/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/ini/ini.language-configuration.json +share/goland/plugins/textmate/lib/bundles/ini/package.json +share/goland/plugins/textmate/lib/bundles/ini/package.nls.json +share/goland/plugins/textmate/lib/bundles/ini/properties.language-configuration.json +share/goland/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/java/.vscodeignore +share/goland/plugins/textmate/lib/bundles/java/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/java/language-configuration.json +share/goland/plugins/textmate/lib/bundles/java/package.json +share/goland/plugins/textmate/lib/bundles/java/package.nls.json +share/goland/plugins/textmate/lib/bundles/java/snippets/java.code-snippets +share/goland/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/javascript/.vscodeignore +share/goland/plugins/textmate/lib/bundles/javascript/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json +share/goland/plugins/textmate/lib/bundles/javascript/package.json +share/goland/plugins/textmate/lib/bundles/javascript/package.nls.json +share/goland/plugins/textmate/lib/bundles/javascript/snippets/javascript.code-snippets +share/goland/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md +share/goland/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage +share/goland/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json +share/goland/plugins/textmate/lib/bundles/json/.vscodeignore +share/goland/plugins/textmate/lib/bundles/json/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/json/language-configuration.json +share/goland/plugins/textmate/lib/bundles/json/package.json +share/goland/plugins/textmate/lib/bundles/json/package.nls.json +share/goland/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/jsp/jsp-configuration.json +share/goland/plugins/textmate/lib/bundles/jsp/LICENSE +share/goland/plugins/textmate/lib/bundles/jsp/package.json +share/goland/plugins/textmate/lib/bundles/jsp/README.md +share/goland/plugins/textmate/lib/bundles/jsp/syntaxes/jsp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/julia/.vscodeignore +share/goland/plugins/textmate/lib/bundles/julia/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/julia/language-configuration.json +share/goland/plugins/textmate/lib/bundles/julia/package.json +share/goland/plugins/textmate/lib/bundles/julia/package.nls.json +share/goland/plugins/textmate/lib/bundles/julia/syntaxes/julia.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/kotlin/info.plist +share/goland/plugins/textmate/lib/bundles/kotlin/package.json +share/goland/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet +share/goland/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet +share/goland/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage +share/goland/plugins/textmate/lib/bundles/latex/.vscodeignore +share/goland/plugins/textmate/lib/bundles/latex/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/latex/cpp-bailout-license.txt +share/goland/plugins/textmate/lib/bundles/latex/latex-cpp-embedded-language-configuration.json +share/goland/plugins/textmate/lib/bundles/latex/latex-language-configuration.json +share/goland/plugins/textmate/lib/bundles/latex/markdown-latex-combined-language-configuration.json +share/goland/plugins/textmate/lib/bundles/latex/markdown-latex-combined-license.txt +share/goland/plugins/textmate/lib/bundles/latex/package.json +share/goland/plugins/textmate/lib/bundles/latex/package.nls.json +share/goland/plugins/textmate/lib/bundles/latex/syntaxes/Bibtex.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/latex/syntaxes/cpp-grammar-bailout.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/latex/syntaxes/LaTeX.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/latex/syntaxes/markdown-latex-combined.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/latex/syntaxes/TeX.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/less/.vscodeignore +share/goland/plugins/textmate/lib/bundles/less/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/less/language-configuration.json +share/goland/plugins/textmate/lib/bundles/less/package.json +share/goland/plugins/textmate/lib/bundles/less/package.nls.json +share/goland/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/log/.vscodeignore +share/goland/plugins/textmate/lib/bundles/log/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/log/package.json +share/goland/plugins/textmate/lib/bundles/log/package.nls.json +share/goland/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/lua/.vscodeignore +share/goland/plugins/textmate/lib/bundles/lua/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/lua/language-configuration.json +share/goland/plugins/textmate/lib/bundles/lua/package.json +share/goland/plugins/textmate/lib/bundles/lua/package.nls.json +share/goland/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/make/.vscodeignore +share/goland/plugins/textmate/lib/bundles/make/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/make/language-configuration.json +share/goland/plugins/textmate/lib/bundles/make/package.json +share/goland/plugins/textmate/lib/bundles/make/package.nls.json +share/goland/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore +share/goland/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json +share/goland/plugins/textmate/lib/bundles/markdown-basics/package.json +share/goland/plugins/textmate/lib/bundles/markdown-basics/package.nls.json +share/goland/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.code-snippets +share/goland/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/markdown-math/.gitignore +share/goland/plugins/textmate/lib/bundles/markdown-math/.vscodeignore +share/goland/plugins/textmate/lib/bundles/markdown-math/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/markdown-math/notebook/tsconfig.json +share/goland/plugins/textmate/lib/bundles/markdown-math/package.json +share/goland/plugins/textmate/lib/bundles/markdown-math/package.nls.json +share/goland/plugins/textmate/lib/bundles/markdown-math/preview-styles/index.css +share/goland/plugins/textmate/lib/bundles/markdown-math/README.md +share/goland/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math-block.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math-inline.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/markdown-math/tsconfig.json +share/goland/plugins/textmate/lib/bundles/mdx/license +share/goland/plugins/textmate/lib/bundles/mdx/package.json +share/goland/plugins/textmate/lib/bundles/mdx/syntaxes/mdx.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/objective-c/.vscodeignore +share/goland/plugins/textmate/lib/bundles/objective-c/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/objective-c/language-configuration.json +share/goland/plugins/textmate/lib/bundles/objective-c/package.json +share/goland/plugins/textmate/lib/bundles/objective-c/package.nls.json +share/goland/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/perl/.vscodeignore +share/goland/plugins/textmate/lib/bundles/perl/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/perl/package.json +share/goland/plugins/textmate/lib/bundles/perl/package.nls.json +share/goland/plugins/textmate/lib/bundles/perl/perl.language-configuration.json +share/goland/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json +share/goland/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/php/.vscode/launch.json +share/goland/plugins/textmate/lib/bundles/php/.vscode/tasks.json +share/goland/plugins/textmate/lib/bundles/php/.vscodeignore +share/goland/plugins/textmate/lib/bundles/php/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/php/language-configuration.json +share/goland/plugins/textmate/lib/bundles/php/package.json +share/goland/plugins/textmate/lib/bundles/php/package.nls.json +share/goland/plugins/textmate/lib/bundles/php/snippets/php.code-snippets +share/goland/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/powershell/.vscodeignore +share/goland/plugins/textmate/lib/bundles/powershell/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/powershell/language-configuration.json +share/goland/plugins/textmate/lib/bundles/powershell/package.json +share/goland/plugins/textmate/lib/bundles/powershell/package.nls.json +share/goland/plugins/textmate/lib/bundles/powershell/snippets/powershell.code-snippets +share/goland/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/pug/.vscodeignore +share/goland/plugins/textmate/lib/bundles/pug/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/pug/language-configuration.json +share/goland/plugins/textmate/lib/bundles/pug/package.json +share/goland/plugins/textmate/lib/bundles/pug/package.nls.json +share/goland/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/python/.vscode/launch.json +share/goland/plugins/textmate/lib/bundles/python/.vscode/tasks.json +share/goland/plugins/textmate/lib/bundles/python/.vscodeignore +share/goland/plugins/textmate/lib/bundles/python/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/python/language-configuration.json +share/goland/plugins/textmate/lib/bundles/python/package.json +share/goland/plugins/textmate/lib/bundles/python/package.nls.json +share/goland/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/r/.vscodeignore +share/goland/plugins/textmate/lib/bundles/r/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/r/language-configuration.json +share/goland/plugins/textmate/lib/bundles/r/package.json +share/goland/plugins/textmate/lib/bundles/r/package.nls.json +share/goland/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/razor/.vscodeignore +share/goland/plugins/textmate/lib/bundles/razor/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/razor/language-configuration.json +share/goland/plugins/textmate/lib/bundles/razor/package.json +share/goland/plugins/textmate/lib/bundles/razor/package.nls.json +share/goland/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/restructuredtext/.vscodeignore +share/goland/plugins/textmate/lib/bundles/restructuredtext/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/restructuredtext/language-configuration.json +share/goland/plugins/textmate/lib/bundles/restructuredtext/package.json +share/goland/plugins/textmate/lib/bundles/restructuredtext/package.nls.json +share/goland/plugins/textmate/lib/bundles/restructuredtext/syntaxes/rst.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/ruby/.vscodeignore +share/goland/plugins/textmate/lib/bundles/ruby/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/ruby/language-configuration.json +share/goland/plugins/textmate/lib/bundles/ruby/package.json +share/goland/plugins/textmate/lib/bundles/ruby/package.nls.json +share/goland/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/rust/.vscodeignore +share/goland/plugins/textmate/lib/bundles/rust/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/rust/language-configuration.json +share/goland/plugins/textmate/lib/bundles/rust/package.json +share/goland/plugins/textmate/lib/bundles/rust/package.nls.json +share/goland/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/scss/.vscodeignore +share/goland/plugins/textmate/lib/bundles/scss/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/scss/language-configuration.json +share/goland/plugins/textmate/lib/bundles/scss/package.json +share/goland/plugins/textmate/lib/bundles/scss/package.nls.json +share/goland/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/search-result/.vscodeignore +share/goland/plugins/textmate/lib/bundles/search-result/package.json +share/goland/plugins/textmate/lib/bundles/search-result/package.nls.json +share/goland/plugins/textmate/lib/bundles/search-result/README.md +share/goland/plugins/textmate/lib/bundles/search-result/syntaxes/searchResult.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/search-result/tsconfig.json +share/goland/plugins/textmate/lib/bundles/shaderlab/.vscodeignore +share/goland/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/shaderlab/language-configuration.json +share/goland/plugins/textmate/lib/bundles/shaderlab/package.json +share/goland/plugins/textmate/lib/bundles/shaderlab/package.nls.json +share/goland/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/shellscript/.vscodeignore +share/goland/plugins/textmate/lib/bundles/shellscript/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/shellscript/language-configuration.json +share/goland/plugins/textmate/lib/bundles/shellscript/package.json +share/goland/plugins/textmate/lib/bundles/shellscript/package.nls.json +share/goland/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/sql/.vscodeignore +share/goland/plugins/textmate/lib/bundles/sql/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/sql/language-configuration.json +share/goland/plugins/textmate/lib/bundles/sql/package.json +share/goland/plugins/textmate/lib/bundles/sql/package.nls.json +share/goland/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/swift/.vscodeignore +share/goland/plugins/textmate/lib/bundles/swift/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/swift/language-configuration.json +share/goland/plugins/textmate/lib/bundles/swift/LICENSE.md +share/goland/plugins/textmate/lib/bundles/swift/package.json +share/goland/plugins/textmate/lib/bundles/swift/package.nls.json +share/goland/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets +share/goland/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/terraform/language-configuration.json +share/goland/plugins/textmate/lib/bundles/terraform/LICENSE +share/goland/plugins/textmate/lib/bundles/terraform/package.json +share/goland/plugins/textmate/lib/bundles/terraform/README.md +share/goland/plugins/textmate/lib/bundles/terraform/snippets/terraform.json +share/goland/plugins/textmate/lib/bundles/terraform/syntaxes/terraform.tmGrammar.json +share/goland/plugins/textmate/lib/bundles/twig/LICENSE.md +share/goland/plugins/textmate/lib/bundles/twig/package.json +share/goland/plugins/textmate/lib/bundles/twig/README.md +share/goland/plugins/textmate/lib/bundles/twig/snippets/snippets.json +share/goland/plugins/textmate/lib/bundles/twig/src/extension.js +share/goland/plugins/textmate/lib/bundles/twig/src/hover/filters.json +share/goland/plugins/textmate/lib/bundles/twig/src/hover/functions.json +share/goland/plugins/textmate/lib/bundles/twig/src/hover/twig.json +share/goland/plugins/textmate/lib/bundles/twig/src/languages/twig.configuration.json +share/goland/plugins/textmate/lib/bundles/twig/src/snippets/snippets.json +share/goland/plugins/textmate/lib/bundles/twig/src/syntaxes/twig.tmLanguage +share/goland/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore +share/goland/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/package.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/package.nls.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.code-snippets +share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.js.injection.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.ts.injection.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md +share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/vb/.vscodeignore +share/goland/plugins/textmate/lib/bundles/vb/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/vb/language-configuration.json +share/goland/plugins/textmate/lib/bundles/vb/package.json +share/goland/plugins/textmate/lib/bundles/vb/package.nls.json +share/goland/plugins/textmate/lib/bundles/vb/snippets/vb.code-snippets +share/goland/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json +share/goland/plugins/textmate/lib/bundles/viml/grammars/viml.json +share/goland/plugins/textmate/lib/bundles/viml/LICENSE.txt +share/goland/plugins/textmate/lib/bundles/viml/package.json +share/goland/plugins/textmate/lib/bundles/xml/.vscodeignore +share/goland/plugins/textmate/lib/bundles/xml/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/xml/package.json +share/goland/plugins/textmate/lib/bundles/xml/package.nls.json +share/goland/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json +share/goland/plugins/textmate/lib/bundles/xml/xml.language-configuration.json +share/goland/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json +share/goland/plugins/textmate/lib/bundles/yaml/.vscodeignore +share/goland/plugins/textmate/lib/bundles/yaml/cgmanifest.json +share/goland/plugins/textmate/lib/bundles/yaml/language-configuration.json +share/goland/plugins/textmate/lib/bundles/yaml/package.json +share/goland/plugins/textmate/lib/bundles/yaml/package.nls.json +share/goland/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json +share/goland/plugins/textmate/lib/textmate.jar +share/goland/plugins/uml/lib/uml-support.jar +share/goland/plugins/vcs-git/lib/git4idea-rt.jar +share/goland/plugins/vcs-git/lib/vcs-git.jar +share/goland/plugins/vcs-github/lib/vcs-github.jar +share/goland/plugins/vcs-hg/lib/vcs-hg.jar +share/goland/plugins/webDeployment/lib/webDeployment.jar +share/goland/plugins/webpack/lib/webpack.jar +share/goland/plugins/xml-refactoring/lib/xml-refactoring.jar +share/goland/plugins/yaml/lib/yaml.jar +share/goland/product-info.json +@dir bin +@dir man/man1 +@dir man +@dir share/applications +@dir share/goland/bin/icons +@dir share/goland/bin +@dir share/goland/help +@dir share/goland/lib/cds +@dir share/goland/lib/jna/amd64 +@dir share/goland/lib/jna +@dir share/goland/lib +@dir share/goland/license +@dir share/goland/plugins/cloudConfig/lib +@dir share/goland/plugins/cloudConfig +@dir share/goland/plugins/clouds-docker-impl/lib +@dir share/goland/plugins/clouds-docker-impl +@dir share/goland/plugins/color-scheme-colorful-darcula/lib +@dir share/goland/plugins/color-scheme-colorful-darcula +@dir share/goland/plugins/color-scheme-monokai/lib +@dir share/goland/plugins/color-scheme-monokai +@dir share/goland/plugins/color-scheme-solarized-goland/lib +@dir share/goland/plugins/color-scheme-solarized-goland +@dir share/goland/plugins/completionMlRanking/lib +@dir share/goland/plugins/completionMlRanking +@dir share/goland/plugins/configurationScript/lib +@dir share/goland/plugins/configurationScript +@dir share/goland/plugins/copyright/lib +@dir share/goland/plugins/copyright +@dir share/goland/plugins/css-impl/lib +@dir share/goland/plugins/css-impl +@dir share/goland/plugins/cwm-plugin-projector/lib/projector +@dir share/goland/plugins/cwm-plugin-projector/lib +@dir share/goland/plugins/cwm-plugin-projector +@dir share/goland/plugins/DatabaseTools/lib +@dir share/goland/plugins/DatabaseTools +@dir share/goland/plugins/dev/lib +@dir share/goland/plugins/dev +@dir share/goland/plugins/dynamicPluginsTests-performanceTesting/lib +@dir share/goland/plugins/dynamicPluginsTests-performanceTesting +@dir share/goland/plugins/editorconfig/lib +@dir share/goland/plugins/editorconfig +@dir share/goland/plugins/emojipicker/lib +@dir share/goland/plugins/emojipicker +@dir share/goland/plugins/featuresTrainer/lib +@dir share/goland/plugins/featuresTrainer +@dir share/goland/plugins/fileWatcher/lib +@dir share/goland/plugins/fileWatcher +@dir share/goland/plugins/gateway-plugin/lib/gateway-standalone +@dir share/goland/plugins/gateway-plugin/lib +@dir share/goland/plugins/gateway-plugin/resources +@dir share/goland/plugins/gateway-plugin +@dir share/goland/plugins/gateway-terminal/lib +@dir share/goland/plugins/gateway-terminal +@dir share/goland/plugins/go-ide/lib +@dir share/goland/plugins/go-ide +@dir share/goland/plugins/go-plugin/lib/src +@dir share/goland/plugins/go-plugin/lib +@dir share/goland/plugins/go-plugin/license +@dir share/goland/plugins/go-plugin +@dir share/goland/plugins/go-sharedIndexes-bundled/gosdk +@dir share/goland/plugins/go-sharedIndexes-bundled/lib +@dir share/goland/plugins/go-sharedIndexes-bundled +@dir share/goland/plugins/go-template/lib +@dir share/goland/plugins/go-template +@dir share/goland/plugins/grazie/lib +@dir share/goland/plugins/grazie +@dir share/goland/plugins/grid-core-impl/lib +@dir share/goland/plugins/grid-core-impl +@dir share/goland/plugins/grid-impl/lib +@dir share/goland/plugins/grid-impl +@dir share/goland/plugins/grpc/lib +@dir share/goland/plugins/grpc +@dir share/goland/plugins/html-tools/lib +@dir share/goland/plugins/html-tools +@dir share/goland/plugins/indexing-shared/lib +@dir share/goland/plugins/indexing-shared +@dir share/goland/plugins/indexing-shared-ultimate-plugin-bundled/lib +@dir share/goland/plugins/indexing-shared-ultimate-plugin-bundled +@dir share/goland/plugins/javascript-debugger/lib +@dir share/goland/plugins/javascript-debugger +@dir share/goland/plugins/javascript-impl/helpers/base-test-reporter +@dir share/goland/plugins/javascript-impl/helpers/buildTools/grunt/lib +@dir share/goland/plugins/javascript-impl/helpers/buildTools/grunt/tasks +@dir share/goland/plugins/javascript-impl/helpers/buildTools/grunt +@dir share/goland/plugins/javascript-impl/helpers/buildTools +@dir share/goland/plugins/javascript-impl/helpers/jest-intellij/lib +@dir share/goland/plugins/javascript-impl/helpers/jest-intellij +@dir share/goland/plugins/javascript-impl/helpers/node-core-modules +@dir share/goland/plugins/javascript-impl/helpers/nodejs/library/yarn +@dir share/goland/plugins/javascript-impl/helpers/nodejs/library +@dir share/goland/plugins/javascript-impl/helpers/nodejs +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/bin +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/bin +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher/test +@dir share/goland/plugins/javascript-impl/helpers/package-version-range-matcher +@dir share/goland/plugins/javascript-impl/helpers/protractor-intellij/lib +@dir share/goland/plugins/javascript-impl/helpers/protractor-intellij +@dir share/goland/plugins/javascript-impl/helpers/vitest-intellij/node_modules +@dir share/goland/plugins/javascript-impl/helpers/vitest-intellij +@dir share/goland/plugins/javascript-impl/helpers +@dir share/goland/plugins/javascript-impl/js +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl/external +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl/flow +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl/typescript +@dir share/goland/plugins/javascript-impl/jsLanguageServicesImpl +@dir share/goland/plugins/javascript-impl/languageService/eslint/bin +@dir share/goland/plugins/javascript-impl/languageService/eslint/src/typings +@dir share/goland/plugins/javascript-impl/languageService/eslint/src +@dir share/goland/plugins/javascript-impl/languageService/eslint +@dir share/goland/plugins/javascript-impl/languageService +@dir share/goland/plugins/javascript-impl/lib +@dir share/goland/plugins/javascript-impl +@dir share/goland/plugins/javascript-intentions/lib +@dir share/goland/plugins/javascript-intentions +@dir share/goland/plugins/makefile/lib +@dir share/goland/plugins/makefile +@dir share/goland/plugins/markdown/lib +@dir share/goland/plugins/markdown +@dir share/goland/plugins/microservices-ui/lib +@dir share/goland/plugins/microservices-ui +@dir share/goland/plugins/platform-images/lib +@dir share/goland/plugins/platform-images +@dir share/goland/plugins/platform-langInjection/lib +@dir share/goland/plugins/platform-langInjection +@dir share/goland/plugins/protoeditor/lib +@dir share/goland/plugins/protoeditor +@dir share/goland/plugins/qodana/lib +@dir share/goland/plugins/qodana +@dir share/goland/plugins/remoteRun/lib +@dir share/goland/plugins/remoteRun +@dir share/goland/plugins/restClient/lib +@dir share/goland/plugins/restClient +@dir share/goland/plugins/searchEverywhereMl/lib +@dir share/goland/plugins/searchEverywhereMl +@dir share/goland/plugins/settingsSync/lib +@dir share/goland/plugins/settingsSync +@dir share/goland/plugins/sh/lib +@dir share/goland/plugins/sh +@dir share/goland/plugins/space/lib +@dir share/goland/plugins/space +@dir share/goland/plugins/swagger/lib +@dir share/goland/plugins/swagger +@dir share/goland/plugins/terminal/fish +@dir share/goland/plugins/terminal/lib +@dir share/goland/plugins/terminal +@dir share/goland/plugins/textmate/lib/bundles/bat/snippets +@dir share/goland/plugins/textmate/lib/bundles/bat/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/bat +@dir share/goland/plugins/textmate/lib/bundles/clojure/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/clojure +@dir share/goland/plugins/textmate/lib/bundles/coffeescript/snippets +@dir share/goland/plugins/textmate/lib/bundles/coffeescript/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/coffeescript +@dir share/goland/plugins/textmate/lib/bundles/cpp/snippets +@dir share/goland/plugins/textmate/lib/bundles/cpp/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/cpp +@dir share/goland/plugins/textmate/lib/bundles/csharp/snippets +@dir share/goland/plugins/textmate/lib/bundles/csharp/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/csharp +@dir share/goland/plugins/textmate/lib/bundles/css/.vscode +@dir share/goland/plugins/textmate/lib/bundles/css/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/css +@dir share/goland/plugins/textmate/lib/bundles/dart/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/dart +@dir share/goland/plugins/textmate/lib/bundles/diff/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/diff +@dir share/goland/plugins/textmate/lib/bundles/docker/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/docker +@dir share/goland/plugins/textmate/lib/bundles/erlang/grammar +@dir share/goland/plugins/textmate/lib/bundles/erlang +@dir share/goland/plugins/textmate/lib/bundles/fsharp/snippets +@dir share/goland/plugins/textmate/lib/bundles/fsharp/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/fsharp +@dir share/goland/plugins/textmate/lib/bundles/git-base/languages +@dir share/goland/plugins/textmate/lib/bundles/git-base/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/git-base +@dir share/goland/plugins/textmate/lib/bundles/go/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/go +@dir share/goland/plugins/textmate/lib/bundles/groovy/snippets +@dir share/goland/plugins/textmate/lib/bundles/groovy/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/groovy +@dir share/goland/plugins/textmate/lib/bundles/handlebars/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/handlebars +@dir share/goland/plugins/textmate/lib/bundles/hlsl/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/hlsl +@dir share/goland/plugins/textmate/lib/bundles/html/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/html +@dir share/goland/plugins/textmate/lib/bundles/ini/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/ini +@dir share/goland/plugins/textmate/lib/bundles/java/snippets +@dir share/goland/plugins/textmate/lib/bundles/java/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/java +@dir share/goland/plugins/textmate/lib/bundles/javascript/snippets +@dir share/goland/plugins/textmate/lib/bundles/javascript/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/javascript +@dir share/goland/plugins/textmate/lib/bundles/json/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/json +@dir share/goland/plugins/textmate/lib/bundles/jsp/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/jsp +@dir share/goland/plugins/textmate/lib/bundles/julia/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/julia +@dir share/goland/plugins/textmate/lib/bundles/kotlin/snippets +@dir share/goland/plugins/textmate/lib/bundles/kotlin/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/kotlin +@dir share/goland/plugins/textmate/lib/bundles/latex/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/latex +@dir share/goland/plugins/textmate/lib/bundles/less/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/less +@dir share/goland/plugins/textmate/lib/bundles/log/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/log +@dir share/goland/plugins/textmate/lib/bundles/lua/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/lua +@dir share/goland/plugins/textmate/lib/bundles/make/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/make +@dir share/goland/plugins/textmate/lib/bundles/markdown-basics/snippets +@dir share/goland/plugins/textmate/lib/bundles/markdown-basics/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/markdown-basics +@dir share/goland/plugins/textmate/lib/bundles/markdown-math/notebook +@dir share/goland/plugins/textmate/lib/bundles/markdown-math/preview-styles +@dir share/goland/plugins/textmate/lib/bundles/markdown-math/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/markdown-math +@dir share/goland/plugins/textmate/lib/bundles/mdx/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/mdx +@dir share/goland/plugins/textmate/lib/bundles/objective-c/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/objective-c +@dir share/goland/plugins/textmate/lib/bundles/perl/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/perl +@dir share/goland/plugins/textmate/lib/bundles/php/.vscode +@dir share/goland/plugins/textmate/lib/bundles/php/snippets +@dir share/goland/plugins/textmate/lib/bundles/php/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/php +@dir share/goland/plugins/textmate/lib/bundles/powershell/snippets +@dir share/goland/plugins/textmate/lib/bundles/powershell/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/powershell +@dir share/goland/plugins/textmate/lib/bundles/pug/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/pug +@dir share/goland/plugins/textmate/lib/bundles/python/.vscode +@dir share/goland/plugins/textmate/lib/bundles/python/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/python +@dir share/goland/plugins/textmate/lib/bundles/r/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/r +@dir share/goland/plugins/textmate/lib/bundles/razor/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/razor +@dir share/goland/plugins/textmate/lib/bundles/restructuredtext/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/restructuredtext +@dir share/goland/plugins/textmate/lib/bundles/ruby/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/ruby +@dir share/goland/plugins/textmate/lib/bundles/rust/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/rust +@dir share/goland/plugins/textmate/lib/bundles/scss/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/scss +@dir share/goland/plugins/textmate/lib/bundles/search-result/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/search-result +@dir share/goland/plugins/textmate/lib/bundles/shaderlab/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/shaderlab +@dir share/goland/plugins/textmate/lib/bundles/shellscript/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/shellscript +@dir share/goland/plugins/textmate/lib/bundles/sql/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/sql +@dir share/goland/plugins/textmate/lib/bundles/swift/snippets +@dir share/goland/plugins/textmate/lib/bundles/swift/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/swift +@dir share/goland/plugins/textmate/lib/bundles/terraform/snippets +@dir share/goland/plugins/textmate/lib/bundles/terraform/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/terraform +@dir share/goland/plugins/textmate/lib/bundles/twig/snippets +@dir share/goland/plugins/textmate/lib/bundles/twig/src/hover +@dir share/goland/plugins/textmate/lib/bundles/twig/src/languages +@dir share/goland/plugins/textmate/lib/bundles/twig/src/snippets +@dir share/goland/plugins/textmate/lib/bundles/twig/src/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/twig/src +@dir share/goland/plugins/textmate/lib/bundles/twig +@dir share/goland/plugins/textmate/lib/bundles/typescript-basics/snippets +@dir share/goland/plugins/textmate/lib/bundles/typescript-basics/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/typescript-basics +@dir share/goland/plugins/textmate/lib/bundles/vb/snippets +@dir share/goland/plugins/textmate/lib/bundles/vb/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/vb +@dir share/goland/plugins/textmate/lib/bundles/viml/grammars +@dir share/goland/plugins/textmate/lib/bundles/viml +@dir share/goland/plugins/textmate/lib/bundles/xml/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/xml +@dir share/goland/plugins/textmate/lib/bundles/yaml/syntaxes +@dir share/goland/plugins/textmate/lib/bundles/yaml +@dir share/goland/plugins/textmate/lib/bundles +@dir share/goland/plugins/textmate/lib +@dir share/goland/plugins/textmate +@dir share/goland/plugins/uml/lib +@dir share/goland/plugins/uml +@dir share/goland/plugins/vcs-git/lib +@dir share/goland/plugins/vcs-git +@dir share/goland/plugins/vcs-github/lib +@dir share/goland/plugins/vcs-github +@dir share/goland/plugins/vcs-hg/lib +@dir share/goland/plugins/vcs-hg +@dir share/goland/plugins/webDeployment/lib +@dir share/goland/plugins/webDeployment +@dir share/goland/plugins/webpack/lib +@dir share/goland/plugins/webpack +@dir share/goland/plugins/xml-refactoring/lib +@dir share/goland/plugins/xml-refactoring +@dir share/goland/plugins/yaml/lib +@dir share/goland/plugins/yaml +@dir share/goland/plugins +@dir share/goland diff --git a/devel/apache-ant/Makefile b/devel/apache-ant/Makefile index aff5aac7..634e4b1b 100644 --- a/devel/apache-ant/Makefile +++ b/devel/apache-ant/Makefile @@ -2,7 +2,7 @@ # $Id$ # PORTNAME= apache-ant -PORTVERSION= 1.9.7 +PORTVERSION= 1.10.6 CATEGORIES= devel java MASTER_SITES= APACHE/ant/binaries/:bin LOCAL/hq:man DISTFILES= ${ANT_DISTFILE}:bin \ diff --git a/devel/apache-ant/distinfo b/devel/apache-ant/distinfo index f644a71e..2d3c940b 100644 --- a/devel/apache-ant/distinfo +++ b/devel/apache-ant/distinfo @@ -1,4 +1,5 @@ -SHA256 (apache-ant-1.9.7-bin.tar.bz2) = be2ff3026cc655dc002bbcce100bd6724d448c63f702aa82b6d9899b22db7808 -SIZE (apache-ant-1.9.7-bin.tar.bz2) = 4392108 +TIMESTAMP = 1679732792 +SHA256 (apache-ant-1.10.6-bin.tar.bz2) = 45c93201dcb0b90622d7c712aa828fc2eeea5819f6aad2b52d6850abcd60636a +SIZE (apache-ant-1.10.6-bin.tar.bz2) = 5375076 SHA256 (apache-ant-manpage-20030908.tgz) = 721981f64fae3577c04c527232edab9bfa0755af08319049cec206584dc8830c SIZE (apache-ant-manpage-20030908.tgz) = 9735 diff --git a/devel/apache-ant/pkg-plist b/devel/apache-ant/pkg-plist index af65b7a8..f5de8d38 100644 --- a/devel/apache-ant/pkg-plist +++ b/devel/apache-ant/pkg-plist @@ -1,7 +1,10 @@ bin/ant +man/man1/ant.1.gz +man/man5/build.xml.5.gz share/java/apache-ant/bin/antRun share/java/apache-ant/etc/ant-bootstrap.jar share/java/apache-ant/etc/changelog.xsl +share/java/apache-ant/etc/checkstyle/checkstyle-frames-sortby-check.xsl share/java/apache-ant/etc/checkstyle/checkstyle-frames.xsl share/java/apache-ant/etc/checkstyle/checkstyle-text.xsl share/java/apache-ant/etc/checkstyle/checkstyle-xdoc.xsl @@ -15,7 +18,6 @@ share/java/apache-ant/etc/log.xsl share/java/apache-ant/etc/maudit-frames.xsl share/java/apache-ant/etc/mmetrics-frames.xsl share/java/apache-ant/etc/tagdiff.xsl -share/java/apache-ant/lib/README share/java/apache-ant/lib/ant-antlr.jar share/java/apache-ant/lib/ant-antlr.pom share/java/apache-ant/lib/ant-apache-bcel.jar @@ -36,6 +38,8 @@ share/java/apache-ant/lib/ant-commons-logging.jar share/java/apache-ant/lib/ant-commons-logging.pom share/java/apache-ant/lib/ant-commons-net.jar share/java/apache-ant/lib/ant-commons-net.pom +share/java/apache-ant/lib/ant-imageio.jar +share/java/apache-ant/lib/ant-imageio.pom share/java/apache-ant/lib/ant-jai.jar share/java/apache-ant/lib/ant-jai.pom share/java/apache-ant/lib/ant-javamail.jar @@ -50,6 +54,8 @@ share/java/apache-ant/lib/ant-junit.jar share/java/apache-ant/lib/ant-junit.pom share/java/apache-ant/lib/ant-junit4.jar share/java/apache-ant/lib/ant-junit4.pom +share/java/apache-ant/lib/ant-junitlauncher.jar +share/java/apache-ant/lib/ant-junitlauncher.pom share/java/apache-ant/lib/ant-launcher.jar share/java/apache-ant/lib/ant-launcher.pom share/java/apache-ant/lib/ant-netrexx.jar @@ -59,11 +65,12 @@ share/java/apache-ant/lib/ant-swing.jar share/java/apache-ant/lib/ant-swing.pom share/java/apache-ant/lib/ant-testutil.jar share/java/apache-ant/lib/ant-testutil.pom +share/java/apache-ant/lib/ant-xz.jar +share/java/apache-ant/lib/ant-xz.pom share/java/apache-ant/lib/ant.jar share/java/apache-ant/lib/ant.pom share/java/apache-ant/lib/libraries.properties -man/man1/ant.1.gz -man/man5/build.xml.5.gz +share/java/apache-ant/lib/README @dir share/java/apache-ant/bin @dir share/java/apache-ant/etc/checkstyle @dir share/java/apache-ant/etc diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index 50e09e4d..387d73e6 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -3,7 +3,7 @@ # $URL: file:///usr2/svn/ports5/devel/autoconf/Makefile $ # PORTNAME= autoconf -PORTVERSION= 2.69 +PORTVERSION= 2.71 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -17,7 +17,7 @@ BUILD_DEPENDS+= ${RUN_DEPENDS} BUILD_DEPENDS+= help2man:devel/help2man -USES+= tar:xz perl5 +USES+= tar:xz perl5 gmake GNU_CONFIGURE= yes USE_GMAKE= yes @@ -25,20 +25,10 @@ CONFIGURE_ENV+= CONFIG_SHELL=${SH} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS+= --infodir=${PREFIX}/info CONFIGURE_ARGS+= --mandir=${PREFIX}/man -#CONFIGURE_ARGS+= --without-lispdir +CONFIGURE_ARGS+= --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-ziggi-freebsd${OSREL} INFO+= autoconf -MAN1+= autoconf.1 -MAN1+= autoheader.1 -MAN1+= autom4te.1 -MAN1+= autoreconf.1 -MAN1+= autoscan.1 -MAN1+= autoupdate.1 -MAN1+= config.guess.1 -MAN1+= config.sub.1 -MAN1+= ifnames.1 - .include #EOF diff --git a/devel/autoconf/distinfo b/devel/autoconf/distinfo index 6daea217..adb7f1c3 100644 --- a/devel/autoconf/distinfo +++ b/devel/autoconf/distinfo @@ -1,2 +1,3 @@ -SHA256 (gnu/autoconf-2.69.tar.xz) = 64ebcec9f8ac5b2487125a86a7760d2591ac9e1d3dbd59489633f9de62a57684 -SIZE (gnu/autoconf-2.69.tar.xz) = 1214744 +TIMESTAMP = 1679733236 +SHA256 (gnu/autoconf-2.71.tar.xz) = f14c83cfebcc9427f2c3cea7258bd90df972d92eb26752da4ddad81c87a0faa4 +SIZE (gnu/autoconf-2.71.tar.xz) = 1292296 diff --git a/devel/autoconf/files/patch-Makefile.in b/devel/autoconf/files/patch-Makefile.in new file mode 100644 index 00000000..ec90ef28 --- /dev/null +++ b/devel/autoconf/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2021-01-28 21:06:02 UTC ++++ Makefile.in +@@ -311,7 +311,7 @@ am__dirstamp = $(am__leading_dot)dirstamp + am__v_texidevnull_0 = > /dev/null + am__v_texidevnull_1 = + am__dirstamp = $(am__leading_dot)dirstamp +-INFO_DEPS = $(srcdir)/doc/autoconf.info $(srcdir)/doc/standards.info ++INFO_DEPS = $(srcdir)/doc/autoconf.info + am__TEXINFO_TEX_DIR = $(srcdir)/build-aux + DVIS = doc/autoconf.dvi doc/standards.dvi + PDFS = doc/autoconf.pdf doc/standards.pdf diff --git a/devel/autoconf/files/patch-bin-autoscan.in b/devel/autoconf/files/patch-bin-autoscan.in deleted file mode 100644 index a55345cc..00000000 --- a/devel/autoconf/files/patch-bin-autoscan.in +++ /dev/null @@ -1,11 +0,0 @@ ---- bin/autoscan.in.orig 2012-04-25 02:37:26 UTC -+++ bin/autoscan.in -@@ -358,7 +358,7 @@ sub scan_sh_file ($) - { - # Strip out comments and variable references. - s/#.*//; -- s/\${[^\}]*}//g; -+ s/\$\{[^\}]*}//g; - s/@[^@]*@//g; - - # Tokens in the code. diff --git a/devel/autoconf/files/patch-bin_autoreconf.in b/devel/autoconf/files/patch-bin_autoreconf.in new file mode 100644 index 00000000..6d94c077 --- /dev/null +++ b/devel/autoconf/files/patch-bin_autoreconf.in @@ -0,0 +1,10 @@ +--- bin/autoreconf.in.orig 2012-04-24 22:00:28 UTC ++++ bin/autoreconf.in +@@ -692,6 +692,7 @@ parse_args; + + # Autoreconf all the given configure.ac. Unless `--no-recursive' is passed, + # AC_CONFIG_SUBDIRS will be traversed in &autoreconf_current_directory. ++$ENV{'AUTOCONF'} = $autoconf; + $ENV{'AUTOM4TE'} = $autom4te; + for my $directory (@ARGV) + { diff --git a/devel/autoconf/files/patch-bison b/devel/autoconf/files/patch-bison deleted file mode 100644 index b26d6079..00000000 --- a/devel/autoconf/files/patch-bison +++ /dev/null @@ -1,53 +0,0 @@ -From 42761668c0300afa7f8bf5ba736458a818cd5d15 Mon Sep 17 00:00:00 2001 -From: Akim Demaille -Date: Tue, 19 Mar 2013 11:19:17 -0700 -Subject: AC_PROG_YACC: don't force Bison to warn against its own features - -When invoked with -y/--yacc, Bison warns when its extensions over -POSIX Yacc are used. Yet many packages requiring GNU Bison use -Autoconf/Automake's Yacc support, which passes -y to Bison. It -turns out that passing '-o y.tab.c' has exactly the desired -effect: generating not only y.tab.c but also y.tab.h with -d and -y.output with -v. See: -http://lists.gnu.org/archive/html/bison-patches/2013-02/msg00100.html -* lib/autoconf/programs.m4 (AC_PROG_YACC): Use bison -o y.tab.c. -* NEWS, doc/autoconf.texi: Document this change. ---- - NEWS | 4 ++++ - doc/autoconf.texi | 2 +- - lib/autoconf/programs.m4 | 4 ++-- - 3 files changed, 7 insertions(+), 3 deletions(-) - -diff --git a/doc/autoconf.texi b/doc/autoconf.texi -index c54c5b3..f895e47 100644 ---- doc/autoconf.texi -+++ doc/autoconf.texi -@@ -4222,7 +4222,7 @@ and is cached in the @code{ac_cv_path_SED} variable. - @ovindex YACC - @caindex prog_YACC - If @code{bison} is found, set output variable @code{YACC} to @samp{bison ---y}. Otherwise, if @code{byacc} is found, set @code{YACC} to -+-o y.tab.c}. Otherwise, if @code{byacc} is found, set @code{YACC} to - @samp{byacc}. Otherwise set @code{YACC} to @samp{yacc}. - The result of this test can be influenced by setting the variable - @code{YACC} or the cache variable @code{ac_cv_prog_YACC}. -diff --git a/lib/autoconf/programs.m4 b/lib/autoconf/programs.m4 -index f7af8b5..2057e78 100644 ---- lib/autoconf/programs.m4 -+++ lib/autoconf/programs.m4 -@@ -892,10 +892,10 @@ AN_PROGRAM([yacc], [AC_PROG_YACC]) - AN_PROGRAM([byacc], [AC_PROG_YACC]) - AN_PROGRAM([bison], [AC_PROG_YACC]) - AC_DEFUN([AC_PROG_YACC], --[AC_CHECK_PROGS(YACC, 'bison -y' byacc, yacc)dnl -+[AC_CHECK_PROGS(YACC, 'bison -o y.tab.c' byacc, yacc)dnl - AC_ARG_VAR(YACC, - [The `Yet Another Compiler Compiler' implementation to use. Defaults to --the first program found out of: `bison -y', `byacc', `yacc'.])dnl -+the first program found out of: `bison -o y.tab.c', `byacc', `yacc'.])dnl - AC_ARG_VAR(YFLAGS, - [The list of arguments that will be passed by default to $YACC. This script - will default YFLAGS to the empty string to avoid a default value of `-d' given --- -cgit v1.0-41-gc330 - diff --git a/devel/autoconf/files/patch-doc-Makefile.in b/devel/autoconf/files/patch-doc-Makefile.in deleted file mode 100644 index e0dad60b..00000000 --- a/devel/autoconf/files/patch-doc-Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ ---- doc/Makefile.in.orig 2012-04-25 02:40:26 UTC -+++ doc/Makefile.in -@@ -65,13 +65,13 @@ CONFIG_CLEAN_FILES = - CONFIG_CLEAN_VPATH_FILES = - SOURCES = - DIST_SOURCES = --INFO_DEPS = $(srcdir)/autoconf.info $(srcdir)/standards.info -+INFO_DEPS = $(srcdir)/autoconf.info - am__TEXINFO_TEX_DIR = $(srcdir)/../build-aux - DVIS = autoconf.dvi standards.dvi - PDFS = autoconf.pdf standards.pdf - PSS = autoconf.ps standards.ps - HTMLS = autoconf.html standards.html --TEXINFOS = autoconf.texi standards.texi -+TEXINFOS = autoconf.texi - TEXI2DVI = texi2dvi - TEXI2PDF = $(TEXI2DVI) --pdf --batch - MAKEINFOHTML = $(MAKEINFO) --html diff --git a/devel/autoconf/files/patch-doc_autoconf.texi b/devel/autoconf/files/patch-doc_autoconf.texi deleted file mode 100644 index fc6059d9..00000000 --- a/devel/autoconf/files/patch-doc_autoconf.texi +++ /dev/null @@ -1,53 +0,0 @@ ---- doc/autoconf.texi.orig 2012-04-25 02:14:19 UTC -+++ doc/autoconf.texi -@@ -15,7 +15,7 @@ - @c The ARG is an optional argument. To be used for macro arguments in - @c their documentation (@defmac). - @macro ovar{varname} --@r{[}@var{\varname\}@r{]}@c -+@r{[}@var{\varname\}@r{]} - @end macro - - @c @dvar(ARG, DEFAULT) -@@ -23,7 +23,7 @@ - @c The ARG is an optional argument, defaulting to DEFAULT. To be used - @c for macro arguments in their documentation (@defmac). - @macro dvar{varname, default} --@r{[}@var{\varname\} = @samp{\default\}@r{]}@c -+@r{[}@var{\varname\} = @samp{\default\}@r{]} - @end macro - - @c Handling the indexes with Texinfo yields several different problems. -@@ -217,31 +217,11 @@ entitled ``GNU Free Documentation Licens - - - --@dircategory Software development -+@dircategory Programming & development tools - @direntry - * Autoconf: (autoconf). Create source code configuration scripts. - @end direntry - --@dircategory Individual utilities --@direntry --* autoscan: (autoconf)autoscan Invocation. -- Semi-automatic @file{configure.ac} writing --* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source. --* autoconf-invocation: (autoconf)autoconf Invocation. -- How to create configuration scripts --* autoreconf: (autoconf)autoreconf Invocation. -- Remaking multiple @command{configure} scripts --* autoheader: (autoconf)autoheader Invocation. -- How to create configuration templates --* autom4te: (autoconf)autom4te Invocation. -- The Autoconf executables backbone --* configure: (autoconf)configure Invocation. Configuring a package. --* autoupdate: (autoconf)autoupdate Invocation. -- Automatic update of @file{configure.ac} --* config.status: (autoconf)config.status Invocation. Recreating configurations. --* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite. --@end direntry -- - @titlepage - @title Autoconf - @subtitle Creating Automatic Configuration Scripts diff --git a/devel/autoconf/pkg-plist b/devel/autoconf/pkg-plist index cb18d0ca..fd5f4567 100644 --- a/devel/autoconf/pkg-plist +++ b/devel/autoconf/pkg-plist @@ -11,8 +11,6 @@ man/man1/autom4te.1.gz man/man1/autoreconf.1.gz man/man1/autoscan.1.gz man/man1/autoupdate.1.gz -man/man1/config.guess.1.gz -man/man1/config.sub.1.gz man/man1/ifnames.1.gz share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f @@ -33,11 +31,13 @@ share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 +share/autoconf/autoconf/trailer.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/Autom4te/C4che.pm share/autoconf/Autom4te/ChannelDefs.pm share/autoconf/Autom4te/Channels.pm +share/autoconf/Autom4te/Config.pm share/autoconf/Autom4te/Configure_ac.pm share/autoconf/Autom4te/FileUtils.pm share/autoconf/Autom4te/General.pm @@ -49,6 +49,9 @@ share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/autotest/specific.m4 +share/autoconf/build-aux/config.guess +share/autoconf/build-aux/config.sub +share/autoconf/build-aux/install-sh share/autoconf/INSTALL share/autoconf/m4sugar/foreach.m4 share/autoconf/m4sugar/m4sh.m4 @@ -56,11 +59,12 @@ share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 +share/info/autoconf.info +share/info/dir @dir share/autoconf/autoconf @dir share/autoconf/Autom4te @dir share/autoconf/autoscan @dir share/autoconf/autotest +@dir share/autoconf/build-aux @dir share/autoconf/m4sugar @dir share/autoconf -@dir share/emacs/site-lisp -@dir share/emacs diff --git a/java/jetbrains-pty4j/Makefile b/java/jetbrains-pty4j/Makefile new file mode 100644 index 00000000..110f5055 --- /dev/null +++ b/java/jetbrains-pty4j/Makefile @@ -0,0 +1,50 @@ +PORTNAME= pty4j +PORTVERSION= 0.12.10 +CATEGORIES= devel java +PKGNAMEPREFIX= jetbrains- +DIST_SUBDIR= jetbrains + +MAINTAINER= dmitry.wagin@ya.ru +COMMENT= Pty4J's native library +WWW= https://github.com/JetBrains/pty4j + +USES= gmake + +USE_GITHUB= yes +GH_ACCOUNT= JetBrains +GH_PROJECT= pty4j +GH_TAGNAME= aa7f15307744d5d33a44bd72b42513327c879fd3 + +.include + +# The directory we need to install Pty4J's native library in depends +# on the install target's architecture. We rebuild libpty.so instead +# of using one of the bundled ones which are FreeBSD 10.x only. +.if ${ARCH} == "amd64" +PTY4J_ARCH= x86-64 +.elif ${ARCH} == "i386" +PTY4J_ARCH= x86 +.else +PTY4J_ARCH= +.endif + +.if ${PTY4J_ARCH} != "" +# Despite what the name might suggest using the linux_x86_64 target +# will always build libpty.so for the native platform. +BUILD_WRKSRC= ${WRKSRC}/native +MAKEFILE= Makefile_freebsd +ALL_TARGET= linux_x86_64 +PLIST_FILES+= lib/pty4j/freebsd/${PTY4J_ARCH}/libpty.so +.else +# If native Pty4J support is missing. +NO_BUILD= yes +.endif + +do-install: +.if ${PTY4J_ARCH} != "" + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/pty4j/freebsd/${PTY4J_ARCH} +# See above why we always use freebsd/x86-64/ here + ${INSTALL_LIB} ${WRKSRC}/os/freebsd/x86-64/libpty.so ${STAGEDIR}${PREFIX}/lib/pty4j/freebsd/${PTY4J_ARCH}/ +.endif + +.include diff --git a/java/jetbrains-pty4j/distinfo b/java/jetbrains-pty4j/distinfo new file mode 100644 index 00000000..97ca3c4b --- /dev/null +++ b/java/jetbrains-pty4j/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1670074422 +SHA256 (jetbrains/JetBrains-pty4j-0.12.10-aa7f15307744d5d33a44bd72b42513327c879fd3_GH0.tar.gz) = 386a5057f4d5b33139f83bd8ed57a703714fa71c649ab750f8a9839b5133c306 +SIZE (jetbrains/JetBrains-pty4j-0.12.10-aa7f15307744d5d33a44bd72b42513327c879fd3_GH0.tar.gz) = 1586412 diff --git a/java/jetbrains-pty4j/pkg-descr b/java/jetbrains-pty4j/pkg-descr new file mode 100644 index 00000000..c3584fd8 --- /dev/null +++ b/java/jetbrains-pty4j/pkg-descr @@ -0,0 +1 @@ +Pty4J - Pseudo terminal(PTY) implementation in Java. diff --git a/java/jna/Makefile b/java/jna/Makefile new file mode 100644 index 00000000..a27d5a64 --- /dev/null +++ b/java/jna/Makefile @@ -0,0 +1,41 @@ +PORTNAME= jna +PORTVERSION= 5.13.0 +CATEGORIES= devel java + +MAINTAINER= ports@markdixon.name +COMMENT= Java access to native shared libraries +WWW= https://github.com/twall/jna + +BROKEN_armv6= fails to compile: build.xml: compilation failed +BROKEN_armv7= fails to compile: build.xml: compilation failed + +BUILD_DEPENDS= makeinfo:system/texinfo + +USES= autoreconf:build gmake libtool +USE_ANT= yes +USE_JAVA= yes +JAVA_VERSION= 11+ +MAKE_ARGS= -DCC="${CC}" -DLD="${LD}" +MAKE_ENV= ANT_OPTS=-Drelease -DARCH=${ANT_ARCH} + +USE_GITHUB= yes +GH_ACCOUNT= java-native-access + +PORTDOCS= javadoc platform-${PORTVERSION}-javadoc.jar +PLIST_FILES= %%JAVAJARDIR%%/jna-platform.jar %%JAVAJARDIR%%/jna.jar + +ALL_TARGET= native jar + +ANT_ARCH= ${ARCH:S/amd64/x86-64/:S/i386/x86/:S/powerpc64/ppc64/} + +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ + ${WRKSRC}/native/Makefile + +do-install: + ${INSTALL_DATA} ${WRKSRC}/build/freebsd-${ANT_ARCH}.jar \ + ${STAGEDIR}${JAVAJARDIR}/jna-platform.jar + ${INSTALL_DATA} ${WRKSRC}/build/jna.jar \ + ${STAGEDIR}${JAVAJARDIR}/jna.jar + +.include diff --git a/java/jna/distinfo b/java/jna/distinfo new file mode 100644 index 00000000..16002661 --- /dev/null +++ b/java/jna/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1679732608 +SHA256 (java-native-access-jna-5.13.0_GH0.tar.gz) = 526bff8ffcbc2067a7403f55b01ad8d7a781c098abca79c4ea6c9e80198bb5fd +SIZE (java-native-access-jna-5.13.0_GH0.tar.gz) = 116027625 diff --git a/java/jna/files/patch-build.xml b/java/jna/files/patch-build.xml new file mode 100644 index 00000000..26b41ff0 --- /dev/null +++ b/java/jna/files/patch-build.xml @@ -0,0 +1,19 @@ +--- build.xml.orig 2016-03-16 14:37:28 UTC ++++ build.xml +@@ -99,7 +99,7 @@ + + + +- ++ + + + +@@ -1084,7 +1084,6 @@ osname=macosx;processor=x86;processor=x8 + JNA API Documentation +
${header}
+ ${footer} +- + + + diff --git a/java/jna/files/patch-native_Makefile b/java/jna/files/patch-native_Makefile new file mode 100644 index 00000000..4f1fa46e --- /dev/null +++ b/java/jna/files/patch-native_Makefile @@ -0,0 +1,38 @@ +--- native/Makefile.orig 2021-02-08 18:49:25.000000000 +0000 ++++ native/Makefile 2021-03-06 13:25:34.083392000 +0000 +@@ -39,6 +39,8 @@ + # protection simply by defining HAVE_PROTECTION. This option has been only + # been enabled for those platforms on which it has been tested successfully. + ++unexport LDFLAGS ++ + OS=$(shell uname | sed -e 's/CYGWIN.*/win32/g' \ + -e 's/MINGW32.*/win32/g' \ + -e 's/SunOS.*/solaris/g' \ +@@ -291,8 +293,11 @@ + ifneq (,$(findstring bsd,$(OS))) + ARCH=$(shell uname -m | sed 's/i.86/i386/g') + PCFLAGS+=-fPIC +-CINCLUDES+=-I/usr/X11R6/include ++CINCLUDES+=-I%%LOCALBASE%%/include + LDFLAGS=-o $@ -shared ++ifeq ($(ARCH),i386) ++LDFLAGS+=-Wl,-z,notext ++endif + CDEFINES+=-DHAVE_PROTECTION -DFFI_MMAP_EXEC_WRIT -DUSE_DEAFULT_LIBNAME_ENCODING + endif + +@@ -356,11 +361,11 @@ + GCC_MAJOR_VERSION = $(shell gcc -dumpversion | cut -f 1 -d '.') + ifneq ($(GCC_MAJOR_VERSION),4) + ifneq ($(GCC_MAJOR_VERSION),3) +- LOC_CC_OPTS=-Wno-unknown-warning-option -Werror -Wno-clobbered -Wno-unused-variable -Wno-alloca-larger-than ++ LOC_CC_OPTS=-Wno-unused-variable + endif + endif + else +- LOC_CC_OPTS=-Wno-unknown-warning-option -Werror -Wno-clobbered -Wno-unused-variable ++ LOC_CC_OPTS=-Wno-unused-variable + endif + + # Enable 64-bit builds if the arch demands it diff --git a/java/jna/pkg-descr b/java/jna/pkg-descr new file mode 100644 index 00000000..e7d339c3 --- /dev/null +++ b/java/jna/pkg-descr @@ -0,0 +1,10 @@ +JNA provides Java programs easy access to native shared libraries +without writing anything but Java code - no JNI or native code is +required. This functionality is comparable to Windows' Platform/Invoke +and Python's ctypes. Access is dynamic at runtime without code +generation. + +JNA allows you to call directly into native functions using natural +Java method invocation. The Java call looks just like it does in +native code. Most calls require no special handling or configuration; +no boilerplate or generated code is required. diff --git a/lang/go120/Makefile b/lang/go120/Makefile index 2e55bd98..e21d222b 100644 --- a/lang/go120/Makefile +++ b/lang/go120/Makefile @@ -9,7 +9,6 @@ MASTER_SITES+= https://github.com/dmgk/go-bootstrap/releases/download/${BOOTSTRA MASTER_SITES+= LOCAL/dmgk:bootstrap DISTFILES= go${PORTVERSION}.src.tar.gz DISTFILES+= go-${OPSYS:tl}-${GOARCH}${GOARM}-${BOOTSTRAP_TAG}.tar.xz:bootstrap -PKGNAMESUFFIX= 120 .include