<pre style='margin:0'>
Kurt Hindenburg (kurthindenburg) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/5037999ebd06309ea216110d17befccc960266cf">https://github.com/macports/macports-base/commit/5037999ebd06309ea216110d17befccc960266cf</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 5037999  Adjust lint --niptick on patchfiles to allow *.diff or *.patch (#170)
</span>5037999 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5037999ebd06309ea216110d17befccc960266cf
</span>Author: Kurt Hindenburg <kurt.hindenburg@gmail.com>
AuthorDate: Sun Apr 19 11:10:58 2020 -0400

<span style='display:block; white-space:pre;color:#404040;'>    Adjust lint --niptick on patchfiles to allow *.diff or *.patch (#170)
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The current behavior is to only allow patch-*.diff patchfiles.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Ryan Schmidt's comment on ticket 59695:
</span><span style='display:block; white-space:pre;color:#404040;'>    The lint warning was originally added to discourage users from adding
</span><span style='display:block; white-space:pre;color:#404040;'>    patchfiles that had neither the .diff nor the .patch extension, since
</span><span style='display:block; white-space:pre;color:#404040;'>    that resulted in incorrect syntax coloring in text editors that
</span><span style='display:block; white-space:pre;color:#404040;'>    determine the filetype from the extension.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    closes https://trac.macports.org/ticket/59695
</span>---
 src/port1.0/portlint.tcl | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portlint.tcl b/src/port1.0/portlint.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 65e8009..28d62fb 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portlint.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portlint.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -819,8 +819,10 @@ proc portlint::lint_main {args} {
</span> 
     if {$nitpick && [info exists patchfiles]} {
         foreach patchfile $patchfiles {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            if {![string match "patch-*.diff" $patchfile] && [file exists "$portpath/files/$patchfile"]} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                ui_warn "Patchfile $patchfile does not follow the source patch naming policy \"patch-*.diff\""
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if {!([string match "*.diff" $patchfile] ||
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                  [string match "*.patch" $patchfile]) &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                 [file exists "$portpath/files/$patchfile"]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                ui_warn "Patchfile $patchfile does not follow the source patch naming policy \"*.diff\" or \"*.patch\""
</span>                 incr warnings
             }
         }
</pre><pre style='margin:0'>

</pre>