[arch-commits] Commit in lapack/repos (12 files)
Ronald van Haren
ronald at nymeria.archlinux.org
Mon Jan 27 20:49:33 UTC 2014
Date: Monday, January 27, 2014 @ 21:49:33
Author: ronald
Revision: 204819
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
lapack/repos/extra-i686/LICENSE.blas
(from rev 204818, lapack/trunk/LICENSE.blas)
lapack/repos/extra-i686/PKGBUILD
(from rev 204818, lapack/trunk/PKGBUILD)
lapack/repos/extra-i686/lapack-3.1.1-make.inc.patch
(from rev 204818, lapack/trunk/lapack-3.1.1-make.inc.patch)
lapack/repos/extra-x86_64/LICENSE.blas
(from rev 204818, lapack/trunk/LICENSE.blas)
lapack/repos/extra-x86_64/PKGBUILD
(from rev 204818, lapack/trunk/PKGBUILD)
lapack/repos/extra-x86_64/lapack-3.1.1-make.inc.patch
(from rev 204818, lapack/trunk/lapack-3.1.1-make.inc.patch)
Deleted:
lapack/repos/extra-i686/LICENSE.blas
lapack/repos/extra-i686/PKGBUILD
lapack/repos/extra-i686/lapack-3.1.1-make.inc.patch
lapack/repos/extra-x86_64/LICENSE.blas
lapack/repos/extra-x86_64/PKGBUILD
lapack/repos/extra-x86_64/lapack-3.1.1-make.inc.patch
------------------------------------------+
/LICENSE.blas | 38 ++++++++
/PKGBUILD | 136 +++++++++++++++++++++++++++++
/lapack-3.1.1-make.inc.patch | 46 +++++++++
extra-i686/LICENSE.blas | 19 ----
extra-i686/PKGBUILD | 68 --------------
extra-i686/lapack-3.1.1-make.inc.patch | 23 ----
extra-x86_64/LICENSE.blas | 19 ----
extra-x86_64/PKGBUILD | 68 --------------
extra-x86_64/lapack-3.1.1-make.inc.patch | 23 ----
9 files changed, 220 insertions(+), 220 deletions(-)
Deleted: extra-i686/LICENSE.blas
===================================================================
--- extra-i686/LICENSE.blas 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-i686/LICENSE.blas 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,19 +0,0 @@
-From: http://www.netlib.org/blas/faq.html
-
- 2) Are there legal restrictions on the use of BLAS reference
- implementation software?
-
-The reference BLAS is a freely-available software package. It is
-available from netlib via anonymous ftp and the World Wide Web. Thus,
-it can be included in commercial software packages (and has been). We
-only ask that proper credit be given to the authors.
-
-Like all software, it is copyrighted. It is not trademarked, but we do
-ask the following:
-
-If you modify the source for these routines we ask that you change the
-name of the routine and comment the changes made to the original.
-
-We will gladly answer any questions regarding the software. If a
-modification is done, however, it is the responsibility of the person
-who modified the routine to provide support.
Copied: lapack/repos/extra-i686/LICENSE.blas (from rev 204818, lapack/trunk/LICENSE.blas)
===================================================================
--- extra-i686/LICENSE.blas (rev 0)
+++ extra-i686/LICENSE.blas 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+ implementation software?
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors.
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following:
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original.
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support.
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-i686/PKGBUILD 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Jan de Groot <jgc at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Jason Taylor <jftaylor21 at gmail.com>
-
-pkgbase=lapack
-pkgname=('lapack' 'blas')
-pkgver=3.4.2
-pkgrel=2
-url="http://www.netlib.org/lapack"
-pkgdesc="Linear Algebra PACKage"
-makedepends=('gcc-fortran' 'cmake')
-depends=('gcc-libs')
-arch=('i686' 'x86_64')
-license=("custom")
-source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz
- LICENSE.blas)
-sha1sums=('93a6e4e6639aaf00571d53a580ddc415416e868b'
- '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
-
-build() {
- cd "${srcdir}"
-
- install -d build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_RPATH=ON \
- -DBUILD_SHARED_LIBS=ON \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_Fortran_COMPILER=gfortran \
- -DLAPACKE=ON
- make
-}
-
-package_lapack() {
- depends=("blas=${pkgver}")
-
- install -m755 -d ${pkgdir}/usr/{lib,bin,include}
-
- for libname in liblapack libtmglib liblapacke; do
- install -m755 "${srcdir}/build/lib/${libname}.so" \
- "${pkgdir}/usr/lib/"
- ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.${pkgver}"
- ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.3"
- done
-
- install -m755 ${srcdir}/build/bin/* ${pkgdir}/usr/bin
- install -m644 ${srcdir}/build/include/* ${pkgdir}/usr/include
- install -m755 -d "${pkgdir}/usr/share/licenses/lapack"
- install -m644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
- "${pkgdir}/usr/share/licenses/lapack/"
-}
-
-package_blas() {
- pkgdesc="Basic Linear Algebra Subprograms"
-
- install -m755 -d "${pkgdir}/usr/lib"
- install -m755 "${srcdir}/build/lib/libblas.so" \
- "${pkgdir}/usr/lib/"
- ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.${pkgver}"
- ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.3"
-
- install -m755 -d "${pkgdir}/usr/share/licenses/blas"
- install -m644 "${srcdir}/LICENSE.blas" \
- "${pkgdir}/usr/share/licenses/blas/"
-}
Copied: lapack/repos/extra-i686/PKGBUILD (from rev 204818, lapack/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Jason Taylor <jftaylor21 at gmail.com>
+
+pkgbase=lapack
+pkgname=('lapack' 'blas')
+pkgver=3.5.0
+pkgrel=1
+url="http://www.netlib.org/lapack"
+pkgdesc="Linear Algebra PACKage"
+makedepends=('gcc-fortran' 'cmake')
+depends=('gcc-libs')
+arch=('i686' 'x86_64')
+license=("custom")
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz
+ LICENSE.blas)
+sha1sums=('5870081889bf5d15fd977993daab29cf3c5ea970'
+ '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
+
+build() {
+ cd "${srcdir}"
+
+ install -d build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DBUILD_SHARED_LIBS=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_Fortran_COMPILER=gfortran \
+ -DLAPACKE=ON
+ make
+}
+
+package_lapack() {
+ depends=("blas=${pkgver}")
+
+ install -m755 -d ${pkgdir}/usr/{lib,bin,include}
+
+ for libname in liblapack libtmglib liblapacke; do
+ install -m755 "${srcdir}/build/lib/${libname}.so" \
+ "${pkgdir}/usr/lib/"
+ ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.${pkgver}"
+ ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.3"
+ done
+
+ install -m755 "${srcdir}"/build/bin/* "${pkgdir}/usr/bin"
+ install -m644 "${srcdir}"/build/include/* "${pkgdir}/usr/include"
+ install -m755 -d "${pkgdir}/usr/share/licenses/lapack"
+ install -m644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "${pkgdir}/usr/share/licenses/lapack/"
+}
+
+package_blas() {
+ pkgdesc="Basic Linear Algebra Subprograms"
+
+ install -m755 -d "${pkgdir}/usr/lib"
+ install -m755 "${srcdir}/build/lib/libblas.so" \
+ "${pkgdir}/usr/lib/"
+ ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.${pkgver}"
+ ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.3"
+
+ install -m755 -d "${pkgdir}/usr/share/licenses/blas"
+ install -m644 "${srcdir}/LICENSE.blas" \
+ "${pkgdir}/usr/share/licenses/blas/"
+}
Deleted: extra-i686/lapack-3.1.1-make.inc.patch
===================================================================
--- extra-i686/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-i686/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,23 +0,0 @@
---- lapack-3.1.1/INSTALL/make.inc.gfortran.BAD 2007-05-25 15:34:55.000000000 -0500
-+++ lapack-3.1.1/INSTALL/make.inc.gfortran 2007-05-25 15:35:51.000000000 -0500
-@@ -8,7 +8,7 @@ SHELL = /bin/sh
- #
- # The machine (platform) identifier to append to the library names
- #
--PLAT = _LINUX
-+PLAT =
- #
- # Modify the FORTRAN and OPTS definitions to refer to the
- # compiler and desired compiler options for your machine. NOOPT
-@@ -17,9 +17,9 @@ PLAT = _LINUX
- # desired load options for your machine.
- #
- FORTRAN = gfortran
--OPTS = -O2
-+#OPTS = -O2
- DRVOPTS = $(OPTS)
--NOOPT = -O0
-+NOOPT =
- LOADER = gfortran
- LOADOPTS =
- #
Copied: lapack/repos/extra-i686/lapack-3.1.1-make.inc.patch (from rev 204818, lapack/trunk/lapack-3.1.1-make.inc.patch)
===================================================================
--- extra-i686/lapack-3.1.1-make.inc.patch (rev 0)
+++ extra-i686/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,23 @@
+--- lapack-3.1.1/INSTALL/make.inc.gfortran.BAD 2007-05-25 15:34:55.000000000 -0500
++++ lapack-3.1.1/INSTALL/make.inc.gfortran 2007-05-25 15:35:51.000000000 -0500
+@@ -8,7 +8,7 @@ SHELL = /bin/sh
+ #
+ # The machine (platform) identifier to append to the library names
+ #
+-PLAT = _LINUX
++PLAT =
+ #
+ # Modify the FORTRAN and OPTS definitions to refer to the
+ # compiler and desired compiler options for your machine. NOOPT
+@@ -17,9 +17,9 @@ PLAT = _LINUX
+ # desired load options for your machine.
+ #
+ FORTRAN = gfortran
+-OPTS = -O2
++#OPTS = -O2
+ DRVOPTS = $(OPTS)
+-NOOPT = -O0
++NOOPT =
+ LOADER = gfortran
+ LOADOPTS =
+ #
Deleted: extra-x86_64/LICENSE.blas
===================================================================
--- extra-x86_64/LICENSE.blas 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-x86_64/LICENSE.blas 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,19 +0,0 @@
-From: http://www.netlib.org/blas/faq.html
-
- 2) Are there legal restrictions on the use of BLAS reference
- implementation software?
-
-The reference BLAS is a freely-available software package. It is
-available from netlib via anonymous ftp and the World Wide Web. Thus,
-it can be included in commercial software packages (and has been). We
-only ask that proper credit be given to the authors.
-
-Like all software, it is copyrighted. It is not trademarked, but we do
-ask the following:
-
-If you modify the source for these routines we ask that you change the
-name of the routine and comment the changes made to the original.
-
-We will gladly answer any questions regarding the software. If a
-modification is done, however, it is the responsibility of the person
-who modified the routine to provide support.
Copied: lapack/repos/extra-x86_64/LICENSE.blas (from rev 204818, lapack/trunk/LICENSE.blas)
===================================================================
--- extra-x86_64/LICENSE.blas (rev 0)
+++ extra-x86_64/LICENSE.blas 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+ implementation software?
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors.
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following:
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original.
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support.
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-x86_64/PKGBUILD 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Jan de Groot <jgc at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Jason Taylor <jftaylor21 at gmail.com>
-
-pkgbase=lapack
-pkgname=('lapack' 'blas')
-pkgver=3.4.2
-pkgrel=2
-url="http://www.netlib.org/lapack"
-pkgdesc="Linear Algebra PACKage"
-makedepends=('gcc-fortran' 'cmake')
-depends=('gcc-libs')
-arch=('i686' 'x86_64')
-license=("custom")
-source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz
- LICENSE.blas)
-sha1sums=('93a6e4e6639aaf00571d53a580ddc415416e868b'
- '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
-
-build() {
- cd "${srcdir}"
-
- install -d build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_RPATH=ON \
- -DBUILD_SHARED_LIBS=ON \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_Fortran_COMPILER=gfortran \
- -DLAPACKE=ON
- make
-}
-
-package_lapack() {
- depends=("blas=${pkgver}")
-
- install -m755 -d ${pkgdir}/usr/{lib,bin,include}
-
- for libname in liblapack libtmglib liblapacke; do
- install -m755 "${srcdir}/build/lib/${libname}.so" \
- "${pkgdir}/usr/lib/"
- ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.${pkgver}"
- ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.3"
- done
-
- install -m755 ${srcdir}/build/bin/* ${pkgdir}/usr/bin
- install -m644 ${srcdir}/build/include/* ${pkgdir}/usr/include
- install -m755 -d "${pkgdir}/usr/share/licenses/lapack"
- install -m644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
- "${pkgdir}/usr/share/licenses/lapack/"
-}
-
-package_blas() {
- pkgdesc="Basic Linear Algebra Subprograms"
-
- install -m755 -d "${pkgdir}/usr/lib"
- install -m755 "${srcdir}/build/lib/libblas.so" \
- "${pkgdir}/usr/lib/"
- ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.${pkgver}"
- ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.3"
-
- install -m755 -d "${pkgdir}/usr/share/licenses/blas"
- install -m644 "${srcdir}/LICENSE.blas" \
- "${pkgdir}/usr/share/licenses/blas/"
-}
Copied: lapack/repos/extra-x86_64/PKGBUILD (from rev 204818, lapack/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Jason Taylor <jftaylor21 at gmail.com>
+
+pkgbase=lapack
+pkgname=('lapack' 'blas')
+pkgver=3.5.0
+pkgrel=1
+url="http://www.netlib.org/lapack"
+pkgdesc="Linear Algebra PACKage"
+makedepends=('gcc-fortran' 'cmake')
+depends=('gcc-libs')
+arch=('i686' 'x86_64')
+license=("custom")
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz
+ LICENSE.blas)
+sha1sums=('5870081889bf5d15fd977993daab29cf3c5ea970'
+ '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
+
+build() {
+ cd "${srcdir}"
+
+ install -d build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DBUILD_SHARED_LIBS=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_Fortran_COMPILER=gfortran \
+ -DLAPACKE=ON
+ make
+}
+
+package_lapack() {
+ depends=("blas=${pkgver}")
+
+ install -m755 -d ${pkgdir}/usr/{lib,bin,include}
+
+ for libname in liblapack libtmglib liblapacke; do
+ install -m755 "${srcdir}/build/lib/${libname}.so" \
+ "${pkgdir}/usr/lib/"
+ ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.${pkgver}"
+ ln -sf ${libname}.so "${pkgdir}/usr/lib/${libname}.so.3"
+ done
+
+ install -m755 "${srcdir}"/build/bin/* "${pkgdir}/usr/bin"
+ install -m644 "${srcdir}"/build/include/* "${pkgdir}/usr/include"
+ install -m755 -d "${pkgdir}/usr/share/licenses/lapack"
+ install -m644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "${pkgdir}/usr/share/licenses/lapack/"
+}
+
+package_blas() {
+ pkgdesc="Basic Linear Algebra Subprograms"
+
+ install -m755 -d "${pkgdir}/usr/lib"
+ install -m755 "${srcdir}/build/lib/libblas.so" \
+ "${pkgdir}/usr/lib/"
+ ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.${pkgver}"
+ ln -sf libblas.so "${pkgdir}/usr/lib/libblas.so.3"
+
+ install -m755 -d "${pkgdir}/usr/share/licenses/blas"
+ install -m644 "${srcdir}/LICENSE.blas" \
+ "${pkgdir}/usr/share/licenses/blas/"
+}
Deleted: extra-x86_64/lapack-3.1.1-make.inc.patch
===================================================================
--- extra-x86_64/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:13 UTC (rev 204818)
+++ extra-x86_64/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:33 UTC (rev 204819)
@@ -1,23 +0,0 @@
---- lapack-3.1.1/INSTALL/make.inc.gfortran.BAD 2007-05-25 15:34:55.000000000 -0500
-+++ lapack-3.1.1/INSTALL/make.inc.gfortran 2007-05-25 15:35:51.000000000 -0500
-@@ -8,7 +8,7 @@ SHELL = /bin/sh
- #
- # The machine (platform) identifier to append to the library names
- #
--PLAT = _LINUX
-+PLAT =
- #
- # Modify the FORTRAN and OPTS definitions to refer to the
- # compiler and desired compiler options for your machine. NOOPT
-@@ -17,9 +17,9 @@ PLAT = _LINUX
- # desired load options for your machine.
- #
- FORTRAN = gfortran
--OPTS = -O2
-+#OPTS = -O2
- DRVOPTS = $(OPTS)
--NOOPT = -O0
-+NOOPT =
- LOADER = gfortran
- LOADOPTS =
- #
Copied: lapack/repos/extra-x86_64/lapack-3.1.1-make.inc.patch (from rev 204818, lapack/trunk/lapack-3.1.1-make.inc.patch)
===================================================================
--- extra-x86_64/lapack-3.1.1-make.inc.patch (rev 0)
+++ extra-x86_64/lapack-3.1.1-make.inc.patch 2014-01-27 20:49:33 UTC (rev 204819)
@@ -0,0 +1,23 @@
+--- lapack-3.1.1/INSTALL/make.inc.gfortran.BAD 2007-05-25 15:34:55.000000000 -0500
++++ lapack-3.1.1/INSTALL/make.inc.gfortran 2007-05-25 15:35:51.000000000 -0500
+@@ -8,7 +8,7 @@ SHELL = /bin/sh
+ #
+ # The machine (platform) identifier to append to the library names
+ #
+-PLAT = _LINUX
++PLAT =
+ #
+ # Modify the FORTRAN and OPTS definitions to refer to the
+ # compiler and desired compiler options for your machine. NOOPT
+@@ -17,9 +17,9 @@ PLAT = _LINUX
+ # desired load options for your machine.
+ #
+ FORTRAN = gfortran
+-OPTS = -O2
++#OPTS = -O2
+ DRVOPTS = $(OPTS)
+-NOOPT = -O0
++NOOPT =
+ LOADER = gfortran
+ LOADOPTS =
+ #
More information about the arch-commits
mailing list