View | Details | Raw Unified | Return to bug 239151
Collapse All | Expand All

(-)bazel/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/devel/bazel/Makefile 505481 2019-06-30 20:27:11Z swills $
2
# $FreeBSD: head/devel/bazel/Makefile 505481 2019-06-30 20:27:11Z swills $
3
3
4
PORTNAME=	bazel
4
PORTNAME=	bazel
5
DISTVERSION=	0.27.0
5
DISTVERSION=	0.28.0
6
CATEGORIES=	devel java
6
CATEGORIES=	devel java
7
MASTER_SITES=	https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/
7
MASTER_SITES=	https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/
8
DISTNAME=	bazel-${PORTVERSION}rc${FINALRC}-dist
8
DISTNAME=	bazel-${PORTVERSION}rc${FINALRC}-dist
Lines 26-32 Link Here
26
# In bazel, a release is always code-wise identical to the final release candidate.
26
# In bazel, a release is always code-wise identical to the final release candidate.
27
# Hence we can also download that one and so have a simple way to also test earlier release
27
# Hence we can also download that one and so have a simple way to also test earlier release
28
# candidates.
28
# candidates.
29
FINALRC=	5
29
FINALRC=	2
30
30
31
SHEBANG_REGEX=	.*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so)
31
SHEBANG_REGEX=	.*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so)
32
USE_JAVA=	yes
32
USE_JAVA=	yes
(-)bazel/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1560545499
1
TIMESTAMP = 1562751385
2
SHA256 (bazel-0.27.0rc5-dist.zip) = 665bac721c3e2630715302c1d952e6c79db365fe69cf36962212d17d27c52df1
2
SHA256 (bazel-0.28.0rc2-dist.zip) = 1fa0879671c505b07f2186a67e6eba6642d9d90ab8ed996f7c992f59bddb2739
3
SIZE (bazel-0.27.0rc5-dist.zip) = 247943537
3
SIZE (bazel-0.28.0rc2-dist.zip) = 256639115
(-)bazel/files/patch-third_party__BUILD (+11 lines)
Line 0 Link Here
1
--- third_party/BUILD.orig	2019-07-11 08:41:05.213918000 +0000
2
+++ third_party/BUILD	2019-07-11 08:41:40.502181000 +0000
3
@@ -536,7 +536,7 @@
4
     name = "filter_netty_dynamic_libs",
5
     srcs = ["netty_tcnative/netty-tcnative-boringssl-static-2.0.24.Final.jar"],
6
     outs = ["netty_tcnative/netty-tcnative-filtered.jar"],
7
-    cmd = "cp $< $@ && zip -qd $@ " + UNNECESSARY_DYNAMIC_LIBRARIES,
8
+    cmd = "cp $< $@ && (zip -qd $@ " + UNNECESSARY_DYNAMIC_LIBRARIES + " || : )",
9
 )
10
 
11
 java_import(

Return to bug 239151