<pre style='margin:0'>
Mojca Miklavec (mojca) pushed a commit to branch master
in repository macports-contrib.

</pre>
<p><a href="https://github.com/macports/macports-contrib/commit/762061c5f2079ff4dc5dbd9696131373501cfd06">https://github.com/macports/macports-contrib/commit/762061c5f2079ff4dc5dbd9696131373501cfd06</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 762061c5f2079ff4dc5dbd9696131373501cfd06
</span>Author: Arjun Salyan <arjun.salyan.che17@iitbhu.ac.in>
AuthorDate: Sun Mar 17 21:25:10 2019 +0530

<span style='display:block; white-space:pre;color:#404040;'>    Open PortIndex as file instead of using stdin
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://github.com/repology/repology/commit/f6d38be188271ce36052aed8aa1efe88340827b1
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Removed Trailing White Space
</span>---
 .DS_Store                         | Bin 0 -> 10244 bytes
 portindex2json/portindex2json.tcl |   6 +++---
 2 files changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/.DS_Store b/.DS_Store
</span>new file mode 100644
<span style='display:block; white-space:pre;color:#808080;'>index 0000000..8dfaa34
</span>Binary files /dev/null and b/.DS_Store differ
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/portindex2json/portindex2json.tcl b/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 54a3364..92e5412 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,8 +1,8 @@
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# Script for converting the metadata in the PortIndex to 
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Script for converting the metadata in the PortIndex to
</span> # a list of JSON objects.
 # Written by Joshua Root <jmr@macports.org>, 2017
 # Requires: tclsh with the tcllib 'json' package.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Usage: tclsh portindex2json.tcl < path/to/PortIndex
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Usage: tclsh portindex2json.tcl path/to/PortIndex
</span> 
 # To the extent possible under law, the author(s) have dedicated all
 # copyright and related and neighboring rights to this software to the
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -12,7 +12,7 @@
</span> 
 package require json::write
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-set fd stdin
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+set fd [open [lindex $argv 0] r]
</span> chan configure $fd -encoding utf-8
 while {[gets $fd line] >= 0} {
     if {[llength $line] != 2} {
</pre><pre style='margin:0'>

</pre>