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

2020-03-22 Thread Antonio Rojas via arch-commits
Date: Sunday, March 22, 2020 @ 08:43:54
  Author: arojas
Revision: 603359

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 603358, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-system-cblas.patch
(from rev 603358, julia/trunk/julia-system-cblas.patch)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 603358, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/make-install-no-build.patch
(from rev 603358, julia/trunk/make-install-no-build.patch)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-system-cblas.patch
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/make-install-no-build.patch

-+
 PKGBUILD|  217 +-
 julia-system-cblas.patch|  266 +-
 libunwind-version.patch |   34 ++---
 make-install-no-build.patch |   32 ++---
 4 files changed, 276 insertions(+), 273 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-22 08:43:31 UTC (rev 603358)
+++ PKGBUILD2020-03-22 08:43:54 UTC (rev 603359)
@@ -1,107 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.3.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse mbedtls openlibm)
-makedepends=(cmake gcc-fortran gmp python)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-system-cblas.patch
-libunwind-version.patch
-make-install-no-build.patch)
-sha256sums=('053908ec2706eb76cfdc998c077de123ecb1c60c945b4b5057aa3be19147b723'
-'SKIP'
-'d4c8fe9eec1bc416549924ae328ceb3f63cc736ecd5e67886faa924e7c14bc5d'
-'856dab2da8124df95e4fbd17f1164bebe1b10e99852fedf38f9dfe31f8ae295c'
-'0b57e0bc6e25c92fde8a6474394f7a99bfb57f9b5d0f7b53f988622ae67de8b7')
-# Julia (Binary signing key) 
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # Add and use option to build with system cblas
-  patch -p1 -i ../julia-system-cblas.patch
-
-  # Fixing libunwind version check
-  # https://github.com/JuliaLang/julia/pull/29082
-  patch -p1 -i ../libunwind-version.patch
-
-  # Don't build again in install
-  patch -p1 -i ../make-install-no-build.patch
-}
-
-build() {
-  export PATH="$srcdir/bin:$PATH"
-  env CFLAGS="$CFLAGS -w" CXXFLAGS="$CXXFLAGS -w" make VERBOSE=1 -C 
$pkgbase-$pkgver \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_DSFMT=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_LIBSSH2=1 \
-USE_SYSTEM_MBEDTLS=1 \
-USE_SYSTEM_CURL=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_P7ZIP=1 \
-USE_SYSTEM_OPENLIBM=1 \
-MARCH=x86-64
-}
-
-check() {
- cd $pkgbase-$pkgver/test
-
- # this is the make testall target, plus the --skip option from
- # travis/appveyor/circleci (one test fails with DNS resolution errors)
- ../julia --check-bounds=yes --startup-file=no ./runtests.jl all --skip 
Sockets --skip Distributed --skip LibGit2/libgit2
- find ../stdlib \( -name \*.cov -o -name \*.mem \) -delete
- rm -r depot/compiled
-}
-
-package_julia() {
-  backup=(etc/julia/startup.jl)
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-
-  make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install \
-prefix=/usr \
-libexecdir=/usr/lib \
-sysconfdir=/etc
-
-  # Documentation is in the julia-docs package.
-  # Man pages in /usr/share/julia/doc/man are duplicate.
-  rm -rf "$pkgdir/usr/share/"{doc,julia/doc}
-
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  depends=(julia)
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -r $pkgbase-$pkgver/doc "$pkgdir/usr/share/doc/$pkgbase"
-  rm -rf "$pkgdir/usr/share/doc/julia/man"
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}

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

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

2020-01-01 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 1, 2020 @ 23:31:09
  Author: arojas
Revision: 545988

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 545987, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-system-cblas.patch
(from rev 545987, julia/trunk/julia-system-cblas.patch)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 545987, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/make-install-no-build.patch
(from rev 545987, julia/trunk/make-install-no-build.patch)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-system-cblas.patch
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/make-install-no-build.patch

-+
 PKGBUILD|  214 -
 julia-system-cblas.patch|  266 +-
 libunwind-version.patch |   34 ++---
 make-install-no-build.patch |   32 ++---
 4 files changed, 273 insertions(+), 273 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-01 23:30:48 UTC (rev 545987)
+++ PKGBUILD2020-01-01 23:31:09 UTC (rev 545988)
@@ -1,107 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.3.0
-pkgrel=1
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse mbedtls openlibm)
-makedepends=(cmake gcc-fortran gmp python)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-system-cblas.patch
-libunwind-version.patch
-make-install-no-build.patch)
-sha256sums=('98c38f75eab1c16bde71509e8e3bdc941bc4686fe80dfc3c560f851c81e9e748'
-'SKIP'
-'d4c8fe9eec1bc416549924ae328ceb3f63cc736ecd5e67886faa924e7c14bc5d'
-'856dab2da8124df95e4fbd17f1164bebe1b10e99852fedf38f9dfe31f8ae295c'
-'0b57e0bc6e25c92fde8a6474394f7a99bfb57f9b5d0f7b53f988622ae67de8b7')
-# Julia (Binary signing key) 
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # Add and use option to build with system cblas
-  patch -p1 -i ../julia-system-cblas.patch
-
-  # Fixing libunwind version check
-  # https://github.com/JuliaLang/julia/pull/29082
-  patch -p1 -i ../libunwind-version.patch
-
-  # Don't build again in install
-  patch -p1 -i ../make-install-no-build.patch
-}
-
-build() {
-  export PATH="$srcdir/bin:$PATH"
-  env CFLAGS="$CFLAGS -w" CXXFLAGS="$CXXFLAGS -w" make VERBOSE=1 -C 
$pkgbase-$pkgver \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_DSFMT=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_LIBSSH2=1 \
-USE_SYSTEM_MBEDTLS=1 \
-USE_SYSTEM_CURL=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_P7ZIP=1 \
-USE_SYSTEM_OPENLIBM=1 \
-MARCH=x86-64
-}
-
-check() {
- cd $pkgbase-$pkgver/test
-
- # this is the make testall target, plus the --skip option from
- # travis/appveyor/circleci (one test fails with DNS resolution errors)
- ../julia --check-bounds=yes --startup-file=no ./runtests.jl all --skip 
Sockets --skip Distributed --skip LibGit2/libgit2
- find ../stdlib \( -name \*.cov -o -name \*.mem \) -delete
- rm -r depot/compiled
-}
-
-package_julia() {
-  backup=(etc/julia/startup.jl)
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-
-  make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install \
-prefix=/usr \
-libexecdir=/usr/lib \
-sysconfdir=/etc
-
-  # Documentation is in the julia-docs package.
-  # Man pages in /usr/share/julia/doc/man are duplicate.
-  rm -rf "$pkgdir/usr/share/"{doc,julia/doc}
-
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  depends=(julia)
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -r $pkgbase-$pkgver/doc "$pkgdir/usr/share/doc/$pkgbase"
-  rm -rf "$pkgdir/usr/share/doc/julia/man"
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}

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

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

2019-08-22 Thread Alexander Rødseth via arch-commits
Date: Thursday, August 22, 2019 @ 15:59:22
  Author: arodseth
Revision: 500522

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 500521, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 500521, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 500521, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 500521, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   68 
 PKGBUILD|  192 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 ++---
 4 files changed, 159 insertions(+), 159 deletions(-)

Deleted: Make.user
===
--- Make.user   2019-08-22 15:59:15 UTC (rev 500521)
+++ Make.user   2019-08-22 15:59:22 UTC (rev 500522)
@@ -1,34 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 0
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-
-# FS#60227
-override USE_LLVM_SHLIB = 1
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 500521, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2019-08-22 15:59:22 UTC (rev 500522)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 0
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-22 15:59:15 UTC (rev 500521)
+++ PKGBUILD2019-08-22 15:59:22 UTC (rev 500522)
@@ -1,96 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.1.1
-pkgrel=3
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse)
-makedepends=(cmake gcc-fortran gmp python2)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-libunwind-version.patch
-makefile.patch
-Make.user)
-sha256sums=('3c5395dd3419ebb82d57bcc49dc729df3b225b9094e74376f8c649ee35ed79c2'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'a5eec1e43e1161c313b1d32a5f35a67d6b4a2bbc2d6d324c010f6f2b35be4a72'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'1c47e6fbe296a3186526880321542ac218ccea94eab8bdd752c762c49f01f65a')
-# Julia (Binary signing key) 

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

