<pre style='margin:0'>
MarcusCalhoun-Lopez pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/09564a92253b9c92c4711e38a13d6f8def9b7017">https://github.com/macports/macports-ports/commit/09564a92253b9c92c4711e38a13d6f8def9b7017</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 09564a9  qt5-1.0.tcl: change comments and code order
</span>09564a9 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 09564a92253b9c92c4711e38a13d6f8def9b7017
</span>Author: Marcus Calhoun-Lopez <mcalhoun@macports.org>
AuthorDate: Sun Nov 6 06:12:52 2016 -0700

<span style='display:block; white-space:pre;color:#404040;'>    qt5-1.0.tcl: change comments and code order
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    There is no functional change.
</span>---
 _resources/port1.0/group/qt5-1.0.tcl | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/qt5-1.0.tcl b/_resources/port1.0/group/qt5-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index aaddc2d..57a5a6e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/qt5-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/qt5-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,7 +1,7 @@
</span> # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
 # $Id: qt5-1.0.tcl 113952 2013-11-26 18:01:53Z michaelld@macports.org $
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Copyright (c) 2014 The MacPorts Project
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Copyright (c) 2014-2016 The MacPorts Project
</span> # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -36,7 +36,7 @@
</span> # PortGroup     qt5 1.0
 
 # Qt has what is calls reference configurations, which are said to be thoroughly tested
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Qt also has configurations which are occasionally tested
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Qt also has configurations which are "occasionally tested" or are "[d]eployment only"
</span> # see http://doc.qt.io/qt-5/supported-platforms.html#reference-configurations
 global qt5_min_tested_version
 global qt5_max_tested_version
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -51,15 +51,6 @@ if {[tbool just_want_qt5_version_info]} {
</span>     return
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# no universal binary support in Qt 5
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-#     see http://lists.qt-project.org/pipermail/interest/2012-December/005038.html
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-#     and https://bugreports.qt.io/browse/QTBUG-24952
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-supported_archs i386 x86_64
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-if { ![exists universal_variant] || [option universal_variant] } {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    PortGroup muniversal 1.0
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    universal_archs_supported i386 x86_64
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> # standard Qt5 name
 global qt_name
 set qt_name             qt5
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -167,6 +158,15 @@ set qt_lupdate_cmd     ${qt_dir}/bin/lupdate
</span> global qt_pkg_config_dir
 set qt_pkg_config_dir   ${qt_libs_dir}/pkgconfig
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# no universal binary support in Qt 5
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#     see http://lists.qt-project.org/pipermail/interest/2012-December/005038.html
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#     and https://bugreports.qt.io/browse/QTBUG-24952
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+supported_archs i386 x86_64
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if { ![exists universal_variant] || [option universal_variant] } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    PortGroup muniversal 1.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    universal_archs_supported i386 x86_64
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # standard qmake spec
 # other platforms required
 #     see http://doc.qt.io/qt-5/supported-platforms.html
</pre><pre style='margin:0'>

</pre>