<pre style='margin:0'>
Michael Dickens (michaelld) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/70e6f87b012c5b35beaed3761837e571fb79423b">https://github.com/macports/macports-ports/commit/70e6f87b012c5b35beaed3761837e571fb79423b</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 70e6f87  pybombs: fix python variants to work correctly
</span>70e6f87 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 70e6f87b012c5b35beaed3761837e571fb79423b
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Wed Aug 22 16:16:10 2018 -0400

<span style='display:block; white-space:pre;color:#404040;'>    pybombs: fix python variants to work correctly
</span>---
 science/pybombs/Portfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/pybombs/Portfile b/science/pybombs/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4f3c199..9f98a37 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/pybombs/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/pybombs/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -57,10 +57,12 @@ if {${subport} eq ${name}} {
</span> 
 foreach this_py_version_no_dot ${pythons_suffixes} {
     set ndx [lsearch -exact ${pythons_suffixes} ${this_py_version_no_dot}]
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set this_conflicts [lreplace ${pythons_suffixes} ${ndx} ${ndx}]
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    set this_description "Use python${this_py_version_no_dot}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set this_conflicts_no_dot [lreplace ${pythons_suffixes} ${ndx} ${ndx}]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set this_conflicts [join ${this_conflicts_no_dot} " python"]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set py_version_with_dot [join [split ${this_py_version_no_dot} ""] "."]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set this_description "Use Python ${py_version_with_dot}"
</span>     variant python${this_py_version_no_dot} \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        conflicts {*}${this_conflicts} \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        conflicts python${this_conflicts} \
</span>         description ${this_description} "
             python.default_version ${this_py_version_no_dot}
             depends_build-append \
</pre><pre style='margin:0'>

</pre>