Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Drop 0.3 support
  • Loading branch information
jiahao committed Jan 31, 2016
1 parent a09cd3c commit 37cac0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions REQUIRE
@@ -1,5 +1,4 @@
julia 0.4-
Compat

This comment has been minimized.

Copy link
@tkelman

tkelman Jul 24, 2016

Contributor

still calling using Compat so this needs to still be in REQUIRE

julia 0.4
BinDeps 0.2.12-
@osx Homebrew 0.0.4-
@windows WinRPM
4 changes: 2 additions & 2 deletions deps/build.jl
Expand Up @@ -6,7 +6,7 @@ using Compat
libgsl = library_dependency("libgsl", aliases="libgsl-0")

# package managers
provides(AptGet, @compat Dict("libgsl0ldbl"=>libgsl, "libgsl0-dev" =>libgsl, "gsl-bin"=>libgsl))
provides(AptGet, Dict("libgsl0ldbl"=>libgsl, "libgsl0-dev" =>libgsl, "gsl-bin"=>libgsl))
provides(Yum, "gsl-devel", libgsl)
provides(Pacman, "gsl", libgsl)

Expand All @@ -27,5 +27,5 @@ end
provides(Sources, URI("http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz"), libgsl)
provides(BuildProcess, Autotools(libtarget = "libgsl.la"), libgsl)

@BinDeps.install @compat Dict(:libgsl => :libgsl)
@BinDeps.install Dict(:libgsl => :libgsl)

0 comments on commit 37cac0c

Please sign in to comment.