From owner-dev-commits-ports-all@freebsd.org Thu Aug 19 14:37:03 2021 Return-Path: Delivered-To: dev-commits-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 304536664F7; Thu, 19 Aug 2021 14:37:03 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Gr6mH0j6jz4q46; Thu, 19 Aug 2021 14:37:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 01456272BD; Thu, 19 Aug 2021 14:37:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17JEb2EX089913; Thu, 19 Aug 2021 14:37:02 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17JEb2Dv089912; Thu, 19 Aug 2021 14:37:02 GMT (envelope-from git) Date: Thu, 19 Aug 2021 14:37:02 GMT Message-Id: <202108191437.17JEb2Dv089912@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Neel Chauhan Subject: git: 2cf2d5e3e01f - main - devel/bazel: Correctly add version 4.2.0 to Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: nc X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 2cf2d5e3e01fdbd2a4b8588327cbbe27f9562b8f Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Aug 2021 14:37:03 -0000 The branch main has been updated by nc: URL: https://cgit.FreeBSD.org/ports/commit/?id=2cf2d5e3e01fdbd2a4b8588327cbbe27f9562b8f commit 2cf2d5e3e01fdbd2a4b8588327cbbe27f9562b8f Author: Klaus Aehlig AuthorDate: 2021-08-19 14:36:41 +0000 Commit: Neel Chauhan CommitDate: 2021-08-19 14:36:41 +0000 devel/bazel: Correctly add version 4.2.0 to Makefile PR: 257932 --- devel/bazel/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devel/bazel/Makefile b/devel/bazel/Makefile index fffa380aa6e7..e5cad700338d 100644 --- a/devel/bazel/Makefile +++ b/devel/bazel/Makefile @@ -1,7 +1,7 @@ # Created by: Klaus Aehlig PORTNAME= bazel -DISTVERSION= 4.1.0 +DISTVERSION= 4.2.0 CATEGORIES= devel java MASTER_SITES= https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/ DISTNAME= bazel-${PORTVERSION}rc${FINALRC}-dist @@ -28,7 +28,7 @@ CONFLICTS_INSTALL= bazel029 # In bazel, a release is always code-wise identical to the final release candidate. # Hence we can also download that one and so have a simple way to also test earlier release # candidates. -FINALRC= 5 +FINALRC= 4 SHEBANG_REGEX= .*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so) USE_JAVA= yes