[arch-commits] Commit in julia/repos (8 files)

2017-06-25 Thread Antonio Rojas
Date: Sunday, June 25, 2017 @ 16:37:13
  Author: arojas
Revision: 240927

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  julia/repos/community-staging-i686/
  julia/repos/community-staging-i686/PKGBUILD
(from rev 240926, julia/trunk/PKGBUILD)
  julia/repos/community-staging-i686/julia-libunwind-version.patch
(from rev 240926, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-staging-i686/sysfix.install
(from rev 240926, julia/trunk/sysfix.install)
  julia/repos/community-staging-x86_64/
  julia/repos/community-staging-x86_64/PKGBUILD
(from rev 240926, julia/trunk/PKGBUILD)
  julia/repos/community-staging-x86_64/julia-libunwind-version.patch
(from rev 240926, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-staging-x86_64/sysfix.install
(from rev 240926, julia/trunk/sysfix.install)

+
 community-staging-i686/PKGBUILD|  143 +++
 community-staging-i686/julia-libunwind-version.patch   |   15 +
 community-staging-i686/sysfix.install  |   10 +
 community-staging-x86_64/PKGBUILD  |  143 +++
 community-staging-x86_64/julia-libunwind-version.patch |   15 +
 community-staging-x86_64/sysfix.install|   10 +
 6 files changed, 336 insertions(+)

Copied: julia/repos/community-staging-i686/PKGBUILD (from rev 240926, 
julia/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-25 16:37:13 UTC (rev 240927)
@@ -0,0 +1,143 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.6.0
+pkgrel=1
+epoch=2
+arch=('x86_64' 'i686')
+pkgdesc='High-level, high-performance, dynamic programming language'
+url='http://julialang.org/'
+license=('MIT')
+makedepends=('gcc-fortran' 'python2' 'blas' 'lapack' 'arpack' 'libunwind' 
'fftw' 'llvm'
+ 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
+options=('!emptydirs' 'staticlibs')
+source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc}
 julia-libunwind-version.patch)
+sha256sums=('1c62bfce8075acf2b5b02355520a61210690324eceb021030681459d18a3a665'
+'SKIP'
+'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9')
+validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
+
+prepare() {
+  # For /etc/ld.so.conf.d/
+  echo '/usr/lib/julia' > julia.conf
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../julia-libunwind-version.patch
+}
+
+build() {
+  # Make sure not to set -march
+  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
+  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
+
+  # SSE2 is a requirement for Julia on 32-bit x86
+  unset ARCH
+  if [[ $CARCH == i686 ]]; then
+export M="pentium4"
+export CFLAGS+=" -march=pentium4"
+export CXXFLAGS+=" -march=pentium4"
+  else
+export M="x86-64"
+  fi
+
+  cd julia-$pkgver
+  make prefix=/usr sysconfdir=/etc \
+MARCH=$M \
+USE_SYSTEM_LLVM=1 \
+USE_SYSTEM_LIBUNWIND=1 \
+USE_SYSTEM_PCRE=1 \
+USE_SYSTEM_LIBM=1 \
+USE_SYSTEM_OPENLIBM=0 \
+USE_SYSTEM_OPENSPECFUN=0 \
+USE_SYSTEM_BLAS=1 \
+USE_SYSTEM_LAPACK=1 \
+USE_SYSTEM_FFTW=1 \
+USE_SYSTEM_GMP=1 \
+USE_SYSTEM_MPFR=1 \
+USE_SYSTEM_ARPACK=1 \
+USE_SYSTEM_SUITESPARSE=1 \
+USE_SYSTEM_LIBUV=0 \
+USE_SYSTEM_UTF8PROC=0 \
+USE_INTEL_MKL=0 \
+USE_BLAS64=0 \
+USE_LLVM_SHLIB=1 \
+USE_SYSTEM_LIBGIT2=1 \
+USE_SYSTEM_PATCHELF=1 \
+USE_SYSTEM_DSFMT=0
+}
+
+package_julia() {
+  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
+  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm-libs' 'patchelf' 'hicolor-icon-theme')
+  optdepends=('gnuplot: If using the Gaston Package from julia')
+  install='sysfix.install'
+
+  # Make sure not to set -march
+  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
+  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
+
+  # SSE2 is a requirement for Julia on 32-bit x86
+  if [[ $CARCH == i686 ]]; then
+export M="pentium4"
+export CFLAGS+=" -march=pentium4"
+export CXXFLAGS+=" -march=pentium4"
+  else
+export M="x86-64"
+  fi
+
+  cd julia-$pkgver
+  make DESTDIR="$pkgdir" \
+prefix=/usr sysconfdir=/etc  \
+MARCH=$M \
+USE_SYSTEM_LLVM=1 \
+USE_SYSTEM_LIBUNWIND=1 \
+USE_SYSTEM_PCRE=1 \
+USE_SYSTEM_LIBM=1 \
+USE_SYSTEM_OPENLIBM=0 \
+USE_SYSTEM_OPENSPECFUN=0 \
+USE_SYSTEM_BLAS=1 \
+USE_SYSTEM_LAPACK=1 \
+   

[arch-commits] Commit in julia/repos (8 files)

2017-05-11 Thread Antonio Rojas
Date: Thursday, May 11, 2017 @ 17:49:53
  Author: arojas
Revision: 227806

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 227805, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 227805, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 227805, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 227805, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  278 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  139 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  139 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 298 insertions(+), 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-11 17:49:19 UTC (rev 227805)
+++ community-i686/PKGBUILD 2017-05-11 17:49:53 UTC (rev 227806)
@@ -1,139 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=7
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'llvm39'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  unset ARCH
-  if [[ $CARCH == i686 ]]; then
-export M="pentium4"
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-MARCH=$M \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm39-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M="pentium4"
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=$M \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"

[arch-commits] Commit in julia/repos (8 files)

2017-04-26 Thread Antonio Rojas
Date: Wednesday, April 26, 2017 @ 15:39:04
  Author: arojas
Revision: 225681

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 225680, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 225680, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 225680, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 225680, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  278 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  139 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  139 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 298 insertions(+), 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-26 15:38:21 UTC (rev 225680)
+++ community-i686/PKGBUILD 2017-04-26 15:39:04 UTC (rev 225681)
@@ -1,139 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=6
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'llvm39'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  unset ARCH
-  if [[ $CARCH == i686 ]]; then
-export M="pentium4"
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-MARCH=$M \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm39-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M="pentium4"
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=$M \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.co

[arch-commits] Commit in julia/repos (8 files)

2017-04-23 Thread Antonio Rojas
Date: Sunday, April 23, 2017 @ 08:43:02
  Author: arojas
Revision: 224572

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 224571, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 224571, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 224571, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 224571, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  278 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  130 -
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  130 -
 community-x86_64/sysfix.install |   10 -
 6 files changed, 298 insertions(+), 280 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-23 08:42:34 UTC (rev 224571)
+++ community-i686/PKGBUILD 2017-04-23 08:43:02 UTC (rev 224572)
@@ -1,130 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=5
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'llvm39'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm39-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir

[arch-commits] Commit in julia/repos (8 files)

2017-04-22 Thread Antonio Rojas
Date: Saturday, April 22, 2017 @ 18:19:02
  Author: arojas
Revision: 224416

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 224415, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 224415, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 224415, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 224415, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  260 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  134 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  134 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 280 insertions(+), 288 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-22 18:18:30 UTC (rev 224415)
+++ community-i686/PKGBUILD 2017-04-22 18:19:02 UTC (rev 224416)
@@ -1,134 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=4
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M=pentium4
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-MARCH=$M \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M=pentium4
-  else
-export M="x86-64"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=$M \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples

[arch-commits] Commit in julia/repos (8 files)

2017-03-28 Thread Antonio Rojas
Date: Tuesday, March 28, 2017 @ 22:40:06
  Author: arojas
Revision: 219762

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 219761, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 219761, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 219761, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 219761, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  268 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  130 --
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  130 --
 community-x86_64/sysfix.install |   10 -
 6 files changed, 288 insertions(+), 280 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-28 22:39:29 UTC (rev 219761)
+++ community-i686/PKGBUILD 2017-03-28 22:40:06 UTC (rev 219762)
@@ -1,130 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=3
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/sha

[arch-commits] Commit in julia/repos (8 files)

2017-03-28 Thread Antonio Rojas
Date: Tuesday, March 28, 2017 @ 17:28:19
  Author: arojas
Revision: 219751

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 219750, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 219750, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 219750, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 219750, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  260 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  130 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  130 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 280 insertions(+), 280 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-28 17:27:39 UTC (rev 219750)
+++ community-i686/PKGBUILD 2017-03-28 17:28:19 UTC (rev 219751)
@@ -1,130 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.1
-pkgrel=2
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl' 'llvm')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc})
-sha256sums=('805e97aef179fd5bea2bc906128369d113a30bb9a165cef70b67f2fc3f3c35a9'
-'SKIP')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make prefix=/usr sysconfdir=/etc \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'libunwind' 'mpfr' 'suitesparse' 'pcre2' 'libgit2' 
'llvm-libs' 'patchelf' 'hicolor-icon-theme')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export CFLAGS+=" -march=pentium4"
-export CXXFLAGS+=" -march=pentium4"
-  fi
-
-  cd julia-$pkgver
-  make DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 "$srcdir"/julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdi

[arch-commits] Commit in julia/repos (8 files)

2017-03-06 Thread Antonio Rojas
Date: Monday, March 6, 2017 @ 17:48:24
  Author: arojas
Revision: 215138

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 215137, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 215137, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 215137, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 215137, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  268 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  132 --
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  132 --
 community-x86_64/sysfix.install |   10 -
 6 files changed, 288 insertions(+), 284 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-06 17:47:54 UTC (rev 215137)
+++ community-i686/PKGBUILD 2017-03-06 17:48:24 UTC (rev 215138)
@@ -1,132 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.5.0
-pkgrel=1
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M=pentium4
-  else
-export M="x86-64"
-  fi
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=$M \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'gmp' 'libunwind' 'mpfr' 'zlib' 'lapack' 
'suitesparse' 'pcre2' 'libgit2' 'openssl' 'patchelf')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  # Make sure not to set -march
-  export CFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-  export CXXFLAGS="-mtune=generic -O3 -pipe -fstack-protector-strong"
-
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export M=pentium4
-  else
-export M="x86-64"
-  fi
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=$M \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv do

[arch-commits] Commit in julia/repos (8 files)

2016-09-22 Thread Alexander Rødseth
Date: Thursday, September 22, 2016 @ 14:54:15
  Author: arodseth
Revision: 190158

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 190157, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 190157, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 190157, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 190157, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  264 ++
 /sysfix.install |   20 ++
 community-i686/PKGBUILD |  116 
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  116 
 community-x86_64/sysfix.install |   10 -
 6 files changed, 284 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-22 14:53:07 UTC (rev 190157)
+++ community-i686/PKGBUILD 2016-09-22 14:54:15 UTC (rev 190158)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.4.6
-pkgrel=1
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'gmp' 'libunwind' 'mpfr' 'zlib' 'lapack' 
'suitesparse' 'pcre2' 'libgit2' 'openssl' 'patchelf')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv doc "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv examples "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 190157, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 

