summaryrefslogtreecommitdiff
path: root/src/rebar_prv_packages.erl
Commit message (Collapse)AuthorAgeFilesLines
* Unicode support in all the placesFred Hebert2017-08-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done through 3 main change groups: - replacing `~s` by `~ts` in format strings, so that strings that contain unicode are properly printed rather than crashing - adding the `unicode` argument to all function of the `re` module to ensure transformations on strings containing unicode data are valid instead of crashing (see issue #1302) - replacing `ec_cnv:to_binary/1` and `ec_cnv:to_list/1` with matching functions in `rebar_utils`. The last point has been done, rather than modifying and updating erlware commons, because binary and list conversions can be a contentious subject. For example, if what is being handled is actually bytes from a given binary stream, then forcing a byte-oriented interpretation of the data can corrupt it. As such, it does not appear safe to modify erlware commons' conversion functions since it may not be safe for all its users. Instead, rebar3 reimplements a subset of them (only converting atoms and chardata, ignoring numbers) with the explicit purpose of handling unicode string data. Tests were left as unchanged as possible. This may impact the ability to run rebar3's own suites in a unicode path, but respects a principle of least change for such a large patch.
* Allow 'rebar3 pkgs <app>' to return only that appFred Hebert2016-03-191-11/+21
| | | | | | | | Unsure if this should be a final supported format or if we should support other ways to match instead. This is a demo to solve the issue hilighted in https://github.com/erlang/rebar3/pull/1072
* Revert "Revert "only load packages when needed""Fred Hebert2015-09-021-0/+1
|
* Revert "only load packages when needed"Fred Hebert2015-09-021-1/+0
|
* only load packages when neededTristan Sloughter2015-09-021-0/+1
|
* fix pkgs provider output for new package index formatTristan Sloughter2015-08-241-3/+7
|
* replace use of dict of packages and registry with single ets tableTristan Sloughter2015-08-211-7/+5
|
* this patch treats pkg and src deps as equals, so level decides winnerTristan Sloughter2015-08-211-1/+1
| | | | | | | | Instead fetching and resolving src deps (which could depend on pkg deps) and then pkg deps this patch combines the two into a single set of iterations by level. The only difference between src and pkg deps in this new install_deps is how their deps list is found -- from the config or lock file for src deps and from the neighbors of the vertex for pkg.
* fix leaking hex_registry tablepvmart2015-08-191-1/+1
|
* fix dialyzer warnings, except 'no local return' warningsTristan Sloughter2015-08-081-7/+3
|
* sort versions of packages when printingTristan Sloughter2015-07-301-1/+5
|
* print sorted list of packagesTristan Sloughter2015-06-211-10/+13
|
* 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.
* support single atoms for pkg deps, fetch highest version availableTristan Sloughter2015-04-111-19/+14
|
* update all examples in providers to use rebar3Tristan Sloughter2015-03-071-1/+1
|
* move back to using format_error/1Tristan Sloughter2014-11-091-4/+4
|
* add format_error/2 provider callback to providersTristan Sloughter2014-10-221-1/+6
|
* move providers to separate appTristan Sloughter2014-10-031-9/+9
|
* return error messages from providersTristan Sloughter2014-09-271-1/+1
|
* reworking of help display and parse of commandsTristan Sloughter2014-09-171-1/+1
|
* improved dep handling and add package list taskTristan Sloughter2014-08-241-0/+58