Received: by mail.netbsd.org (Postfix, from userid 605) id 292C484E7E; Tue, 20 Jul 2021 16:01:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 649B584E7A for ; Tue, 20 Jul 2021 16:01:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Lt_3_PPk0aPZ for ; Tue, 20 Jul 2021 16:01:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B7BC884D24 for ; Tue, 20 Jul 2021 16:01:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B0A23FA95; Tue, 20 Jul 2021 16:01:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162679686383250" MIME-Version: 1.0 Date: Tue, 20 Jul 2021 16:01:03 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/net/unifi To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20210720160103.B0A23FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162679686383250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Tue Jul 20 16:01:03 UTC 2021 Modified Files: pkgsrc/net/unifi: Makefile Log Message: Remove openjdk11 from PKG_JVMS_ACCEPTED for now Running on NetBSD-9.2/amd64 under openjdk11, the unifi server fails to listen to https, so exclude openjdk11 for now. Confirmed by tnn@ To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/net/unifi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162679686383250 Content-Disposition: inline Content-Length: 950 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/unifi/Makefile diff -u pkgsrc/net/unifi/Makefile:1.22 pkgsrc/net/unifi/Makefile:1.23 --- pkgsrc/net/unifi/Makefile:1.22 Tue Jun 1 15:04:12 2021 +++ pkgsrc/net/unifi/Makefile Tue Jul 20 16:01:03 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2021/06/01 15:04:12 gdt Exp $ +# $NetBSD: Makefile,v 1.23 2021/07/20 16:01:03 abs Exp $ # Update to 6.2 (wip) is on hold pending reports that the greater # Unifi world thinks it is stable enough. -- gdt, 2021-06-01 @@ -47,7 +47,8 @@ INSTALLATION_DIRS= unifi # Emulated JDK doesn't work due to epoll issues. Also, would require # matching emulated native libraries, and we only compile actual # native libaries. -PKG_JVMS_ACCEPTED= openjdk11 openjdk8 +# NetBSD openjdk11 fails to listen to https, so disable for now +PKG_JVMS_ACCEPTED= openjdk8 PKGSRC_MAKE_ENV+= JAVA_HOME=${PKG_JAVA_HOME} USE_LANGUAGES= c c++ # for snappy JNI library USE_TOOLS+= gmake pax --_----------=_162679686383250--