[arch-commits] Commit in julia/repos (8 files)

2016-06-29 Thread Alexander Rødseth
Date: Wednesday, June 29, 2016 @ 15:56:16
  Author: arodseth
Revision: 181616

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 181615, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 181615, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 181615, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 181615, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  232 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  116 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  116 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 252 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-29 15:56:04 UTC (rev 181615)
+++ community-i686/PKGBUILD 2016-06-29 15:56:16 UTC (rev 181616)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.4.5
-pkgrel=1
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'gmp' 'libunwind' 'mpfr' 'zlib' 'lapack' 
'suitesparse' 'pcre2' 'libgit2' 'openssl' 'patchelf')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv doc "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv examples "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 181615, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUI

[arch-commits] Commit in julia/repos (8 files)

2016-03-26 Thread Alexander Rødseth
Date: Saturday, March 26, 2016 @ 19:47:17
  Author: arodseth
Revision: 168501

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 168500, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 168500, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 168500, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 168500, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  232 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  116 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  116 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 252 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-26 18:47:01 UTC (rev 168500)
+++ community-i686/PKGBUILD 2016-03-26 18:47:17 UTC (rev 168501)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.4.3
-pkgrel=1
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'gmp' 'libunwind' 'mpfr' 'zlib' 'lapack' 
'suitesparse' 'pcre2' 'libgit2' 'openssl' 'patchelf')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv doc "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv examples "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 168500, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUI

