<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/c1bbe2de68535050469fb2aa5bf589f4b12ea4ca">https://github.com/macports/mpbb/commit/c1bbe2de68535050469fb2aa5bf589f4b12ea4ca</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 c1bbe2d  handle files/ with subdirs correctly
</span>c1bbe2d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit c1bbe2de68535050469fb2aa5bf589f4b12ea4ca
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Sun Jan 17 15:33:52 2021 +1100

<span style='display:block; white-space:pre;color:#404040;'>    handle files/ with subdirs correctly
</span>---
 tools/sort-with-subports.tcl | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/tools/sort-with-subports.tcl b/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index cf6dc06..06a3a14 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -107,8 +107,11 @@ proc check_failing_deps {portname} {
</span> # slightly odd method as per mpbb's compute_failcache_hash
 proc port_files_checksum {porturl} {
     set portdir [macports::getportdir $porturl]
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    foreach f [list ${portdir}/Portfile {*}[glob -nocomplain -directory ${portdir}/files -types f *]] {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        lappend hashlist [::sha2::sha256 -hex -file $f]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    lappend hashlist [::sha2::sha256 -hex -file ${portdir}/Portfile]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    fs-traverse f [list ${portdir}/files] {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        if {[file type $f] eq "file"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            lappend hashlist [::sha2::sha256 -hex -file $f]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        }
</span>     }
     foreach hash [lsort $hashlist] {
         append compound_hash "${hash}\n"
</pre><pre style='margin:0'>

</pre>