tRemove Homebrew/WinRPM and package installation due to reliability issues - Granular.jl - Julia package for granular dynamics simulation
 (HTM) git clone git://src.adamsgaard.dk/Granular.jl
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8865827dedc7decf65a8434242e8e5a0e9c62a93
 (DIR) parent f9d909579743e69ab0ccdc2014884c54ad962249
 (HTM) 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(-)
       ---
 (DIR) diff --git a/REQUIRE b/REQUIRE
       t@@ -3,6 +3,3 @@ WriteVTK
        NetCDF
        Documenter
        Compat 0.9.1
       -BinDeps 0.3
       -@osx Homebrew 0.0.4-
       -@windows WinRPM
 (DIR) diff --git a/deps/build.jl b/deps/build.jl
       t@@ -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
       -
 (DIR) diff --git a/src/io.jl b/src/io.jl
       t@@ -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