forked from conda-forge/julia-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a custom juliarc.jl Needed to ensure packages and other relevant information to the Julia install are tracked in the conda environment. * Install custom juliarc Make sure that that our custom juliarc is available in the standard location. * Create the package directory Make sure that Julia initializes our package directory and includes the standard packages in it. * Bump build number to 1 Needed to repackage after removal of the wrapper script, inclusion of juliarc, and inclusion of the prepopulated package directory.
- Loading branch information
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
JULIA_PREFIX = abspath(joinpath(Base.source_path(), "..", "..", "..")) | ||
|
||
if !("JULIA_PKGDIR" in keys(ENV)) | ||
ENV["JULIA_PKGDIR"] = joinpath(JULIA_PREFIX, "share", "julia", "site") | ||
Pkg.init() | ||
Pkg.__init__() | ||
pop!(Base.LOAD_CACHE_PATH) | ||
end | ||
|
||
if !("JULIA_HISTORY" in keys(ENV)) | ||
ENV["JULIA_HISTORY"] = joinpath(JULIA_PREFIX, ".julia_history") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ source: | |
|
||
build: | ||
skip: True # [osx or win] | ||
number: 0 | ||
number: 1 | ||
features: | ||
- blas_{{ variant }} | ||
|
||
|