aboutsummaryrefslogtreecommitdiff
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
* java/java-zoneinfo: Add NO_ARCHPo-Chuan Hsieh2021-06-101-0/+1
| | | | Approved by: portmgr (blanket)
* java/intellij-ultimate: update to 2021.1.2 release.Alex Dupre2021-06-093-11/+8
|
* */*: Replace USE_GCC=any with USE_GCC=yesGerald Pfeifer2021-06-041-1/+1
| | | | | | | | | | | | | | | USE_GCC=any has been equivalent to USE_GCC=yes in most cases (such as i386 and amd64 since 12.x and depending on configuration 11.x, most newer installations on other platforms, and 13.x across the board). Since commit 96c17633d90386b5bcf8 Mk/bsd.gcc.mk is treating them as different spellings of the same, so continue the deorbiting of the USE_GCC=any form and simply replace it with USE_GCC=yes. This should not make any functional difference at all. Discussed with: mat, linimon, pkubaj
* java/intellij-rubymine: update to 2021.1.2Rene Ladan2021-06-023-9/+9
|
* java/openjdk16: fix build with clang 12Dimitry Andric2021-05-291-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that at least openjdk11 and openjdk12 do not build with clang 12.0.0. The exp-run therefore skipped openjdk16. Building this manually shows that it results in a compile error: gmake[4]: Leaving directory '/wrkdirs/usr/ports/java/openjdk16/work/jdk16u-jdk-16.0.1-9-1/make' /wrkdirs/usr/ports/java/openjdk16/work/jdk16u-jdk-16.0.1-9-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:748:3: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation] "", ^ /wrkdirs/usr/ports/java/openjdk16/work/jdk16u-jdk-16.0.1-9-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:747:3: note: place parentheses around the string literal to silence warning "Opteron QC/Phenom" // Barcelona et.al. ^ 1 error generated. This is due to a missing backport of this upstream commit: commit f8a9602a0a65cdc98eb940aac9529256ded2bf42 Author: Yasumasa Suenaga <ysuenaga@openjdk.org> Date: Thu Jan 21 06:08:13 2021 +0000 8260025: Missing comma in VM_Version_Ext::_family_id_amd Reviewed-by: dholmes, stuefe Approved by: maintainer timeout (2 weeks) PR: 255905 MFH: 2021Q2
* java/openjdk15: fix build with clang 12Dimitry Andric2021-05-292-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that at least openjdk11 and openjdk12 do not build with clang 12.0.0. The exp-run therefore skipped openjdk15. Building this manually shows that it results in a compile error: gmake[4]: Leaving directory '/wrkdirs/usr/ports/java/openjdk15/work/jdk15u-jdk-15.0.2-7-1/make' /wrkdirs/usr/ports/java/openjdk15/work/jdk15u-jdk-15.0.2-7-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:748:3: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation] "", ^ /wrkdirs/usr/ports/java/openjdk15/work/jdk15u-jdk-15.0.2-7-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:747:3: note: place parentheses around the string literal to silence warning "Opteron QC/Phenom" // Barcelona et.al. ^ 1 error generated. This is due to a missing backport of this upstream commit: commit f8a9602a0a65cdc98eb940aac9529256ded2bf42 Author: Yasumasa Suenaga <ysuenaga@openjdk.org> Date: Thu Jan 21 06:08:13 2021 +0000 8260025: Missing comma in VM_Version_Ext::_family_id_amd Reviewed-by: dholmes, stuefe Even after applying this fix, there is still a possibility of a segfault during the build, due to another missing backport, of this upstream commit: commit c484d8904285652246c3af212a4211b9a8955149 Author: Thomas Stuefe <stuefe@openjdk.org> Date: Tue Mar 16 05:49:01 2021 +0000 8263557: Possible NULL dereference in Arena::destruct_contents() Reviewed-by: kbarrett, coleenp Approved by: maintainer timeout (2 weeks) PR: 255904 MFH: 2021Q2
* java/openjdk14: fix build with clang 12Dimitry Andric2021-05-292-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that at least openjdk11 and openjdk12 do not build with clang 12.0.0. The exp-run therefore skipped openjdk14. Building this manually shows that it results in a compile error: gmake[4]: Leaving directory '/wrkdirs/usr/ports/java/openjdk14/work/jdk14u-jdk-14.0.2-12-1/make' /wrkdirs/usr/ports/java/openjdk14/work/jdk14u-jdk-14.0.2-12-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:748:3: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation] "", ^ /wrkdirs/usr/ports/java/openjdk14/work/jdk14u-jdk-14.0.2-12-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:747:3: note: place parentheses around the string literal to silence warning "Opteron QC/Phenom" // Barcelona et.al. ^ 1 error generated. This is due to a missing backport of this upstream commit: commit f8a9602a0a65cdc98eb940aac9529256ded2bf42 Author: Yasumasa Suenaga <ysuenaga@openjdk.org> Date: Thu Jan 21 06:08:13 2021 +0000 8260025: Missing comma in VM_Version_Ext::_family_id_amd Reviewed-by: dholmes, stuefe Even after applying this fix, there is still a possibility of a segfault during the build, due to another missing backport, of this upstream commit: commit c484d8904285652246c3af212a4211b9a8955149 Author: Thomas Stuefe <stuefe@openjdk.org> Date: Tue Mar 16 05:49:01 2021 +0000 8263557: Possible NULL dereference in Arena::destruct_contents() Reviewed-by: kbarrett, coleenp Approved by: maintainer timeout (2 weeks) PR: 255903 MFH: 2021Q2
* java/openjdk13: fix build with clang 12Dimitry Andric2021-05-292-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that at least openjdk11 and openjdk12 do not build with clang 12.0.0. The exp-run therefore skipped openjdk13. Building this manually shows that it results in a compile error: gmake[4]: Leaving directory '/wrkdirs/usr/ports/java/openjdk13/work/openjdk-jdk13u-jdk-13.0.7-1-1/make' /wrkdirs/usr/ports/java/openjdk13/work/openjdk-jdk13u-jdk-13.0.7-1-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:748:3: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation] "", ^ /wrkdirs/usr/ports/java/openjdk13/work/openjdk-jdk13u-jdk-13.0.7-1-1/src/hotspot/cpu/x86/vm_version_ext_x86.cpp:747:3: note: place parentheses around the string literal to silence warning "Opteron QC/Phenom" // Barcelona et.al. ^ 1 error generated. This is due to a missing backport of this upstream commit: commit f8a9602a0a65cdc98eb940aac9529256ded2bf42 Author: Yasumasa Suenaga <ysuenaga@openjdk.org> Date: Thu Jan 21 06:08:13 2021 +0000 8260025: Missing comma in VM_Version_Ext::_family_id_amd Reviewed-by: dholmes, stuefe Even after applying this fix, there is still a possibility of a segfault during the build, due to another missing backport, of this upstream commit: commit c484d8904285652246c3af212a4211b9a8955149 Author: Thomas Stuefe <stuefe@openjdk.org> Date: Tue Mar 16 05:49:01 2021 +0000 8263557: Possible NULL dereference in Arena::destruct_contents() Reviewed-by: kbarrett, coleenp Approved by: maintainer timeout (2 weeks) PR: 255902 MFH: 2021Q2
* java/openjdk12: fix build with clang 12Dimitry Andric2021-05-292-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that java/openjdk11 does not build with clang 12.0.0: Creating support/demos/image/jfc/J2Ddemo/J2Ddemo.jar /usr/local/bin/bash: line 5: 49140 Abort trap (core dumped) /wrkdirs/usr/ports/java/openjdk12/work/openjdk-jdk12u-jdk-12.0.2-10-4/build/bsd-x86_64-server-release/support/interim-image/bin/java -XX:DumpLoadedClassList=/wrkdirs/usr/ports/java/openjdk12/work/openjdk-jdk12u-jdk-12.0.2-10-4/build/bsd-x86_64-server-release/support/link_opt/classlist.raw -Djava.lang.invoke.MethodHandle.TRACE_RESOLVE=true -cp /wrkdirs/usr/ports/java/openjdk12/work/openjdk-jdk12u-jdk-12.0.2-10-4/build/bsd-x86_64-server-release/support/classlist.jar build.tools.classlist.HelloClasslist > /dev/null 2>&1 > /wrkdirs/usr/ports/java/openjdk12/work/openjdk-jdk12u-jdk-12.0.2-10-4/build/bsd-x86_64-server-release/support/link_opt/default_jli_trace.txt gmake[4]: *** [GenerateLinkOptData.gmk:66: /wrkdirs/usr/ports/java/openjdk12/work/openjdk-jdk12u-jdk-12.0.2-10-4/build/bsd-x86_64-server-release/support/link_opt/classlist] Error 134 This is due to missing backports of upstream commits: commit c484d8904285652246c3af212a4211b9a8955149 Author: Thomas Stuefe <stuefe@openjdk.org> Date: Tue Mar 16 05:49:01 2021 +0000 8263557: Possible NULL dereference in Arena::destruct_contents() Reviewed-by: kbarrett, coleenp commit 34ae46e2bca691f989d4d84129baf545ff8a7469 Author: Andrew Haley <aph@openjdk.org> Date: Thu Mar 19 14:53:57 2020 +0000 8241296: Segfault in JNIHandleBlock::oops_do() Reviewed-by: stefank Approved by: maintainer timeout (2 weeks) PR: 255901 MFH: 2021Q2
* java/openjdk11(-jre): fix build with clang 12Dimitry Andric2021-05-291-0/+23
| | | | | | | | | | | | | | | | | | | | | | During an exp-run for llvm 12 (see bug 255570), it turned out that java/openjdk11 and java/openjdk11-jre do not build with clang 12.0.0: Creating interim jimage Compiling 2 files for BUILD_DEMO_Notepad This is due to a missing backport of an upstream commit: commit c484d8904285652246c3af212a4211b9a8955149 Author: Thomas Stuefe <stuefe@openjdk.org> Date: Tue Mar 16 05:49:01 2021 +0000 8263557: Possible NULL dereference in Arena::destruct_contents() Reviewed-by: kbarrett, coleenp Approved by: maintainer timeout (2 weeks) PR: 255900 MFH: 2021Q2
* */*: Fix ENOTIME: return my ports to the poolBen Woods2021-05-221-1/+1
| | | | | Reset maintainership of my ports to ports@FreeBSD.org so others can step in to help where I haven't been able to find the time.
* java/hamcrest: Drop maintainershipDanilo Egea Gondolfo2021-05-191-1/+1
|
* java/junit: Drop maintainershipDanilo Egea Gondolfo2021-05-191-1/+1
|
* java/trove4j: Drop maintainershipDanilo Egea Gondolfo2021-05-191-1/+1
|
* java/openjdk7: mark BROKEN on FreeBSD ≥ 13Dmitry Marakasov2021-05-191-0/+3
| | | | Approved by: portmgr blanket
* java/openjdk11: Add armv6 / armv7 supportMikael Urankar2021-05-183-9/+11
| | | | | PR: 255662 Approved by: portmgr (tier 2 blanket)
* java/openjdk8: Fix build on armv6/7Mikael Urankar2021-05-142-0/+42
| | | | | | PR: 255326 Reported by: tech-lists@zyxst.net Approved by: portmgr (tier-2 / build fix blanket)
* java/wildfly13: fix plist (@sample)Dmitry Marakasov2021-05-122-1/+2
| | | | Approved by: portmgr blanket
* Rebuild lang/rust consumers after d8837418ea743776Tobias Kortkamp2021-05-111-1/+1
|
* java/intellij-ultimate: update to 2021.1.1Alex Dupre2021-05-093-10/+18
|
* java/linux-oracle-jdk18: Update to 8u291Greg Lewis2021-05-083-641/+105
|
* Deorbit RESTRICTED && NO_CDROM, part two.Mathieu Arnold2021-05-0612-16/+71
| | | | | | | | | Move ports to the licenses framework. RESTRICTED → auto-accept (unless expressly stated otherwise) NO_CDROM → dist-mirror pkg-mirror auto-accept Differential Revision: https://reviews.freebsd.org/D30010
* Deorbit RESTRICTED && NO_CDROM, part one.Mathieu Arnold2021-05-061-1/+1
| | | | | | | | For ports that already use the licenses framwork, merge the content of RESTRICTED/NO_CDROM/LEGAL* entries into LICENSEs. Approved by: rene Differential Revision: https://reviews.freebsd.org/D30010
* Update to 16.0.1Greg Lewis2021-05-053-161/+7
|
* Update to 11.0.11Greg Lewis2021-05-052-5/+4
|
* Update to 8u292Greg Lewis2021-05-052-5/+5
|
* java/intellij-rubymine: update to 2021.1.1Rene Ladan2021-05-043-13/+9
|
* Remove my useless "Created by" linesTobias Kortkamp2021-04-194-8/+0
|
* Clean up some thingsTobias Kortkamp2021-04-151-2/+0
| | | | | | | | | - Remove duplicate variables - Remove nop variables - Sort categories - Remove redundant option descriptions that match the default ones Reported by: portscan
* java/intellij-ultimate: update to 2021.1Alex Dupre2021-04-123-1082/+284
| | | | | | PR: 254875 Submitted by: ale Approved by: maintainer
* java/intellij-rubymine: update to 2021.1Rene Ladan2021-04-113-224/+131
| | | | Reported by: JetBrains Toolbox
* devel/icu: update to 69.1Jan Beich2021-04-081-1/+1
| | | | | Changes: https://github.com/unicode-org/icu/releases/tag/release-69-1 Reported by: GitHub (watch releases)
* java/netbeans: update to 12.3.Koop Mast2021-04-084-283/+296
| | | | | | | Set execute bit on maven binary so netbeans can run it. [1] PR: 248192 [1] Submitted by: akruijff@dds.nl
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-0734-34/+0
| | | | Reported by: lwhsu
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-0633-74/+1
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-06126-129/+0
|
* Rebuild lang/rust consumers after r569489Tobias Kortkamp2021-03-291-1/+1
| | | | Notes: svn path=/head/; revision=569491
* java/intellij-rubymine: update to 2020.3.3Rene Ladan2021-03-212-4/+4
| | | | | | | | Bugfix release, see changelog at https://blog.jetbrains.com/ruby/2021/03/rubymine-2020-3-3-is-available/ Notes: svn path=/head/; revision=568924
* java/openjdk16: enable dtrace on powerpc64 elfv2Piotr Kubaj2021-03-171-1/+2
| | | | Notes: svn path=/head/; revision=568661
* java/openjdk15: enable dtrace on powerpc64 elfv2Piotr Kubaj2021-03-171-1/+2
| | | | Notes: svn path=/head/; revision=568658
* java/openjdk14: enable dtrace on powerpc64Piotr Kubaj2021-03-171-2/+2
| | | | Notes: svn path=/head/; revision=568652
* java/openjdk13: enable dtrace on powerpc64 elfv2Piotr Kubaj2021-03-171-1/+2
| | | | Notes: svn path=/head/; revision=568642
* java/openjdk12: enable dtrace on powerpc64 elfv2Piotr Kubaj2021-03-171-2/+2
| | | | Notes: svn path=/head/; revision=568628
* java/openjdk11: enable dtrace on powerpc64 elfv2Piotr Kubaj2021-03-171-1/+2
| | | | Notes: svn path=/head/; revision=568626
* java/openjdk16: fix build on powerpc64lePiotr Kubaj2021-03-161-4/+6
| | | | Notes: svn path=/head/; revision=568601
* java/openjdk15: fix build on powerpc64lePiotr Kubaj2021-03-164-7/+9
| | | | | | | Also cosmetic fixes related to powerpc64* for openjdk 12, 13, 14. Notes: svn path=/head/; revision=568594
* java/openjdk14: fix build on powerpc64lePiotr Kubaj2021-03-164-5/+51
| | | | | | | Approved by: tier 2 blanket Notes: svn path=/head/; revision=568588
* java/openjdk13: add powerpc64le supportPiotr Kubaj2021-03-161-4/+6
| | | | Notes: svn path=/head/; revision=568573
* java/openjfx14: enable on powerpc64lePiotr Kubaj2021-03-151-1/+1
| | | | Notes: svn path=/head/; revision=568465
* java/openjdk12: fix build on powerpc64lePiotr Kubaj2021-03-154-5/+51
| | | | | | | | | This ports r556940 to java/openjdk11. Approved by: tier 2 blanket Notes: svn path=/head/; revision=568464