[arch-commits] Commit in julia/repos (8 files)

2016-01-16 Thread Alexander Rødseth
Date: Sunday, January 17, 2016 @ 01:28:50
  Author: arodseth
Revision: 157025

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 157024, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 157024, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 157024, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 157024, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  232 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  116 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  116 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 252 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-17 00:28:30 UTC (rev 157024)
+++ community-i686/PKGBUILD 2016-01-17 00:28:50 UTC (rev 157025)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.4.2
-pkgrel=1
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'openssl')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'gmp' 'libunwind' 'mpfr' 'zlib' 'lapack' 
'suitesparse' 'pcre2' 'libgit2' 'openssl' 'patchelf')
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_INTEL_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_DSFMT=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv doc "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv examples "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 157024, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUI

[arch-commits] Commit in julia/repos (8 files)

2015-12-14 Thread Alexander Rødseth
Date: Tuesday, December 15, 2015 @ 00:21:40
  Author: arodseth
Revision: 153328

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 153327, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 153327, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 153327, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 153327, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  232 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  118 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  118 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 252 insertions(+), 256 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-14 22:30:46 UTC (rev 153327)
+++ community-i686/PKGBUILD 2015-12-14 23:21:40 UTC (rev 153328)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.4.1
-pkgrel=2
-epoch=2
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse' 'patchelf' 'cmake' 
'pcre2')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse' 'pcre2')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  cd "$pkgbase"
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv doc "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv examples "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 153327, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBU

