From owner-svn-ports-all@freebsd.org Sat Oct 3 13:24:54 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B695542E7E3; Sat, 3 Oct 2020 13:24:54 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C3SJk4QBdz4MB1; Sat, 3 Oct 2020 13:24:54 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7B84E13F11; Sat, 3 Oct 2020 13:24:54 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 093DOsIt033739; Sat, 3 Oct 2020 13:24:54 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 093DOsZ2033738; Sat, 3 Oct 2020 13:24:54 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202010031324.093DOsZ2033738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Sat, 3 Oct 2020 13:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551314 - head/www/deno X-SVN-Group: ports-head X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: head/www/deno X-SVN-Commit-Revision: 551314 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Oct 2020 13:24:54 -0000 Author: mikael Date: Sat Oct 3 13:24:53 2020 New Revision: 551314 URL: https://svnweb.freebsd.org/changeset/ports/551314 Log: www/deno: cleanup after 11.3 EOL Submitted by: rene Modified: head/www/deno/Makefile Modified: head/www/deno/Makefile ============================================================================== --- head/www/deno/Makefile Sat Oct 3 13:04:59 2020 (r551313) +++ head/www/deno/Makefile Sat Oct 3 13:24:53 2020 (r551314) @@ -20,9 +20,8 @@ BUILD_DEPENDS= binutils>0:devel/binutils \ .include # clang10+ is required, this conditional can be dropped when -# 11.3 and 12.1 are EOL -.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1103511) || \ - (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201515) +# 12.1 is EOL +.if (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201515) BUILD_DEPENDS+= llvm10>0:devel/llvm10 .endif @@ -351,9 +350,8 @@ post-patch: ${WRKSRC}/cargo-crates/rusty_v8-${RUSTY_VERS}/build/toolchain/gcc_toolchain.gni \ ${WRKSRC}/cargo-crates/rusty_v8-${RUSTY_VERS}/buildtools/third_party/libc++/BUILD.gn # clang10+ is required, this conditional can be dropped when -# 11.3 and 12.1 are EOL -.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1103511) || \ - (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201515) +# 12.1 is EOL +.if (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201515) @${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} < ${FILESDIR}/extrapatch-clang10 .endif