[arch-commits] Commit in julia/repos (8 files)
Alexander Rødseth
arodseth at archlinux.org
Sun Feb 22 15:43:38 UTC 2015
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 <rodseth at gmail.com>
-# Contributor: Lex Black <autumn-wind at web dot de>
-# Contributor: Michael Jakl <jakl.michael at gmail.com>
-# Contributor: devmotion <nospam-archlinux.org at devmotion.de>
-# Contributor: Valentin Churavy <v.churavy at gmail.com>
-
-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 <rodseth at gmail.com>
+# Contributor: Lex Black <autumn-wind at web dot de>
+# Contributor: Michael Jakl <jakl.michael at gmail.com>
+# Contributor: devmotion <nospam-archlinux.org at devmotion.de>
+# Contributor: Valentin Churavy <v.churavy at gmail.com>
+
+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:
Deleted: community-i686/sysfix.install
===================================================================
--- community-i686/sysfix.install 2015-02-22 15:43:26 UTC (rev 128112)
+++ community-i686/sysfix.install 2015-02-22 15:43:38 UTC (rev 128113)
@@ -1,10 +0,0 @@
-post_install() {
- # Removing sys.so if needed, in order for Julia to start, see FS#39721
- julia --version 2>/dev/null || rm /usr/lib/julia/sys.so
-}
-
-post_upgrade() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et:
Copied: julia/repos/community-i686/sysfix.install (from rev 128112, julia/trunk/sysfix.install)
===================================================================
--- community-i686/sysfix.install (rev 0)
+++ community-i686/sysfix.install 2015-02-22 15:43:38 UTC (rev 128113)
@@ -0,0 +1,10 @@
+post_install() {
+ # Removing sys.so if needed, in order for Julia to start, see FS#39721
+ julia --version 2>/dev/null || rm /usr/lib/julia/sys.so
+}
+
+post_upgrade() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2015-02-22 15:43:26 UTC (rev 128112)
+++ community-x86_64/PKGBUILD 2015-02-22 15:43:38 UTC (rev 128113)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: Lex Black <autumn-wind at web dot de>
-# Contributor: Michael Jakl <jakl.michael at gmail.com>
-# Contributor: devmotion <nospam-archlinux.org at devmotion.de>
-# Contributor: Valentin Churavy <v.churavy at gmail.com>
-
-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-x86_64/PKGBUILD (from rev 128112, julia/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2015-02-22 15:43:38 UTC (rev 128113)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Lex Black <autumn-wind at web dot de>
+# Contributor: Michael Jakl <jakl.michael at gmail.com>
+# Contributor: devmotion <nospam-archlinux.org at devmotion.de>
+# Contributor: Valentin Churavy <v.churavy at gmail.com>
+
+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:
Deleted: community-x86_64/sysfix.install
===================================================================
--- community-x86_64/sysfix.install 2015-02-22 15:43:26 UTC (rev 128112)
+++ community-x86_64/sysfix.install 2015-02-22 15:43:38 UTC (rev 128113)
@@ -1,10 +0,0 @@
-post_install() {
- # Removing sys.so if needed, in order for Julia to start, see FS#39721
- julia --version 2>/dev/null || rm /usr/lib/julia/sys.so
-}
-
-post_upgrade() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et:
Copied: julia/repos/community-x86_64/sysfix.install (from rev 128112, julia/trunk/sysfix.install)
===================================================================
--- community-x86_64/sysfix.install (rev 0)
+++ community-x86_64/sysfix.install 2015-02-22 15:43:38 UTC (rev 128113)
@@ -0,0 +1,10 @@
+post_install() {
+ # Removing sys.so if needed, in order for Julia to start, see FS#39721
+ julia --version 2>/dev/null || rm /usr/lib/julia/sys.so
+}
+
+post_upgrade() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list