2019-06-11 Thread Alexander Rødseth via arch-commits
Date: Tuesday, June 11, 2019 @ 16:37:53
  Author: arodseth
Revision: 480473

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 480472, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 480472, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 480472, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 480472, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   68 
 PKGBUILD|  187 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 ++---
 4 files changed, 159 insertions(+), 154 deletions(-)

Deleted: Make.user
===
--- Make.user   2019-06-11 16:37:42 UTC (rev 480472)
+++ Make.user   2019-06-11 16:37:53 UTC (rev 480473)
@@ -1,34 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-
-# FS#60227
-override USE_LLVM_SHLIB = 1
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 480472, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2019-06-11 16:37:53 UTC (rev 480473)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-11 16:37:42 UTC (rev 480472)
+++ PKGBUILD2019-06-11 16:37:53 UTC (rev 480473)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.1.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse)
-makedepends=(cmake gcc-fortran gmp python2)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-libunwind-version.patch
-makefile.patch
-Make.user)
-sha256sums=('3c5395dd3419ebb82d57bcc49dc729df3b225b9094e74376f8c649ee35ed79c2'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'a5eec1e43e1161c313b1d32a5f35a67d6b4a2bbc2d6d324c010f6f2b35be4a72'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'5d80da405df2a45a67e8d9e66ab4e25c2df754516023bbab81f9f263f6109329')
-# Julia (Binary signing key) 

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

2019-05-24 Thread Alexander Rødseth via arch-commits
Date: Friday, May 24, 2019 @ 13:07:15
  Author: arodseth
Revision: 469607

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 469606, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 469606, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 469606, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 469606, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   68 -
 PKGBUILD|  182 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 +++---
 4 files changed, 154 insertions(+), 154 deletions(-)

Deleted: Make.user
===
--- Make.user   2019-05-24 13:07:07 UTC (rev 469606)
+++ Make.user   2019-05-24 13:07:15 UTC (rev 469607)
@@ -1,34 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-
-# FS#60227
-override USE_LLVM_SHLIB = 1
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 469606, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2019-05-24 13:07:15 UTC (rev 469607)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-24 13:07:07 UTC (rev 469606)
+++ PKGBUILD2019-05-24 13:07:15 UTC (rev 469607)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.1.0
-pkgrel=1
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse)
-makedepends=(cmake gcc-fortran gmp python2)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-libunwind-version.patch
-makefile.patch
-Make.user)
-sha256sums=('a62c40922a368e303051c007a32e616862340d6ae5f3fac851a9e1b7c7bed0a7'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'a5eec1e43e1161c313b1d32a5f35a67d6b4a2bbc2d6d324c010f6f2b35be4a72'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'5d80da405df2a45a67e8d9e66ab4e25c2df754516023bbab81f9f263f6109329')
-# Julia (Binary signing key) 

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

2019-02-11 Thread Alexander Rødseth via arch-commits
Date: Monday, February 11, 2019 @ 22:47:27
  Author: arodseth
Revision: 431827

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 431826, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 431826, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 431826, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 431826, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   68 -
 PKGBUILD|  182 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 +++---
 4 files changed, 154 insertions(+), 154 deletions(-)

Deleted: Make.user
===
--- Make.user   2019-02-11 22:47:17 UTC (rev 431826)
+++ Make.user   2019-02-11 22:47:27 UTC (rev 431827)
@@ -1,34 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-
-# FS#60227
-override USE_LLVM_SHLIB = 1
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 431826, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2019-02-11 22:47:27 UTC (rev 431827)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 22:47:17 UTC (rev 431826)
+++ PKGBUILD2019-02-11 22:47:27 UTC (rev 431827)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.3
-pkgrel=2
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
- 'openblas' 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-libunwind-version.patch
-makefile.patch
-Make.user)
-sha256sums=('618e6d29f1fba00f5b2bebf14e69a3a536c27c3132e021cf39774e8500dd29fa'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'5d80da405df2a45a67e8d9e66ab4e25c2df754516023bbab81f9f263f6109329')

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

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 27, 2018 @ 20:48:34
  Author: arodseth
