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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/cb94eced6d6881f41b80ff1f7385d2a4f586962f">https://github.com/macports/macports-ports/commit/cb94eced6d6881f41b80ff1f7385d2a4f586962f</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 cb94eced6d6 pass: fix bash, fish and zsh completion installation
</span>cb94eced6d6 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit cb94eced6d6881f41b80ff1f7385d2a4f586962f
</span>Author: Matthew Leach <matthew@mattleach.net>
AuthorDate: Sat Dec 12 19:43:44 2020 +0000

<span style='display:block; white-space:pre;color:#404040;'>    pass: fix bash, fish and zsh completion installation
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Currently, makefile variables are used that aren't referenced in pass'
</span><span style='display:block; white-space:pre;color:#404040;'>    Makefile.  The name of the variables that control completion install
</span><span style='display:block; white-space:pre;color:#404040;'>    must have changed from FORCE_<shellname> to WITH_<shellname>.
</span>---
 security/pass/Portfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/security/pass/Portfile b/security/pass/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 78ce2fed1f3..e2fdeeb0d54 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/security/pass/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/security/pass/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,6 +4,7 @@ PortSystem          1.0
</span> 
 name                pass
 version             1.7.3
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> maintainers         nomaintainer
 categories          security
 description         ${name} is the standard unix password manager
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -44,7 +45,7 @@ default_variants    +bash
</span> 
 variant bash description {Include Bash completion support} {
     depends_run-append port:bash
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    destroot.env-append FORCE_BASHCOMP=1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    destroot.env-append WITH_BASHCOMP=yes
</span> 
     notes-append {
         To use pass bash completion, add the following lines at the end of your .bash_profile:
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -54,12 +55,12 @@ variant bash description {Include Bash completion support} {
</span> 
 variant fish description {Include fish completion support} {
     depends_run-append port:fish
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    destroot.env-append FORCE_FISHCOMP=1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    destroot.env-append WITH_FISHCOMP=yes
</span> }
 
 variant zsh description {Include Zsh completion support} {
     depends_run-append port:zsh
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    destroot.env-append FORCE_ZSHCOMP=1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    destroot.env-append WITH_ZSHCOMP=yes
</span> }
 
 livecheck.type    regex
</pre><pre style='margin:0'>

</pre>