<pre style='margin:0'>
Herby Gillot (herbygillot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/089b4220ddcfbc649e2aa7996fcf338eeeb66d67">https://github.com/macports/macports-ports/commit/089b4220ddcfbc649e2aa7996fcf338eeeb66d67</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 089b4220ddc bazel: update to 6.3.0
</span>089b4220ddc is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 089b4220ddcfbc649e2aa7996fcf338eeeb66d67
</span>Author: Herby Gillot <herby.gillot@gmail.com>
AuthorDate: Mon Jul 24 23:34:34 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    bazel: update to 6.3.0
</span>---
 devel/bazel/Portfile | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/bazel/Portfile b/devel/bazel/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index dccbb1184d3..8370b033668 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/bazel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/bazel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -37,12 +37,12 @@ set min_darwin      16
</span> if { ${name} eq ${subport} } {
 
     # Main port
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    github.setup    bazelbuild ${name} 6.2.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    github.setup    bazelbuild ${name} 6.3.0
</span>     revision        0
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    checksums       rmd160  dccf59a36e9054c1d21786649daf17e7e004bd0b \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    sha256  f1e8f788637ac574d471d619d2096baaca04a19b57a034399e079633db441945 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    size    196992916
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    checksums       rmd160  4fbba03610c4f7ccf1389bd4867deac88f1327cb \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    sha256  902198981b1d26112fc05913e79f1b3e9772c3f95594caf85619d041ba06ede0 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    size    205657123
</span> 
     set bazel_min_xcode 10.3
     compiler.blacklist-append {clang < 1000}
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -221,7 +221,7 @@ post-patch {
</span> 
     # Patch the wrapped clang code to use MP's compiler selection
     set wrapdir [bazel_wrap_dir]
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 755 -d ${wrapdir}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0755 -d ${wrapdir}
</span>     foreach comp {cc cxx} {
         set f [ open ${wrapdir}/${comp}_bazelwrap w 0755 ]
         puts ${f} "#!/bin/bash"
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -309,7 +309,7 @@ build {
</span>     system -W ${worksrcpath} "${bazel_cmd}"
 
     # Put executable in main working folder
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 755 -W ${worksrcpath}/output ${name} ${worksrcpath}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0755 -W ${worksrcpath}/output ${name} ${worksrcpath}
</span>     
     # Include bash completion support ?
     if { [variant_isset bash_completion]} {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -330,15 +330,15 @@ destroot {
</span>     # Copy compiled binary
     set bindir ${myprefix}/bin
     xinstall -d ${destroot}${bindir}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 755 -W ${worksrcpath}/output ${name} ${destroot}${bindir}/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0755 -W ${worksrcpath}/output ${name} ${destroot}${bindir}/
</span>     # Copy bash and zsh completion scripts to designated area for on-demand usage
     if { [variant_isset bash_completion]} {
         set bcompldir ${myprefix}/share/bash-completion/completions
         xinstall -d ${destroot}${bcompldir}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        xinstall -m 755 ${worksrcpath}/${name}-bin/scripts/${name}-complete.bash ${destroot}${bcompldir}/${name}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        xinstall -m 0755 ${worksrcpath}/${name}-bin/scripts/${name}-complete.bash ${destroot}${bcompldir}/${name}
</span>         set zcompldir ${myprefix}/share/zsh/site-functions
         xinstall -d ${destroot}${zcompldir}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        xinstall -m 755 ${worksrcpath}/scripts/zsh_completion/_${name} ${destroot}${zcompldir}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        xinstall -m 0755 ${worksrcpath}/scripts/zsh_completion/_${name} ${destroot}${zcompldir}
</span>     }
 }
 
</pre><pre style='margin:0'>

</pre>