Skip to content

Instantly share code, notes, and snippets.

@tpapp
Created September 24, 2018 12:51
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tpapp/3b6def2b43cfb9566e3048c37aeed6ab to your computer and use it in GitHub Desktop.
Save tpapp/3b6def2b43cfb9566e3048c37aeed6ab to your computer and use it in GitHub Desktop.
make-REQUIRE.jl
#!/usr/bin/env julia
######################################################################
# Overwrite REQUIRE using dependency information from Project.toml.
#
# Call from the root of the package repository.
#
# Has some basic sanity checks, but **use at your own risk**, `REQUIRE`
# will be overwritten.
#
# The purpose of this script is to appease attobot, until
# https://github.com/attobot/attobot/issues/50 is fixed.
######################################################################
@assert VERSION ≥ v"0.7"
import Pkg
const PT = Pkg.Types
Pkg.activate(pwd()) # current directory as the project
ctx = PT.Context()
pkg = ctx.env.pkg
if pkg ≡ nothing
@error "Not in a package, I won't generate REQUIRE."
exit(1)
else
@info "found package" pkg = pkg
end
deps = PT.get_deps(ctx)
non_std_deps = sort(collect(setdiff(keys(deps), values(ctx.stdlibs))))
open("REQUIRE", "w") do io
println(io, "julia 0.7")
for d in non_std_deps
println(io, d)
@info "listing $d"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment