summaryrefslogtreecommitdiff
path: root/src/rebar_prv_install_deps.erl
Commit message (Collapse)AuthorAgeFilesLines
* fix dialyzer warnings, except 'no local return' warningsTristan Sloughter2015-08-081-23/+9
|
* add tree option to deps command that prints pkg deps treeTristan Sloughter2015-08-031-2/+2
|
* keep correct Level for pkg deps of scm depsTristan Sloughter2015-08-011-8/+9
|
* Merge pull request #655 from pvmart/masterTristan Sloughter2015-07-261-3/+0
|\ | | | | Fix duplicate function clause in rebar_prv_install_deps:parse_dep/5
| * Fix duplicate function clause in rebar_prv_install_deps:parse_dep/5pvmart2015-07-261-3/+0
| |
* | add support for old format otp versionsTristan Sloughter2015-07-251-0/+3
|/
* Tidy up "Linking.." messages during compileRichard Jones2015-07-221-5/+17
| | | | | | | | | | | | Linking message will only be printed the first time the link or copy actually happens. Note: rebar_file_utils:symlink_or_copy will now return 'exists' instead of ok, if it did nothing because the link exists. Nothing was checking the return value yet, so seemed reasonable.
* do not install profile deps of depsTristan Sloughter2015-07-181-1/+1
|
* pass failing upgrade case where levels are increasedTristan Sloughter2015-07-081-29/+16
|
* Minor refactorsFred Hebert2015-07-021-23/+37
|
* wip: deps install refactorFred Hebert2015-07-021-93/+75
|
* expand plugins for profile after applying profilesTristan Sloughter2015-06-261-4/+3
|
* deduplicate parts of package and source dep handlingTristan Sloughter2015-06-211-31/+9
|
* overrides working for pkg depsTristan Sloughter2015-06-211-5/+12
|
* plugins providerTristan Sloughter2015-06-181-20/+27
|
* add config option artifactsTristan Sloughter2015-06-021-1/+2
|
* Merge pull request #487 from ferd/fix-provider-barenessTristan Sloughter2015-05-301-1/+1
|\ | | | | fix bareness issues
| * fix bareness issuesFred Hebert2015-05-311-1/+1
| | | | | | | | | | | | - Crashes in providers lib when no providers in a namespace are bare - Making sure bareness matches semantics; i.e. a bare provider is visible, a non-bare provider is hidden.
* | store plugin providers in app_info's state for depsTristan Sloughter2015-05-281-7/+24
| |
* | fix for plugin installation and code pathsTristan Sloughter2015-05-271-7/+10
|/
* add additional commentsTristan Sloughter2015-05-221-0/+3
|
* fix storing of pkg and src deps in app_infoTristan Sloughter2015-05-221-4/+2
|
* read in app information after fetch so we have the depsTristan Sloughter2015-05-221-3/+4
|
* only update, when not in explicit upgrade, locks if out of dateTristan Sloughter2015-05-211-41/+52
|
* parsing deps of a dep should be done at the dep's level + 1Tristan Sloughter2015-05-211-1/+1
|
* always upgrade if needs_update is trueTristan Sloughter2015-05-211-7/+9
|
* install plugins from the global config to ~/.cache/pluginsTristan Sloughter2015-05-171-2/+1
|
* don't print skip message if dep is locked for pkgs as wellTristan Sloughter2015-05-121-7/+10
|
* verify checksums of hex packagesTristan Sloughter2015-05-121-8/+8
|
* Further restricting skipped deps warningsFred Hebert2015-05-101-5/+4
|
* improve log messages on upgradesTristan Sloughter2015-05-091-3/+5
|
* check registry for missing package that may exist for mixTristan Sloughter2015-05-091-3/+10
|
* handle missing package in registry by skippingTristan Sloughter2015-05-041-1/+1
|
* don't load package registry unless there are pkg deps to solveTristan Sloughter2015-04-281-13/+22
|
* Merge pull request #371 from tsloughter/fetch_app_detailsTristan Sloughter2015-04-251-1/+10
|\ | | | | read in application details into app_info after fetch
| * read in application details into app_info after fetchTristan Sloughter2015-04-241-1/+10
| |
* | Avoid topsorting deps twiceFred Hebert2015-04-251-16/+6
|/ | | | They can be culled and reused in one sort pass.
* fix tracking of all profiles dep pathsTristan Sloughter2015-04-221-2/+2
|
* Merge pull request #354 from tsloughter/track_code_pathTristan Sloughter2015-04-221-3/+3
|\ | | | | Track code path
| * track and cleanup code paths for different contextsTristan Sloughter2015-04-211-3/+3
| |
* | Symlink existing default deps when in new profileFred Hebert2015-04-221-8/+15
|/ | | | Should fix #360
* add to end of code path not the beginning in handle_depsTristan Sloughter2015-04-181-1/+1
|
* Default deps always to the default profileFred Hebert2015-04-171-23/+58
| | | | | | | | | | | | | | | | When fetching dependencies for the first time using a profile (`rebar3 as prod release` or `rebar3 ct`), the dependencies get fetched into the non-default profile. This has two consequences: - the files get re-downloaded on follow-up runs - the lock file includes incomplete or too many deps in its list This patch forces dependencies in the default profile to be stored in _build/default/lib even when running under other profiles, then symlinks them to the correct one. This makes it so common dependencies in 'default' be downloaded there and avoids re-downloading them. Should also fix the lock issues.
* fix bug on foundapp could have bad matchTristan Sloughter2015-04-111-4/+4
|
* store registry fetched from disk in stateTristan Sloughter2015-04-111-2/+3
|
* support single atoms for pkg deps, fetch highest version availableTristan Sloughter2015-04-111-18/+37
|
* install each deps plugins after handling dep, instead of at the endTristan Sloughter2015-04-051-7/+7
|
* move resource modules list to rebar_state, no longer staticTristan Sloughter2015-04-041-3/+3
|
* install dep plugins & run provider hooks the same as shell hooksTristan Sloughter2015-04-041-1/+4
|
* Merge pull request #283 from fishcakez/dial_warnsFred Hebert2015-03-251-2/+2
|\ | | | | Fix some dialyzer warnings