[arch-commits] Commit in julia/repos (8 files)

2015-11-14 Thread Alexander Rødseth
Date: Saturday, November 14, 2015 @ 22:03:31
  Author: arodseth
Revision: 146830

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 146829, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 146829, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 146829, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 146829, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  236 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  119 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  119 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 256 insertions(+), 258 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-14 21:03:19 UTC (rev 146829)
+++ community-i686/PKGBUILD 2015-11-14 21:03:31 UTC (rev 146830)
@@ -1,119 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.4.0
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse' 'patchelf' 'cmake' 
'pcre2')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  # SSE2 is a requirement for Julia on 32-bit x86
-  if [[ $CARCH == i686 ]]; then
-export JULIA_CPU_TARGET=pentium4
-  fi
-
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse' 'pcre2')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-
-  cd "$srcdir/$pkgbase"
-  cp -rv "doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 146829, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ commu

[arch-commits] Commit in julia/repos (8 files)

2015-10-12 Thread Alexander Rødseth
Date: Monday, October 12, 2015 @ 18:09:56
  Author: arodseth
Revision: 143790

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 143788, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 143788, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 143787, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 143787, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  238 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  111 -
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  111 -
 community-x86_64/sysfix.install |   10 -
 6 files changed, 258 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-12 16:09:39 UTC (rev 143789)
+++ community-i686/PKGBUILD 2015-10-12 16:09:56 UTC (rev 143790)
@@ -1,111 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.11
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 143788, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-12 16:09:56 UTC (rev 143790)
@@ -0,0 +1,119 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgb

[arch-commits] Commit in julia/repos (8 files)

2015-07-28 Thread Alexander Rødseth
Date: Tuesday, July 28, 2015 @ 13:06:17
  Author: arodseth
Revision: 137551

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 137550, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 137550, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 137550, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 137550, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  222 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  111 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  111 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 242 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-28 11:06:06 UTC (rev 137550)
+++ community-i686/PKGBUILD 2015-07-28 11:06:17 UTC (rev 137551)
@@ -1,111 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.10
-pkgrel=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('MIT')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-
-  cd "$pkgname"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 137550, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-28 11:06:17 UTC (rev 137551)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pk

[arch-commits] Commit in julia/repos (8 files)

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 11:44:32
  Author: arodseth
Revision: 136148

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 136147, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 136147, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 136147, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 136147, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  222 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  108 --
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  108 --
 community-x86_64/sysfix.install |   10 -
 6 files changed, 242 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 09:44:20 UTC (rev 136147)