Revision: 418556

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 418555, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 418555, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 418555, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 418555, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   66 
 PKGBUILD|  182 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 +++---
 4 files changed, 154 insertions(+), 152 deletions(-)

Deleted: Make.user
===
--- Make.user   2018-12-27 20:48:22 UTC (rev 418555)
+++ Make.user   2018-12-27 20:48:34 UTC (rev 418556)
@@ -1,32 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 418555, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2018-12-27 20:48:34 UTC (rev 418556)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:48:22 UTC (rev 418555)
+++ PKGBUILD2018-12-27 20:48:34 UTC (rev 418556)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.3
-pkgrel=1
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
- 'openblas' 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-'libunwind-version.patch'
-'makefile.patch'
-'Make.user')
-sha256sums=('618e6d29f1fba00f5b2bebf14e69a3a536c27c3132e021cf39774e8500dd29fa'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'9381af45e329f874241eec5a5d85e70a7945433ab9ee82215e28a6085783df88')
-# 

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

2018-12-20 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 20, 2018 @ 14:19:31
  Author: arodseth
Revision: 417008

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 417007, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 417007, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 417007, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 417007, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.diff
  julia/repos/community-x86_64/julia-makefile.diff

--+
 Make.user|   64 +++---
 PKGBUILD |  182 -
 julia-libunwind-version.diff |   17 ---
 julia-makefile.diff  |   12 --
 libunwind-version.patch  |   17 +++
 makefile.patch   |   12 ++
 6 files changed, 152 insertions(+), 152 deletions(-)

