Date: Tue, 26 Nov 2019 11:54:06 +0000 (UTC) From: Jochen Neumeister <joneum@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518464 - in head/devel/bazel: . files Message-ID: <201911261154.xAQBs6LT055622@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: joneum Date: Tue Nov 26 11:54:06 2019 New Revision: 518464 URL: https://svnweb.freebsd.org/changeset/ports/518464 Log: Update to 1.2.0 Changelog: https://github.com/bazelbuild/bazel/releases/tag/1.2.0 PR: 242122 Submitted by: Klaus Aehlig <aehlig@linta.de> (maintainer) Sponsored by: Netzkommune GmbH Modified: head/devel/bazel/Makefile head/devel/bazel/distinfo head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt Modified: head/devel/bazel/Makefile ============================================================================== --- head/devel/bazel/Makefile Tue Nov 26 11:51:30 2019 (r518463) +++ head/devel/bazel/Makefile Tue Nov 26 11:54:06 2019 (r518464) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bazel -DISTVERSION= 1.1.0 +DISTVERSION= 1.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 @@ USES= python:3.3+ shebangfix zip:infozip # 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= 2 +FINALRC= 3 SHEBANG_REGEX= .*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so) USE_JAVA= yes Modified: head/devel/bazel/distinfo ============================================================================== --- head/devel/bazel/distinfo Tue Nov 26 11:51:30 2019 (r518463) +++ head/devel/bazel/distinfo Tue Nov 26 11:54:06 2019 (r518464) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571381499 -SHA256 (bazel-1.1.0rc2-dist.zip) = 8764117e0c6048a591e76581374ff5e57b2bbdf2bb1e5a91c961d619706c0fef -SIZE (bazel-1.1.0rc2-dist.zip) = 267683104 +TIMESTAMP = 1574287662 +SHA256 (bazel-1.2.0rc3-dist.zip) = 9b4a52f0126ef833f0417033d7b1df1de8e2a85a6e2c949fbb5330095ce4404a +SIZE (bazel-1.2.0rc3-dist.zip) = 267512846 Modified: head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt ============================================================================== --- head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt Tue Nov 26 11:51:30 2019 (r518463) +++ head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt Tue Nov 26 11:54:06 2019 (r518464) @@ -1,11 +1,11 @@ ---- src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt.orig 2017-07-25 04:58:01 UTC +--- src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt.orig 2019-11-13 08:37:00 UTC +++ src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt -@@ -38,7 +38,7 @@ if IsWindows() and not PYTHON_BINARY.end +@@ -52,7 +52,7 @@ - # Find a file in a given search path. def SearchPath(name): + """Finds a file in a given search path.""" - search_path = os.getenv('PATH', os.defpath).split(os.pathsep) -+ search_path = os.getenv('PATH', os.defpath + ":/usr/local/bin").split(os.pathsep) ++ search_path = os.getenv('PATH', os.defpath + ':/usr/local/bin').split(os.pathsep) for directory in search_path: - if directory == '': continue - path = os.path.join(directory, name) + if directory: + path = os.path.join(directory, name)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911261154.xAQBs6LT055622>