commit 8865827dedc7decf65a8434242e8e5a0e9c62a93 parent f9d909579743e69ab0ccdc2014884c54ad962249 Author: Anders Damsgaard <andersd@riseup.net> Date: Wed, 3 Jan 2018 16:21:58 -0500 Remove Homebrew/WinRPM and package installation due to reliability issues Diffstat:
M | REQUIRE | | | 3 | --- |
D | deps/build.jl | | | 17 | ----------------- |
M | src/io.jl | | | 9 | --------- |
3 files changed, 0 insertions(+), 29 deletions(-)
diff --git a/REQUIRE b/REQUIRE @@ -3,6 +3,3 @@ WriteVTK NetCDF Documenter Compat 0.9.1 -BinDeps 0.3 -@osx Homebrew 0.0.4- -@windows WinRPM diff --git a/deps/build.jl b/deps/build.jl @@ -1,17 +0,0 @@ -#!/usr/bin/env julia -using Compat - -if is_apple() - using Homebrew - Homebrew.update() - Homebrew.add("gnuplot") - Homebrew.add("imagemagick") -end - -if is_windows() - using WinRPM - WinRPM.update() - WinRPM.install("gnuplot") - WinRPM.install("imagemagick") -end - diff --git a/src/io.jl b/src/io.jl @@ -9,15 +9,6 @@ import Compat using Compat.DelimitedFiles using Compat.Dates -# load Homebrew/WinRPM for gnuplot and imagemagick -if Compat.Sys.isapple() - using Homebrew -end - -if Compat.Sys.iswindows() - using WinRPM -end - ## IO functions export writeSimulation