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

</pre>
<p><a href="https://github.com/macports/macports-base/commit/6cf70dbb8142b0d88bfc491e7d812e47d6638cf7">https://github.com/macports/macports-base/commit/6cf70dbb8142b0d88bfc491e7d812e47d6638cf7</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 6cf70dbb8 open_statefile: mention port name in messages
</span>6cf70dbb8 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 6cf70dbb8142b0d88bfc491e7d812e47d6638cf7
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Mon Sep 18 23:02:58 2023 +1000

<span style='display:block; white-space:pre;color:#404040;'>    open_statefile: mention port name in messages
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes: https://trac.macports.org/ticket/45981
</span>---
 src/port1.0/portutil.tcl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portutil.tcl b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index fda96d1ef..b50c4eb61 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1833,7 +1833,7 @@ proc open_statefile {args} {
</span>             return -code error "$statefile is not writable - check permission on port directory"
         }
         if {[file mtime ${portpath}/Portfile] > [clock seconds]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            return -code error "Portfile is from the future - check date and time of your system"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            return -code error "Portfile for $subport is from the future - check date and time of your system"
</span>         }
         if {![tbool ports_ignore_different]} {
             # start by assuming the statefile is current
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1883,13 +1883,13 @@ proc open_statefile {args} {
</span>             }
             if {[tbool portfile_changed]} {
                 if {![tbool ports_dryrun]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    ui_notice "Portfile changed since last build; discarding previous state."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    ui_notice "Portfile for $subport changed since last build; discarding previous state."
</span>                     chownAsRoot $subbuildpath
                     delete $workpath
                     file mkdir $workpath
                     set fresh_build yes
                 } else {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    ui_notice "Portfile changed since last build but not discarding previous state (dry run)"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    ui_notice "Portfile for $subport changed since last build but not discarding previous state (dry run)"
</span>                 }
             }
             close $readfd
</pre><pre style='margin:0'>

</pre>