Date: Tue, 16 Mar 2021 21:15:28 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568616 - head/lang/J Message-ID: <202103162115.12GLFS9E066189@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Tue Mar 16 21:15:28 2021 New Revision: 568616 URL: https://svnweb.freebsd.org/changeset/ports/568616 Log: - Mark BROKEN: does not compile /wrkdirs/usr/ports/lang/J/work/jsource-j807-release/jsrc/ar.c:254:70: error: implicit conversion from 'long long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-const-int-float-conversion] - Fix CONFLICTS_INSTALL on openjdk* (conflict of bin/jconsole binary from J vs. symlink installed by openjdk* from post-install scripts) [1] - Fix WWW PR: 236427 [1] Reported by: bojan_petrovic@fastmail.fm [1] Modified: head/lang/J/Makefile head/lang/J/pkg-descr Modified: head/lang/J/Makefile ============================================================================== --- head/lang/J/Makefile Tue Mar 16 21:10:07 2021 (r568615) +++ head/lang/J/Makefile Tue Mar 16 21:15:28 2021 (r568616) @@ -14,6 +14,8 @@ COMMENT= J programming language LICENSE= GPLv3 LICENSE_FILE= ${WRKDIR}/jsource-${JVERSION}/license.txt +BROKEN= does not build + ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= Not built or tested for other archs. i386 needs hostdefs and netdefs files to be generated. @@ -45,12 +47,7 @@ OPENMP_MAKE_ENV= USE_OPENMP=1 OPENMP_LIB_DEPENDS= libgomp.so:lang/gcc7 # J wants to install jconsole, also provided by openjdk -CONFLICTS_INSTALL= openjdk6 \ - openjdk6-jre \ - openjdk7 \ - openjdk7-jre \ - openjdk8 \ - openjdk8-jre +CONFLICTS_INSTALL= openjdk[0-9]* do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/j/bin Modified: head/lang/J/pkg-descr ============================================================================== --- head/lang/J/pkg-descr Tue Mar 16 21:10:07 2021 (r568615) +++ head/lang/J/pkg-descr Tue Mar 16 21:15:28 2021 (r568616) @@ -2,4 +2,4 @@ J (J language) is a high-level, general-purpose, high- programming language. J is portable and runs on 32/64-bit Windows/Linux/Mac as well as iOS, Android, and other platforms. -WWW: http://www.jsoftware.com +WWW: https://www.jsoftware.com/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103162115.12GLFS9E066189>