Deleted: Make.user
===
--- Make.user   2018-12-20 14:19:22 UTC (rev 417007)
+++ Make.user   2018-12-20 14:19:31 UTC (rev 417008)
@@ -1,32 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 417007, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2018-12-20 14:19:31 UTC (rev 417008)
@@ -0,0 +1,32 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+override USE_LLVM_SHLIB = 0
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-20 14:19:22 UTC (rev 417007)
+++ PKGBUILD2018-12-20 14:19:31 UTC (rev 417008)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.2
-pkgrel=1
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
- 'openblas' 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-'julia-libunwind-version.diff'
-'julia-makefile.diff'
-'Make.user')
-sha256sums=('74c850516b293029fcefb1114145c424cab64e1d2f87264350d88a237f5f8bc5'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-   

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

2018-11-09 Thread Alexander Rødseth via arch-commits
Date: Friday, November 9, 2018 @ 19:45:40
  Author: arodseth
Revision: 404394

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 404393, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 404393, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.diff
(from rev 404393, julia/trunk/julia-libunwind-version.diff)
  julia/repos/community-x86_64/julia-makefile.diff
(from rev 404393, julia/trunk/julia-makefile.diff)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.diff
  julia/repos/community-x86_64/julia-makefile.diff

--+
 Make.user|   64 +++---
 PKGBUILD |  182 -
 julia-libunwind-version.diff |   34 +++
 julia-makefile.diff  |   24 ++---
 4 files changed, 152 insertions(+), 152 deletions(-)

Deleted: Make.user
===
--- Make.user   2018-11-09 19:45:28 UTC (rev 404393)
+++ Make.user   2018-11-09 19:45:40 UTC (rev 404394)
@@ -1,32 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 404393, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2018-11-09 19:45:40 UTC (rev 404394)
@@ -0,0 +1,32 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+override USE_LLVM_SHLIB = 0
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-09 19:45:28 UTC (rev 404393)
+++ PKGBUILD2018-11-09 19:45:40 UTC (rev 404394)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.1
-pkgrel=2
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
- 'openblas' 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-'julia-libunwind-version.diff'
-'julia-makefile.diff'
-'Make.user')
-sha256sums=('874e6e67dedc6b0dfed7faba9963abf1fa8086bd13a4457c05203ab0b78ebd22'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-

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

2018-10-05 Thread Eli Schwartz via arch-commits
Date: Friday, October 5, 2018 @ 18:15:45
  Author: eschwartz
Revision: 390240

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 390239, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 390239, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.diff
(from rev 390239, julia/trunk/julia-libunwind-version.diff)
  julia/repos/community-x86_64/julia-makefile.diff
(from rev 390239, julia/trunk/julia-makefile.diff)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.diff
  julia/repos/community-x86_64/julia-makefile.diff

--+
 Make.user|   59 +++--
 PKGBUILD |  177 +
 julia-libunwind-version.diff |   34 +++
 julia-makefile.diff  |   24 ++---
 4 files changed, 152 insertions(+), 142 deletions(-)

Deleted: Make.user
===
--- Make.user   2018-10-05 18:14:58 UTC (rev 390239)
+++ Make.user   2018-10-05 18:15:45 UTC (rev 390240)
@@ -1,27 +0,0 @@
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_BLAS = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LAPACK = 0
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 390239, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2018-10-05 18:15:45 UTC (rev 390240)
@@ -0,0 +1,32 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+override USE_LLVM_SHLIB = 0
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 18:14:58 UTC (rev 390239)
+++ PKGBUILD2018-10-05 18:15:45 UTC (rev 390240)
@@ -1,86 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.1
-pkgrel=1
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 'libutf8proc'
- 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-'julia-libunwind-version.diff'
-'julia-makefile.diff'
-'Make.user')
-sha256sums=('874e6e67dedc6b0dfed7faba9963abf1fa8086bd13a4457c05203ab0b78ebd22'
-'SKIP'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'67577a8ecf98e1593f5a649ff5bc36380878e6c16dfea46a3ffde8d3c87e672b')
-# Julia (Binary signing key) 
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495')
-
-prepare() {
-  cd $pkgbase
-
-  # https://github.com/JuliaLang/julia/pull/29082
-  msg2 'Fixing libunwind version check...'
-  patch -p1 -i ../julia-libunwind-version.diff
-
-  msg2 'Patching make 

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

2018-04-18 Thread Alexander Rødseth via arch-commits
Date: Wednesday, April 18, 2018 @ 09:32:44
  Author: arodseth
Revision: 316857

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 316856, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 316856, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 316856, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 316856, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  289 +++-
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   23 +--
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-18 09:32:28 UTC (rev 316856)
+++ PKGBUILD2018-04-18 09:32:44 UTC (rev 316857)
@@ -1,146 +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)
-epoch=2
-pkgver=0.6.2
-pkgrel=5
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 'mpfr' 
'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-'julia-libunwind-version.patch'
-'julia-makefile.patch')
-sha256sums=('1e34c13091c9ddb47cf87a51566d94a06613f3db3c483b8f63b276e416dd621b'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo /usr/lib/julia > julia.conf
-
-  cd "$pkgbase-$pkgver"
-  patch -p1 -i ../julia-libunwind-version.patch
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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'
-
-  unset ARCH
-
-  # See FS#57387 for why USE_SYSTEM_LLVM=0, for now
-  # See FS#58221 for why USE_SYSTEM_ARPACK=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH=x86-64 \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 'mpfr' 
'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  # See FS#57387 for why USE_SYSTEM_LLVM=0, for now
-  # See FS#58221 for why USE_SYSTEM_ARPACK=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH=x86-64 \
-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=0 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=0 \
-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 

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

2018-04-17 Thread Alexander Rødseth via arch-commits
Date: Tuesday, April 17, 2018 @ 09:30:39
  Author: arodseth
Revision: 316605

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 316604, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 316604, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 316604, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 316604, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  292 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-17 09:30:28 UTC (rev 316604)
+++ PKGBUILD2018-04-17 09:30:39 UTC (rev 316605)
@@ -1,146 +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')
-epoch=2
-pkgver=0.6.2
-pkgrel=4
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('1e34c13091c9ddb47cf87a51566d94a06613f3db3c483b8f63b276e416dd621b'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd "$pkgbase-$pkgver"
-  patch -p1 -i ../julia-libunwind-version.patch
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  # See FS#57387 for why SYSTEM_LLVM=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 'mpfr' 
'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  # See FS#57387 for why SYSTEM_LLVM=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-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 

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

2018-04-13 Thread Evangelos Foutras via arch-commits
Date: Friday, April 13, 2018 @ 14:38:12
  Author: foutrelis
Revision: 316178

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 316177, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 316177, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 316177, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 316177, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  292 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-13 14:38:02 UTC (rev 316177)
+++ PKGBUILD2018-04-13 14:38:12 UTC (rev 316178)
@@ -1,146 +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')
-epoch=2
-pkgver=0.6.2
-pkgrel=3
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('1e34c13091c9ddb47cf87a51566d94a06613f3db3c483b8f63b276e416dd621b'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd "$pkgbase-$pkgver"
-  patch -p1 -i ../julia-libunwind-version.patch
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  # See FS#57387 for why SYSTEM_LLVM=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 'mpfr' 
'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  # See FS#57387 for why SYSTEM_LLVM=0, for now
-
-  make -C "$pkgbase-$pkgver" \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-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 

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

2018-02-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, February 7, 2018 @ 10:14:59
  Author: arodseth
Revision: 289958

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 289957, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 289957, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 289957, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 289957, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  289 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 184 insertions(+), 181 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-07 10:14:47 UTC (rev 289957)
+++ PKGBUILD2018-02-07 10:14:59 UTC (rev 289958)
@@ -1,143 +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')
-epoch=2
-pkgver=0.6.2
-pkgrel=1
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'llvm39' 'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('1e34c13091c9ddb47cf87a51566d94a06613f3db3c483b8f63b276e416dd621b'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd "$pkgbase-$pkgver"
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  make -C "$pkgbase-$pkgver" \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'llvm39-libs' 'mpfr' 'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  make -C "$pkgbase-$pkgver" \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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, 

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

2017-12-22 Thread Alexander Rødseth via arch-commits
Date: Friday, December 22, 2017 @ 21:56:36
  Author: arodseth
Revision: 275572

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 275571, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 275571, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 275571, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 275571, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  286 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 181 insertions(+), 181 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-22 21:56:25 UTC (rev 275571)
+++ PKGBUILD2017-12-22 21:56:36 UTC (rev 275572)
@@ -1,143 +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')
-epoch=2
-pkgver=0.6.1
-pkgrel=4
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'llvm39' 'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('75289fd8f5fb04bd10c9ca16853d9f0e72bb683639ff448dbb8f67a81dc4fc0e'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd julia
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  make -C julia \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'llvm39-libs' 'mpfr' 'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  make -C julia \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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 

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

2017-11-20 Thread Alexander Rødseth
Date: Monday, November 20, 2017 @ 13:03:51
  Author: arodseth
Revision: 267552

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 267551, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 267551, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 267551, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 267551, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  286 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 181 insertions(+), 181 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-20 13:03:19 UTC (rev 267551)
+++ PKGBUILD2017-11-20 13:03:51 UTC (rev 267552)
@@ -1,143 +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')
-epoch=2
-pkgver=0.6.1
-pkgrel=4
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'llvm39' 'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('75289fd8f5fb04bd10c9ca16853d9f0e72bb683639ff448dbb8f67a81dc4fc0e'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd julia
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  make -C julia \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'llvm39-libs' 'mpfr' 'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  make -C julia \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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 

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

2017-11-20 Thread Alexander Rødseth
Date: Monday, November 20, 2017 @ 13:03:19
  Author: arodseth
Revision: 267551

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 267550, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 267550, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 267550, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 267550, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  286 
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 181 insertions(+), 181 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-20 13:02:56 UTC (rev 267550)
+++ PKGBUILD2017-11-20 13:03:19 UTC (rev 267551)
@@ -1,143 +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')
-epoch=2
-pkgver=0.6.1
-pkgrel=4
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'llvm39' 'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('75289fd8f5fb04bd10c9ca16853d9f0e72bb683639ff448dbb8f67a81dc4fc0e'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd julia
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  make -C julia \
-prefix=/usr \
-sysconfdir=/etc \
-MARCH="x86-64" \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'llvm39-libs' 'mpfr' 'patchelf' 'pcre2' 'suitesparse')
-  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"
-
-  unset ARCH
-
-  make -C julia \
-DESTDIR="$pkgdir" \
-prefix=/usr \
-sysconfdir=/etc  \
-MARCH="x86-64" \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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 

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

2017-11-20 Thread Alexander Rødseth
Date: Monday, November 20, 2017 @ 13:02:56
  Author: arodseth
Revision: 267550

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 267549, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 267549, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 267549, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 267549, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  290 +++-
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 181 insertions(+), 185 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-20 13:02:42 UTC (rev 267549)
+++ PKGBUILD2017-11-20 13:02:56 UTC (rev 267550)
@@ -1,147 +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')
-epoch=2
-pkgver=0.6.1
-pkgrel=2
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-makedepends=('arpack' 'cmake' 'fftw' 'gcc-fortran' 'gmp' 'libgit2' 'libunwind' 
'llvm39' 'mpfr' 'patchelf' 'pcre2' 'python2' 'suitesparse')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-libunwind-version.patch
-julia-makefile.patch)
-sha256sums=('75289fd8f5fb04bd10c9ca16853d9f0e72bb683639ff448dbb8f67a81dc4fc0e'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd julia
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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"
-
-  unset ARCH
-
-  make -C julia \
-MARCH="x86-64" \
-prefix=/usr \
-sysconfdir=/etc \
-JULIA_BUILD_MODE=release \
-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=0 \
-USE_SYSTEM_LAPACK=0 \
-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' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'llvm39-libs' 'mpfr' 'patchelf' 'pcre2' 'suitesparse')
-  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
-  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=0 \
-USE_SYSTEM_LAPACK=0 \
-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 \
-

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

2017-11-15 Thread Alexander Rødseth
Date: Wednesday, November 15, 2017 @ 11:24:55
  Author: arodseth
Revision: 266867

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/PKGBUILD
(from rev 266866, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/julia-libunwind-version.patch
(from rev 266866, julia/trunk/julia-libunwind-version.patch)
  julia/repos/community-x86_64/julia-makefile.patch
(from rev 266866, julia/trunk/julia-makefile.patch)
  julia/repos/community-x86_64/sysfix.install
(from rev 266866, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia-libunwind-version.patch
  julia/repos/community-x86_64/julia-makefile.patch
  julia/repos/community-x86_64/sysfix.install

---+
 PKGBUILD  |  295 +++-
 julia-libunwind-version.patch |   30 ++--
 julia-makefile.patch  |   26 +--
 sysfix.install|   20 +-
 4 files changed, 185 insertions(+), 186 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 11:24:40 UTC (rev 266866)
+++ PKGBUILD2017-11-15 11:24:55 UTC (rev 266867)
@@ -1,148 +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.6.1
-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'
- 'gmp' 'mpfr' 'zlib' 'suitesparse' 'patchelf' 'cmake' 'pcre2' 
'libgit2' 'llvm39')
-options=('!emptydirs' 'staticlibs')
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/julia-$pkgver.tar.gz"{,.asc}
-julia-libunwind-version.patch julia-makefile.patch)
-sha256sums=('e68adfa85df529f8ad092a9bf85d2350101c658fe455c5ebf2b6d119359e10d9'
-'SKIP'
-'16009ce454f58463464027cbaf6186ccfab84c37660a52fb1ec3a0f514df64f9'
-'342b43532fbace3508688eee879113160e01cbbda29610b53f2f34796bc0312a')
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495') # Julia (Binary 
signing key) 
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia' > julia.conf
-
-  cd $pkgname
-  patch -p1 -i ../julia-libunwind-version.patch
-  sed -e 's|-lLLVM|-lLLVM-3.9|' -i src/Makefile # link against llvm39
-  patch -p0 -i ../julia-makefile.patch # make 'make install' really just 
install
-}
-
-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
-  make prefix=/usr sysconfdir=/etc \
-MARCH=$M \
-JULIA_BUILD_MODE=release \
-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' 
'patchelf' 'hicolor-icon-theme' 'llvm39-libs')
-  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
-  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 \
-