<pre style='margin:0'>
David Strubbe (dstrubbe) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c0f603f02f0d168928d49ae00b9f1b46b04406ed">https://github.com/macports/macports-ports/commit/c0f603f02f0d168928d49ae00b9f1b46b04406ed</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 c0f603f  hpl: Fix case-sensitivity issue.
</span>c0f603f is described below

<span style='display:block; white-space:pre;color:#808000;'>commit c0f603f02f0d168928d49ae00b9f1b46b04406ed
</span>Author: David Strubbe <dstrubbe@macports.org>
AuthorDate: Thu Oct 25 12:55:21 2018 -0700

<span style='display:block; white-space:pre;color:#404040;'>    hpl: Fix case-sensitivity issue.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The discrepancy between "MacOS" and "macos" in different places for HPL's concept of "arch" could cause a build failure due to discrepancies in filenames. Closes https://trac.macports.org/ticket/57440.
</span>---
 science/hpl/Portfile | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/hpl/Portfile b/science/hpl/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index b48fb54..25c1db7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/hpl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/hpl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -36,20 +36,22 @@ patchfiles          patch-Makefile.diff
</span> 
 use_configure       no
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+set archname        macos
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> pre-build {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    file copy ${worksrcpath}/setup/Make.FreeBSD_PIV_CBLAS ${worksrcpath}/Make.macos
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    file copy ${worksrcpath}/setup/Make.FreeBSD_PIV_CBLAS ${worksrcpath}/Make.${archname}
</span> }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-build.args          ARCH=MacOS TOPdir=${worksrcpath} MPlib=
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-build.target        all-j arch=macos
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+build.args          ARCH=${archname} TOPdir=${worksrcpath} MPlib=
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+build.target        all-j arch=${archname}
</span> use_parallel_build  yes
 
 test.run  yes
 
 destroot {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall ${worksrcpath}/bin/macos/xhpl ${destroot}${prefix}/bin/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall ${worksrcpath}/bin/${archname}/xhpl ${destroot}${prefix}/bin/
</span>     xinstall -d ${destroot}${prefix}/share/hpl
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall ${worksrcpath}/bin/macos/HPL.dat ${destroot}${prefix}/share/hpl/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall ${worksrcpath}/bin/${archname}/HPL.dat ${destroot}${prefix}/share/hpl/
</span>     xinstall ${worksrcpath}/TUNING ${destroot}${prefix}/share/hpl/
 }
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -64,7 +66,7 @@ pre-test {
</span>         set njobs 4
     }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    test.cmd cd bin/macos && ${mpi.exec} -n ${njobs} ./xhpl
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    test.cmd cd bin/${archname} && ${mpi.exec} -n ${njobs} ./xhpl
</span> }
 
 pre-fetch {
</pre><pre style='margin:0'>

</pre>