Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Feb 2015 15:35:15 +0000 (UTC)
From:      Thierry Thomas <thierry@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378246 - in head/math/openblas: . files
Message-ID:  <201502011535.t11FZFMe043163@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: thierry
Date: Sun Feb  1 15:35:15 2015
New Revision: 378246
URL: https://svnweb.freebsd.org/changeset/ports/378246
QAT: https://qat.redports.org/buildarchive/r378246/

Log:
  Minor update to 0.2.13, some select important updates from
  http://www.openblas.net/Changelog.txt:
  
  * Fix Fortran compiler detection on FreeBSD.
  	  (#470, Thanks Mike Nolta)
  * Fix a bug of sgemm kernel on Intel Sandy Bridge.
  * Added CBLAS interface for ?omatcopy and ?imatcopy.
  * Improved axpy and symv performance on AMD Bulldozer.
  * Improved gemv performance on modern Intel and AMD CPUs.
  
  PR:		ports/197231
  Submitted by:	dieterich.joh (at) gmail.com
  Approved by:	phd_kimberlite (at) yahoo.co.jp (maintainer)

Modified:
  head/math/openblas/Makefile
  head/math/openblas/distinfo
  head/math/openblas/files/patch-c_check

Modified: head/math/openblas/Makefile
==============================================================================
--- head/math/openblas/Makefile	Sun Feb  1 15:27:13 2015	(r378245)
+++ head/math/openblas/Makefile	Sun Feb  1 15:35:15 2015	(r378246)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	openblas
-PORTVERSION=	0.2.11
+PORTVERSION=	0.2.13
 CATEGORIES=	math
 MASTER_SITES=	https://codeload.github.com/${GH_ACCOUNT}/${GH_PROJECT}/legacy.tar.gz/${GH_TAGNAME}?dummy=/:${PORTNAME} \
 		NL:lapack_tmg
@@ -19,7 +19,7 @@ DIST_SUBDIR=	openblas
 GH_ACCOUNT=	xianyi
 GH_PROJECT=	OpenBLAS
 GH_TAGNAME=	${GH_COMMIT}
-GH_COMMIT=	ea8d4e3
+GH_COMMIT=	51ce5ef
 LARGE_FILE=	large.tgz
 TIMING_FILE=	timing.tgz
 

Modified: head/math/openblas/distinfo
==============================================================================
--- head/math/openblas/distinfo	Sun Feb  1 15:27:13 2015	(r378245)
+++ head/math/openblas/distinfo	Sun Feb  1 15:35:15 2015	(r378246)
@@ -1,5 +1,5 @@
-SHA256 (openblas/openblas-0.2.11.tar.gz) = babe5898c05da8a95249c1b038f7fbe14a95e35fee75358d649009f93ef444ed
-SIZE (openblas/openblas-0.2.11.tar.gz) = 9765198
+SHA256 (openblas/openblas-0.2.13.tar.gz) = 909518a34d1b13c3c854153c73f9062c8598436c55a267ae6b4f833c77d8b9f4
+SIZE (openblas/openblas-0.2.13.tar.gz) = 9858159
 SHA256 (openblas/large.tgz) = f328d88b7fa97722f271d7d0cfea1c220e0f8e5ed5ff01d8ef1eb51d6f4243a1
 SIZE (openblas/large.tgz) = 2595
 SHA256 (openblas/timing.tgz) = 999c65f8ea8bd4eac7f1c7f3463d4946917afd20a997807300fe35d70122f3af

Modified: head/math/openblas/files/patch-c_check
==============================================================================
--- head/math/openblas/files/patch-c_check	Sun Feb  1 15:27:13 2015	(r378245)
+++ head/math/openblas/files/patch-c_check	Sun Feb  1 15:35:15 2015	(r378246)
@@ -1,15 +1,6 @@
---- c_check.orig	2012-02-05 16:25:21.000000000 +0900
-+++ c_check	2012-02-05 16:26:54.000000000 +0900
-@@ -2,7 +2,7 @@
- 
- # Checking cross compile
- $hostos   = `uname -s | sed -e s/\-.*//`;    chop($hostos);
--$hostarch = `uname -m | sed -e s/i.86/x86/`;chop($hostarch);
-+$hostarch = `uname -m | sed -e s/i.86/x86/ | sed -e s/amd64/x86_64/`;chop($hostarch);
- 
- $binary = $ENV{"BINARY"};
- 
-@@ -215,7 +215,7 @@
+--- c_check.orig	2014-12-03 16:14:21.000000000 +0100
++++ c_check	2015-02-01 01:01:27.784108000 +0100
+@@ -228,7 +228,7 @@
  # print $data, "\n";
  
  print MAKEFILE "OSNAME=$os\n";



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502011535.t11FZFMe043163>