forked from pool/julia
- Update to version 0.3.0
* See included NEWS.md for details - Add _service in disabled mode for Rmath and libuv sources OBS-URL: https://build.opensuse.org/package/show/science/julia?expand=0&rev=4
This commit is contained in:
parent
791e6d090a
commit
86f60fa03b
3
Rmath-226598f.tar.gz
Normal file
3
Rmath-226598f.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cfb9e3d1f844a5bec60ea45b67e4929a36d651ed7f50f11dddbd49874a6bbc2d
|
||||||
|
size 192575
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c6d515c04d0b13e578d6f6acf32361195dd2a5047691e5e0ca2fc0178137e286
|
|
||||||
size 168642
|
|
18
_service
Normal file
18
_service
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<services>
|
||||||
|
<service name="tar_scm" mode="disabled">
|
||||||
|
<param name="url">https://github.com/JuliaLang/Rmath.git</param>
|
||||||
|
<param name="scm">git</param>
|
||||||
|
<param name="versionformat">%h</param>
|
||||||
|
<param name="revision">226598f</param>
|
||||||
|
</service>
|
||||||
|
<service name="tar_scm" mode="disabled">
|
||||||
|
<param name="url">https://github.com/JuliaLang/libuv.git</param>
|
||||||
|
<param name="scm">git</param>
|
||||||
|
<param name="versionformat">%h</param>
|
||||||
|
<param name="revision">a12eb33</param>
|
||||||
|
</service>
|
||||||
|
<service name="recompress" mode="disabled">
|
||||||
|
<param name="file">*.tar</param>
|
||||||
|
<param name="compression">gz</param>
|
||||||
|
</service>
|
||||||
|
</services>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3e318f69bb00778a457bfd680859e4ba9f02f95a4ed6872ba69c09f3622d3c1a
|
|
||||||
size 2270778
|
|
3
julia-0.3.0.tar.gz
Normal file
3
julia-0.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1e9778129231aeff4e5f6100b0b71d2dbc4306cfc92cf533e527907d4a7a9aa1
|
||||||
|
size 2271301
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 21 05:39:43 UTC 2014 - dmitry_r@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.3.0
|
||||||
|
* See included NEWS.md for details
|
||||||
|
- Add _service in disabled mode for Rmath and libuv sources
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 15 13:32:56 UTC 2014 - dmitry_r@opensuse.org
|
Fri Aug 15 13:32:56 UTC 2014 - dmitry_r@opensuse.org
|
||||||
|
|
||||||
|
15
julia.spec
15
julia.spec
@ -17,18 +17,19 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: julia
|
Name: julia
|
||||||
Version: 0.3.0~rc4
|
Version: 0.3.0
|
||||||
%define src_ver 0.3.0-rc4
|
%define rmath_ver 226598f
|
||||||
|
%define libuv_ver a12eb33
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: High-level, high-performance dynamic programming language
|
Summary: High-level, high-performance dynamic programming language
|
||||||
License: MIT and GPL-2.0+
|
License: MIT and GPL-2.0+
|
||||||
Group: Development/Languages/Other
|
Group: Development/Languages/Other
|
||||||
Url: http://julialang.org/
|
Url: http://julialang.org/
|
||||||
Source0: https://github.com/JuliaLang/julia/archive/v%{src_ver}.tar.gz#/julia-%{src_ver}.tar.gz
|
Source0: https://github.com/JuliaLang/julia/archive/v%{version}.tar.gz#/julia-%{version}.tar.gz
|
||||||
Source1: juliabuildopts
|
Source1: juliabuildopts
|
||||||
# external sources
|
# external sources
|
||||||
Source10: libuv.tar.gz
|
Source10: libuv-%{libuv_ver}.tar.gz
|
||||||
Source11: Rmath.tar.gz
|
Source11: Rmath-%{rmath_ver}.tar.gz
|
||||||
BuildRequires: arpack-ng-devel
|
BuildRequires: arpack-ng-devel
|
||||||
BuildRequires: blas-devel
|
BuildRequires: blas-devel
|
||||||
BuildRequires: dSFMT-devel
|
BuildRequires: dSFMT-devel
|
||||||
@ -111,7 +112,7 @@ Contains the Julia code examples.
|
|||||||
%{expand:%global juliabuildopts %(cat %{SOURCE1})}
|
%{expand:%global juliabuildopts %(cat %{SOURCE1})}
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n julia-%{src_ver}
|
%setup -q -n julia-%{version}
|
||||||
|
|
||||||
# remove .gitignore
|
# remove .gitignore
|
||||||
find . -name ".git*" -exec rm {} \;
|
find . -name ".git*" -exec rm {} \;
|
||||||
@ -119,6 +120,8 @@ find . -name ".git*" -exec rm {} \;
|
|||||||
cd deps
|
cd deps
|
||||||
tar xzf %{SOURCE10}
|
tar xzf %{SOURCE10}
|
||||||
tar xzf %{SOURCE11}
|
tar xzf %{SOURCE11}
|
||||||
|
mv -T Rmath-%{rmath_ver} Rmath
|
||||||
|
mv -T libuv-%{libuv_ver} libuv
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags} %{juliabuildopts}
|
make %{?_smp_mflags} %{juliabuildopts}
|
||||||
|
3
libuv-a12eb33.tar.gz
Normal file
3
libuv-a12eb33.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a367695686050fdaf206eea45cf6fa445eb012d23501557dd1e6fad4c6dd909a
|
||||||
|
size 781194
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:43133f14ecefa34a8817098d76b3e71e5ee21540d973ecc6a4020283c66988a6
|
|
||||||
size 730057
|
|
Loading…
Reference in New Issue
Block a user