1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
Commit Graph

5026 Commits

Author SHA1 Message Date
Alex Dupre
172ed8171f java/intellij-ultimate: update to 2021.1.2 release. 2021-06-09 11:28:54 +02:00
Gerald Pfeifer
d09ed096c4 */*: Replace USE_GCC=any with USE_GCC=yes
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 96c17633d9 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
2021-06-04 05:53:21 +00:00
Rene Ladan
8cf6bf3bb8 java/intellij-rubymine: update to 2021.1.2 2021-06-02 19:25:31 +02:00
Dimitry Andric
6601c2af09 java/openjdk16: fix build with clang 12
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
2021-05-29 16:08:19 +02:00
Dimitry Andric
668230eee6 java/openjdk15: fix build with clang 12
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
2021-05-29 16:08:19 +02:00
Dimitry Andric
fa94e1b861 java/openjdk14: fix build with clang 12
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
2021-05-29 16:08:19 +02:00
Dimitry Andric
983b41adeb java/openjdk13: fix build with clang 12
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
2021-05-29 16:08:18 +02:00
Dimitry Andric
d6f8398fa2 java/openjdk12: fix build with clang 12
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
2021-05-29 16:08:18 +02:00
Dimitry Andric
a47b284421 java/openjdk11(-jre): fix build with clang 12
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
2021-05-29 16:08:18 +02:00
Ben Woods
95d52e52fb */*: Fix ENOTIME: return my ports to the pool
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.
2021-05-22 10:13:01 +08:00
Danilo Egea Gondolfo
713a673773 java/hamcrest: Drop maintainership 2021-05-19 20:56:15 +01:00
Danilo Egea Gondolfo
bca985ecf6 java/junit: Drop maintainership 2021-05-19 20:56:15 +01:00
Danilo Egea Gondolfo
c6e07479df java/trove4j: Drop maintainership 2021-05-19 20:56:14 +01:00
Dmitry Marakasov
93d73f6a83 java/openjdk7: mark BROKEN on FreeBSD ≥ 13
Approved by:	portmgr blanket
2021-05-19 13:40:01 +03:00
Mikael Urankar
362eb92da2 java/openjdk11: Add armv6 / armv7 support
PR:		255662
Approved by:	portmgr (tier 2 blanket)
2021-05-18 17:57:36 +02:00
Mikael Urankar
1025536a1c java/openjdk8: Fix build on armv6/7
PR:		255326
Reported by:	tech-lists@zyxst.net
Approved by:	portmgr (tier-2 / build fix blanket)
2021-05-14 10:30:52 +02:00
Dmitry Marakasov
2537a3996c java/wildfly13: fix plist (@sample)
Approved by:	portmgr blanket
2021-05-12 14:55:38 +03:00
Tobias Kortkamp
28e7a9334a
Rebuild lang/rust consumers after d8837418ea 2021-05-11 20:33:12 +02:00
Alex Dupre
fe67764d75 java/intellij-ultimate: update to 2021.1.1 2021-05-09 08:37:35 +02:00
Greg Lewis
0447c8fcad java/linux-oracle-jdk18: Update to 8u291 2021-05-08 13:45:20 -07:00
Mathieu Arnold
3505159e72
Deorbit RESTRICTED && NO_CDROM, part two.
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
2021-05-06 13:47:48 +02:00
Mathieu Arnold
adb93122cb
Deorbit RESTRICTED && NO_CDROM, part one.
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
2021-05-06 13:47:41 +02:00
Greg Lewis
3b4d5ff8b7 Update to 16.0.1 2021-05-04 22:24:30 -07:00
Greg Lewis
ae072ecd17 Update to 11.0.11 2021-05-04 22:23:35 -07:00
Greg Lewis
244a6b7e66 Update to 8u292 2021-05-04 22:21:48 -07:00
Rene Ladan
e52467bf53 java/intellij-rubymine: update to 2021.1.1 2021-05-04 11:03:58 +02:00
Tobias Kortkamp
c204633ca0
Remove my useless "Created by" lines 2021-04-19 10:00:09 +02:00
Tobias Kortkamp
ffbc3bd937
Clean up some things
- Remove duplicate variables
- Remove nop variables
- Sort categories
- Remove redundant option descriptions that match the default ones

