<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/5999b46b67d727be9fab3ea757a634121187243b">https://github.com/macports/macports-base/commit/5999b46b67d727be9fab3ea757a634121187243b</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 5999b46  bump: Error out if checksums lines are missing from Portfile
</span>5999b46 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5999b46b67d727be9fab3ea757a634121187243b
</span>Author: Kurt Hindenburg <kurt.hindenburg@gmail.com>
AuthorDate: Sun Sep 22 16:44:37 2019 -0400

<span style='display:block; white-space:pre;color:#404040;'>    bump: Error out if checksums lines are missing from Portfile
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes error 'both_checksums": no such variable' when there are no
</span><span style='display:block; white-space:pre;color:#404040;'>    checksums lines in the Portfile prior to a 'port bump'.
</span>---
 src/port1.0/portbump.tcl | 2 ++
 1 file changed, 2 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portbump.tcl b/src/port1.0/portbump.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 7892c67..4c1306c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portbump.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portbump.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -152,6 +152,8 @@ proc portbump::bump_main {args} {
</span>         ui_notice "The file has been moved to: $htmlfile_path"
         
         return -code error "[msgcat::mc "Unable to verify file checksums"]"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    } elseif {![info exists both_checksums]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        return -code error "[msgcat::mc "No checksums found in Portfile"]"
</span>     } else {
         # Show the desired checksum line for easy cut-paste
         # based on the previously calculated values, plus our default types
</pre><pre style='margin:0'>

</pre>