diff options
author | Dmitry Wagin <dmitry.wagin@ya.ru> | 2025-05-28 15:03:59 +0200 |
---|---|---|
committer | Joel Bodenmann <jbo@FreeBSD.org> | 2025-05-28 15:03:59 +0200 |
commit | 6d1f38e578e6973ea284893c34fdbcf36486c567 (patch) | |
tree | 035fcd9d0cd962a95b7d8f893f7052a9581f58ef | |
parent | devel/jwt-cpp: A header only C++ library to JWT (diff) |
devel/jetbrains-clion: Bump JAVA_VERSION
This bumps the JAVA_VERSION from 17 to 21 as many plugins are now
requiring java runtime >=65.
While here, also disable automatic update checks.
PR: 286741
Reported by: jbo
-rw-r--r-- | devel/jetbrains-clion/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/jetbrains-clion/Makefile b/devel/jetbrains-clion/Makefile index ca98f31d8a10..48cb98f560ed 100644 --- a/devel/jetbrains-clion/Makefile +++ b/devel/jetbrains-clion/Makefile @@ -1,5 +1,6 @@ PORTNAME= clion DISTVERSION= 2024.3.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://download-cdn.jetbrains.com/cpp/ \ https://packages.jetbrains.team/files/p/clion/ports/2024.3/freebsd/clang/:clang @@ -39,7 +40,7 @@ RUN_DEPENDS= cmake:devel/cmake-core \ USES= cpe java python:run shebangfix CPE_VENDOR= jetbrains -JAVA_VERSION= 17+ +JAVA_VERSION= 21+ SHEBANG_FILES= plugins/python-ce/helpers/typeshed/scripts/generate_proto_stubs.sh @@ -108,6 +109,8 @@ do-install: # Use sqlite replacement provided by devel/jetbrains-sqlite ${MKDIR} ${STAGEDIR}${DATADIR}/lib/native/${_SQLITE_ARCH} ${LN} -sf ../../../../sqlite/${ARCH}/libsqliteij.so ${STAGEDIR}${DATADIR}/lib/native/${_SQLITE_ARCH}/libsqliteij.so +# Disable automatic updates + ${ECHO} "ide.no.platform.update=FreeBSD Ports" >> ${STAGEDIR}${DATADIR}/bin/idea.properties # Install FreeBSD native clang ${MKDIR} ${STAGEDIR}${DATADIR}/bin/clang/${_CLANG_ARCH}/bin ${INSTALL_PROGRAM} \ |