+++ community-i686/PKGBUILD 2015-06-30 09:44:32 UTC (rev 136148)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.10
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 136147, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 09:44:32 UTC (rev 136148)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.10
+pkgrel=2
+pkgdesc='High-level,

[arch-commits] Commit in julia/repos (8 files)

2015-06-27 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 01:13:16
  Author: arodseth
Revision: 135931

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 135930, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 135930, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 135930, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 135930, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  216 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  108 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  108 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 236 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-27 23:13:04 UTC (rev 135930)
+++ community-i686/PKGBUILD 2015-06-27 23:13:16 UTC (rev 135931)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.9
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 135930, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-27 23:13:16 UTC (rev 135931)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.10
+pkgrel=1
+pkgdesc='High-level,

[arch-commits] Commit in julia/repos (8 files)

2015-06-02 Thread Alexander Rødseth
Date: Tuesday, June 2, 2015 @ 21:58:43
  Author: arodseth
Revision: 134638

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 134637, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 134637, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 134637, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 134637, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  216 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  108 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  108 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 236 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-02 18:36:48 UTC (rev 134637)
+++ community-i686/PKGBUILD 2015-06-02 19:58:43 UTC (rev 134638)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.9
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 134637, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-02 19:58:43 UTC (rev 134638)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.9
+pkgrel=1
+pkgdesc='High-level, 

[arch-commits] Commit in julia/repos (8 files)

2015-06-02 Thread Alexander Rødseth
Date: Tuesday, June 2, 2015 @ 16:59:00
  Author: arodseth
Revision: 134554

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 134553, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 134553, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 134553, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 134553, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  216 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  108 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  108 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 236 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-02 14:57:35 UTC (rev 134553)
+++ community-i686/PKGBUILD 2015-06-02 14:59:00 UTC (rev 134554)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.8
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# getver: julialang.org/downloads #
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 134553, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-02 14:59:00 UTC (rev 134554)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.9
+pkgrel=1
+pkgdesc='High-level

[arch-commits] Commit in julia/repos (8 files)

2015-05-09 Thread Alexander Rødseth
Date: Saturday, May 9, 2015 @ 22:43:24
  Author: arodseth
Revision: 133143

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 133142, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 133142, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 133142, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 133142, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  216 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 --
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 --
 community-x86_64/sysfix.install |   10 -
 6 files changed, 236 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-09 19:51:48 UTC (rev 133142)
+++ community-i686/PKGBUILD 2015-05-09 20:43:24 UTC (rev 133143)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.7
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 133142, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-09 20:43:24 UTC (rev 133143)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.8
+pkgrel=1
+pkgdesc='High-level, high-performance, dynamic programming

[arch-commits] Commit in julia/repos (8 files)

2015-03-24 Thread Alexander Rødseth
Date: Tuesday, March 24, 2015 @ 23:52:27
  Author: arodseth
Revision: 129867

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 129866, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 129866, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 129866, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 129866, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-24 22:52:13 UTC (rev 129866)
+++ community-i686/PKGBUILD 2015-03-24 22:52:27 UTC (rev 129867)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.6
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 129866, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-24 22:52:27 UTC (rev 129867)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.7
+pkgrel=1
+pkgdesc='High-level, high-performance, dynamic program

[arch-commits] Commit in julia/repos (8 files)

2015-02-22 Thread Alexander Rødseth
Date: Sunday, February 22, 2015 @ 16:43:38
  Author: arodseth
Revision: 128113

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 128112, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 128112, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 128112, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 128112, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-22 15:43:26 UTC (rev 128112)
+++ community-i686/PKGBUILD 2015-02-22 15:43:38 UTC (rev 128113)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.5
-pkgrel=2
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 128112, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-22 15:43:38 UTC (rev 128113)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+epoch=2
+pkgver=0.3.6
+pkgrel=1
+pkgdesc='High-level, high-performance, dynamic progr

[arch-commits] Commit in julia/repos (8 files)

2015-02-03 Thread Alexander Rødseth
Date: Tuesday, February 3, 2015 @ 15:19:12
  Author: arodseth
