Here's an abridged log of my REPL session, in purplicious technicolor.
julia> versioninfo()
Julia Version 0.2.0
Commit 05c6461 (2013-11-16 23:44 UTC)
Platform Info:
System: Darwin (x86_64-apple-darwin12.5.0)
WORD_SIZE: 64
BLAS: libgfortblas
LAPACK: liblapack
LIBM: libopenlibm
julia> run(`rm -rf /Users/pygy/.julia`)
julia> Pkg.add("Homebrew")
[...]
INFO: Building Homebrew
sh: line 0: cd: /Users/pygy/.julia/Homebrew/deps/usr: No such file or
directory
======================== [ ERROR: Homebrew ]========================
failed process: Process(`sh -c 'cd /Users/pygy/.julia/Homebrew/deps/usr &&
git rev-parse --git-dir'`, ProcessExited(1)) [1]
at /Users/pygy/.julia/Homebrew/deps/build.jl:2
[...]
julia> run(`julia /Users/pygy/.julia/Homebrew/deps/build.jl`)
INFO: Cloning brew from https://github.com/staticfloat/homebrew.git
Cloning into '/Users/pygy/.julia/Homebrew/deps/usr'...
[...]
Cloning into
'/Users/pygy/.julia/Homebrew/deps/usr/Library/Taps/staticfloat-juliadeps'...
[...]
Tapped 28 formula
HEAD is now at 7dbece7 Merge branch 'kegpkg' of
github.com:staticfloat/homebrew into kegpkg
HEAD is now at e7a2203 Tab fix didn't work, revert to old behavior
julia> Pkg.add("ImageView")
INFO: Cloning cache of [Cairo, Cartesian, Color, Grid, ...]
INFO: Installing [...]
INFO: Building Homebrew
HEAD is now at 7dbece7 Merge branch 'kegpkg' of
github.com:staticfloat/homebrew into kegpkg
HEAD is now at e7a2203 Tab fix didn't work, revert to old behavior
INFO: Building Cairo
========================= [ ERROR: Cairo ] =========================
@setup not defined
at /Users/pygy/.julia/Cairo/deps/build.jl:1
INFO: Building Images
==========================[ ERROR: Images ]=========================
@setup not defined
at /Users/pygy/.julia/Images/deps/build.jl:1
INFO: Building Tk
=========================== [ ERROR: Tk ] ==========================
@setup not defined
at /Users/pygy/.julia/Tk/deps/build.jl:1
[...]
julia> Pkg.build("Cairo")
[...]
@setup not defined
at /Users/pygy/.julia/Cairo/deps/build.jl:1
julia> run(`julia /Users/pygy/.julia/Cairo/deps/build.jl`)
[đș ==> brew does its thing]
julia> using Cairo
[no errors, w00t111]
julia> Pkg.build("Images")
[...]
@setup not defined
at /Users/pygy/.julia/Images/deps/build.jl:1
julia> run(`julia /Users/pygy/.julia/Images/deps/build.jl`)
ERROR: None of the selected providers can install dependency
libMagickWand-6.Q16
And here am I stuck. Any ideas? âPierre-Yves