Reported by:	portscan
2021-04-15 10:31:56 +02:00
Alex Dupre
ef8598e917 java/intellij-ultimate: update to 2021.1
PR:		254875
Submitted by:	ale
Approved by:	maintainer
2021-04-12 09:33:52 +02:00
Rene Ladan
adf8dc3f0f java/intellij-rubymine: update to 2021.1
Reported by:	JetBrains Toolbox
2021-04-11 17:11:11 +02:00
Jan Beich
69d24a727d devel/icu: update to 69.1
Changes:	https://github.com/unicode-org/icu/releases/tag/release-69-1
Reported by:	GitHub (watch releases)
2021-04-08 23:33:31 +00:00
Koop Mast
acc1dff37c java/netbeans: update to 12.3.
Set execute bit on maven binary so netbeans can run it. [1]

PR:		248192 [1]
Submitted by:	akruijff@dds.nl
2021-04-08 22:59:07 +02:00
Mathieu Arnold
cf118ccf87
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
2021-04-07 10:09:01 +02:00
Mathieu Arnold
135fdeebb9
all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02:00
Mathieu Arnold
305f148f48
Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Tobias Kortkamp
6095f1422a Rebuild lang/rust consumers after r569489 2021-03-29 18:10:45 +00:00
Rene Ladan
0d498e6ef7 java/intellij-rubymine: update to 2020.3.3
Bugfix release, see changelog at
https://blog.jetbrains.com/ruby/2021/03/rubymine-2020-3-3-is-available/
2021-03-21 16:22:29 +00:00
Piotr Kubaj
ba91d6745c java/openjdk16: enable dtrace on powerpc64 elfv2 2021-03-17 14:12:19 +00:00
Piotr Kubaj
4d98818947 java/openjdk15: enable dtrace on powerpc64 elfv2 2021-03-17 13:34:11 +00:00
Piotr Kubaj
befc45230e java/openjdk14: enable dtrace on powerpc64 2021-03-17 12:57:11 +00:00
Piotr Kubaj
29526e5d4c java/openjdk13: enable dtrace on powerpc64 elfv2 2021-03-17 11:15:23 +00:00
Piotr Kubaj
bb74b4d054 java/openjdk12: enable dtrace on powerpc64 elfv2 2021-03-17 02:00:16 +00:00
Piotr Kubaj
c4cf57f581 java/openjdk11: enable dtrace on powerpc64 elfv2 2021-03-17 01:18:33 +00:00
Piotr Kubaj
ac65e984e8 java/openjdk16: fix build on powerpc64le 2021-03-16 18:54:11 +00:00
Piotr Kubaj
de4c16f87d java/openjdk15: fix build on powerpc64le
Also cosmetic fixes related to powerpc64* for openjdk 12, 13, 14.
2021-03-16 18:06:55 +00:00
Piotr Kubaj
3f4435d085 java/openjdk14: fix build on powerpc64le
Approved by:	tier 2 blanket
2021-03-16 17:13:49 +00:00
Piotr Kubaj
943566a4be java/openjdk13: add powerpc64le support 2021-03-16 15:47:28 +00:00
Piotr Kubaj
69ac2578cf java/openjfx14: enable on powerpc64le 2021-03-15 15:49:49 +00:00
Piotr Kubaj
435dcd8105 java/openjdk12: fix build on powerpc64le
This ports r556940 to java/openjdk11.

Approved by:	tier 2 blanket
2021-03-15 14:58:01 +00:00
Piotr Kubaj
9a40a712b9 java/openjdk11: enable dtrace on powerpc64le
Builds fine.
2021-03-15 13:08:30 +00:00