Revision: 127043

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 127042, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 127042, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 127042, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 127042, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-03 13:10:16 UTC (rev 127042)
+++ community-i686/PKGBUILD 2015-02-03 14:19:12 UTC (rev 127043)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.5
-pkgrel=1
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 127042, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-03 14:19:12 UTC (rev 127043)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.3.5
+pkgrel=2
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch=(

[arch-commits] Commit in julia/repos (8 files)

2015-01-10 Thread Alexander Rødseth
Date: Sunday, January 11, 2015 @ 00:07:30
  Author: arodseth
Revision: 125714

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 125713, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 125713, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 125713, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 125713, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-10 23:07:16 UTC (rev 125713)
+++ community-i686/PKGBUILD 2015-01-10 23:07:30 UTC (rev 125714)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.4
-pkgrel=1
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 125713, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-10 23:07:30 UTC (rev 125714)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.3.5
+pkgrel=1
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch=('

[arch-commits] Commit in julia/repos (8 files)

2015-01-05 Thread Alexander Rødseth
Date: Monday, January 5, 2015 @ 11:04:41
  Author: arodseth
Revision: 125389

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 125388, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 125388, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 125388, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 125388, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-05 10:04:30 UTC (rev 125388)
+++ community-i686/PKGBUILD 2015-01-05 10:04:41 UTC (rev 125389)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.3
-pkgrel=1
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 125388, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-05 10:04:41 UTC (rev 125389)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.3.4
+pkgrel=1
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch=('x

[arch-commits] Commit in julia/repos (8 files)

2014-11-27 Thread Alexander Rødseth
Date: Thursday, November 27, 2014 @ 15:14:35
  Author: arodseth
Revision: 123208

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 123207, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 123207, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 123207, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 123207, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-27 14:14:24 UTC (rev 123207)
+++ community-i686/PKGBUILD 2014-11-27 14:14:35 UTC (rev 123208)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.2
-pkgrel=1
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 123207, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-27 14:14:35 UTC (rev 123208)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.3.3
+pkgrel=1
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch

[arch-commits] Commit in julia/repos (8 files)

2014-11-02 Thread Alexander Rødseth
Date: Sunday, November 2, 2014 @ 19:50:06
  Author: arodseth
Revision: 121714

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 121713, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 121713, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 121713, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 121713, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  107 ---
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  107 ---
 community-x86_64/sysfix.install |   10 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-02 18:48:42 UTC (rev 121713)
+++ community-i686/PKGBUILD 2014-11-02 18:50:06 UTC (rev 121714)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-pkgver=0.3.1
-pkgrel=1
-epoch=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=("git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-}")
-sha256sums=('SKIP')
-
-prepare() {
-  # for /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf "$pkgdir/usr/share/julia/doc/man"
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf "$pkgdir/etc/ld.so.conf.d/julia.conf"
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf "$pkgdir/usr/share/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/doc/"
-  rm -rvf "$pkgdir/usr/share/julia/examples/"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -rv "$srcdir/$pkgbase/doc" "$pkgdir/usr/share/doc/$pkgbase"
-  cp -rv "$srcdir/$pkgbase/examples" "$pkgdir/usr/share/doc/$pkgbase/examples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 121713, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-02 18:50:06 UTC (rev 121714)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: Valentin Churavy 
+
+pkgbase=julia
+pkgname=('julia' 'julia-docs')
+pkgver=0.3.2
+pkgrel=1
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+a

[arch-commits] Commit in julia/repos (8 files)

2014-08-21 Thread Alexander Rødseth
Date: Friday, August 22, 2014 @ 00:06:13
  Author: arodseth
Revision: 117727

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 117726, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 117726, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 117726, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 117726, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  170 ++
 /sysfix.install |   16 +++
 community-i686/PKGBUILD |   87 ---
 community-i686/sysfix.install   |8 -
 community-x86_64/PKGBUILD   |   87 ---
 community-x86_64/sysfix.install |8 -
 6 files changed, 186 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-21 22:05:59 UTC (rev 117726)
+++ community-i686/PKGBUILD 2014-08-21 22:06:13 UTC (rev 117727)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-
-pkgname=julia
-pkgver=0.3.0_rc1
-pkgrel=2
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org'
-license=('GPL')
-depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'setconf')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-}")
-install=sysfix.install
-sha256sums=('SKIP')
-
-prepare() {
-  # Fix for FS#40736
-  [ $CARCH != x86_64 ] || (setconf "$pkgname/Make.inc" JULIA_CPU_TARGET core2)
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-# Remove duplicate man-page from julia/doc
-rm -rv "$pkgdir/usr/share/julia/doc/man"
-
-# Fix wonky permission
-chmod 644 "$pkgdir/usr/lib/julia/libuv.a"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 117726, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-21 22:06:13 UTC (rev 117727)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+
+pkgname=julia
+pkgver=0.3.0
+pkgrel=1
+epoch=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch=('x86_64' 'i686')
+url='http://julialang.org'
+license=('GPL')
+depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib')
+makedepends=('gcc-fortran' 'python2' 'libuv' 'setconf')
+optdepends=('gnuplot: If using the Gaston Package from julia')
+options=('!emptydirs' 'staticlibs')
+source=("git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-}")
+install=sysfix.install
+sha256sums=('SKIP')
+
+prepare() {
+  # Fix for FS#40736
+  [ $CARCH != x86_64 ] || (setconf "$pkgname/Make.inc" JULIA_CPU_TARGET core2)
+}
+
+build() {
+  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
+USE_SYSTEM_LLVM=0 \
+USE_SYSTEM_LIBUNWIND=1 \
+USE_SYSTEM_READLINE=0 \
+USE_SYSTEM_PCRE=1 \
+USE_SYSTEM_LIBM=1 \
+USE_SYSTEM_OPENLIBM=0 \
+USE_SYSTEM_OPENSPECFUN=0 \
+ 

[arch-commits] Commit in julia/repos (8 files)

2014-08-04 Thread Alexander Rødseth
Date: Monday, August 4, 2014 @ 15:17:02
  Author: arodseth
Revision: 116856

archrelease: copy trunk to community-x86_64, community-i686

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 116855, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 116855, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 116855, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 116855, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  174 ++
 /sysfix.install |   16 +++
 community-i686/PKGBUILD |   87 ---
 community-i686/sysfix.install   |8 -
 community-x86_64/PKGBUILD   |   87 ---
 community-x86_64/sysfix.install |8 -
 6 files changed, 190 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-04 13:15:53 UTC (rev 116855)
+++ community-i686/PKGBUILD 2014-08-04 13:17:02 UTC (rev 116856)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-
-pkgname=julia
-pkgver=0.3.0_rc1
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org'
-license=('GPL')
-depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'readline' 
'zlib')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'setconf')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-}")
-install=sysfix.install
-sha256sums=('SKIP')
-
-prepare() {
-  # Fix for FS#40736
-  [ $CARCH = x86_64 ] && (setconf "$pkgname/Make.inc" JULIA_CPU_TARGET core2) 
|| true
-}
-
-build() {
-  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" \
-prefix=/usr sysconfdir=/etc  \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-# Remove duplicate man-page from julia/doc
-rm -rv "$pkgdir/usr/share/julia/doc/man"
-
-# Fix wonky permission
-chmod 644 "$pkgdir/usr/lib/julia/libuv.a"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 116855, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-04 13:17:02 UTC (rev 116856)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+
+pkgname=julia
+pkgver=0.3.0_rc1
+pkgrel=2
+pkgdesc='High-level, high-performance, dynamic programming language'
+arch=('x86_64' 'i686')
+url='http://julialang.org'
+license=('GPL')
+depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib')
+makedepends=('gcc-fortran' 'python2' 'libuv' 'setconf')
+optdepends=('gnuplot: If using the Gaston Package from julia')
+options=('!emptydirs' 'staticlibs')
+source=("git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-}")
+install=sysfix.install
+sha256sums=('SKIP')
+
+prepare() {
+  # Fix for FS#40736
+  [ $CARCH != x86_64 ] || (setconf "$pkgname/Make.inc" JULIA_CPU_TARGET core2)
+}
+
+build() {
+  make -C "$pkgname" prefix=/usr sysconfdir=/etc \
+USE_SYSTEM_LLVM=0 \
+USE_SYSTEM_LIBUNWIND=1 \
+USE_SYSTEM_READLINE=0 \
+USE_SYSTEM_PCRE=1 \
+USE_SYSTEM_LIBM=1 \
+USE_SYSTEM_OPENLIBM=0 \
+USE_SYSTEM_OPEN