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

(-)bazel/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/devel/bazel/Makefile 516286 2019-11-02 05:42:34Z yuri $
2
# $FreeBSD: head/devel/bazel/Makefile 516286 2019-11-02 05:42:34Z yuri $
3
3
4
PORTNAME=	bazel
4
PORTNAME=	bazel
5
DISTVERSION=	1.1.0
5
DISTVERSION=	1.2.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 28-34 Link Here
28
# In bazel, a release is always code-wise identical to the final release candidate.
28
# In bazel, a release is always code-wise identical to the final release candidate.
29
# Hence we can also download that one and so have a simple way to also test earlier release
29
# Hence we can also download that one and so have a simple way to also test earlier release
30
# candidates.
30
# candidates.
31
FINALRC=	2
31
FINALRC=	3
32
32
33
SHEBANG_REGEX=	.*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so)
33
SHEBANG_REGEX=	.*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so)
34
USE_JAVA=	yes
34
USE_JAVA=	yes
(-)bazel/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1571381499
1
TIMESTAMP = 1574287662
2
SHA256 (bazel-1.1.0rc2-dist.zip) = 8764117e0c6048a591e76581374ff5e57b2bbdf2bb1e5a91c961d619706c0fef
2
SHA256 (bazel-1.2.0rc3-dist.zip) = 9b4a52f0126ef833f0417033d7b1df1de8e2a85a6e2c949fbb5330095ce4404a
3
SIZE (bazel-1.1.0rc2-dist.zip) = 267683104
3
SIZE (bazel-1.2.0rc3-dist.zip) = 267512846
(-)bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt (-6 / +6 lines)
Lines 1-11 Link Here
1
--- src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt.orig	2017-07-25 04:58:01 UTC
1
--- src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt.orig	2019-11-13 08:37:00 UTC
2
+++ src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt
2
+++ src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt
3
@@ -38,7 +38,7 @@ if IsWindows() and not PYTHON_BINARY.end
3
@@ -52,7 +52,7 @@
4
 
4
 
5
 # Find a file in a given search path.
6
 def SearchPath(name):
5
 def SearchPath(name):
6
   """Finds a file in a given search path."""
7
-  search_path = os.getenv('PATH', os.defpath).split(os.pathsep)
7
-  search_path = os.getenv('PATH', os.defpath).split(os.pathsep)
8
+  search_path = os.getenv('PATH', os.defpath + ":/usr/local/bin").split(os.pathsep)
8
+  search_path = os.getenv('PATH', os.defpath + ':/usr/local/bin').split(os.pathsep)
9
   for directory in search_path:
9
   for directory in search_path:
10
     if directory == '': continue
10
     if directory:
11
     path = os.path.join(directory, name)
11
       path = os.path.join(directory, name)

Return to bug 242122