summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Make Edoc carry paths of pre-built librariesFred Hebert2016-08-251-9/+26
| | | | | | | | | | | | | | | | | | | | | | Given the topological sort applied to top-level apps, we should be able to carry the edoc values for paths configured when more than one app exists. This allows multiple disjoint app to have defined cross-linking in the documentation. Tests pending.
* | Print error on too many help argumentsRasmus Svensson2016-08-151-1/+4
| | | | | | | | | | | | | | Previously the help task would crash when given more than two arguments. After this change it instead print a message: Too many arguments given. Usage: rebar3 help [<namespace>] <task>
* | Make the escriptize provider hookableFred Hebert2016-08-131-2/+7
| | | | | | | | This will allow to move and modify the generated files
* | Merge pull request #1298 from ferd/escript-filter-paths-fixFred Hebert2016-08-101-1/+3
|\ \ | | | | | | Fix filtering of system libraries in escriptize
| * | Fix filtering of system libraries in escriptizeFred Hebert2016-08-101-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/erlang/rebar3/pull/1249 introduced a mechanism by which escript dependencies of applications only would be included; this required adding a filter to skip system libraries in the OTP root because that tends to break escripts in very nasty ways. However, the problem came that some libraries are just not in the escript path but may still be included; for these libraries the path prefix check failed as they return `{error, bad_name}` from `code:lib_dir(Dep)` rather than just the path they're in -- specifically, this happens with top level apps. The issue was reported in https://github.com/erlang/rebar3/issues/1294 and the current patch fixes it by accepting a `bad_name` dep as valid, since it is obviously not in the root path.
* | | Merge pull request #1288 from ElectronicRU/masterFred Hebert2016-08-101-1/+1
|\ \ \ | | | | | | | | Typo fix.
| * | | Typo fix.Alexander Sedov2016-08-041-1/+1
| |/ /
* | | Merge pull request #1282 from ssbx/custom_template_dirFred Hebert2016-08-101-1/+1
|\ \ \ | | | | | | | | template_dir option was forgotten in documentation plus recurse in di…
| * | | template_dir option was forgotten in documentation plus recurse in directory ↵Sébastien Serre2016-07-231-1/+1
| | | | | | | | | | | | | | | | added
* | | | Handle `escriptize` when the specified app is missingNathaniel Waisbrot2016-08-041-2/+6
| |/ / |/| | | | | | | | | | | When rebar.config contains a `escript_main_app` option, but the specified app doesn't exist in the build directory, print an error.
* | | Merge pull request #1274 from deadtrickster/ssl_verify_fun_bumpFred Hebert2016-08-011-1/+1
|\ \ \ | | | | | | | | ssl_verify_hostname was renamed to ssl_verify_fun
| * | | ssl_verify_hostname was renamed to ssl_verify_funIlya Khaprov2016-07-151-1/+1
| | | |
* | | | Merge pull request #1279 from gbour/fix-dialyzeralisdair sullivan2016-07-311-0/+2
|\ \ \ \ | |_|/ / |/| | | fix catching `not_valid` error on dialyzer
| * | | Fix return error on `not_valid` to force .plt file regenerationGuillaume Bour2016-07-301-2/+1
| | | |
| * | | Fix support for `not_valid` dialyzer errorGuillaume Bour2016-07-221-0/+3
| |/ /
* | | Fix opts check when compiler called with dict optsFred Hebert2016-07-221-1/+7
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rebar_base_compiler allows to be called with two types of options: a dictionary, or a rebar_state record. In the later case, the options are taken out with a call from rebar_opts, which fetches options that have been inserted in the application via rebar_app_info as part of the app_discovery phase, and are a list. This yields a possibility that options used when formatting warnings can either be a list of a dict, and we only used lists when making checks. This ended up breaking 3rd party compiler users (i.e. LFE compile plugin) since they were calling us with a dict rather than our own internal records. This patch supports both types of lookups to avoid issues.
* | Avoid PLT rebuild when files deleted on new dialyzerJames Fish2016-07-111-3/+16
| |
* | Don't error when analyzing empty appJames Fish2016-07-111-4/+7
| |
* | Handle empty PLTsJames Fish2016-07-111-1/+12
| |
* | Merge pull request #1249 from ferd/required-escript-depsFred Hebert2016-07-081-5/+19
|\ \ | | | | | | Escriptize based on configured apps only
| * | Escriptize based on configured apps onlyFred Hebert2016-06-261-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this patch, the escriptize command flat out selected all declared dependencies. This patch instead looks at the app files and only includes the dependencies of the top level app and the extra ones, avoiding to package more apps than required. This required a version bump on cth_readable as it mistakenly included 'syntax_lib' instead of 'syntax_tools' as a dependency.
* | | Fixes for windows environment: 1) copy empty directories when cloning (since ↵Steve Strong2016-06-282-3/+3
|/ / | | | | | | git occasionally has a refs directory with no files in it - if the directory is not present, then git does not believe it is a git repo) and 2) change order of git rev-parse arguments to match git docs
* | Merge pull request #1207 from ferd/pkg-local-hash-lockFred Hebert2016-06-228-32/+125
|\ \ | | | | | | lock file contains expected hash for pkg dependencies
| * | Only display old version warning onceFred Hebert2016-06-101-4/+17
| | | | | | | | | | | | | | | This uses the env variable as a global store for variables. It's not the cleanest thing, but it sounded nicer than pdicts.
| * | Hashes in lockfile are diff friendlyFred Hebert2016-06-091-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reworks the version and hash printing in the lockfile to minimize diff changes: - the version is on its own line so that the locks are mostly the same aside from the last line - the hashes are each printed on one line with the package name for simpler diffing too.
| * | Hide the expected hash on fetch outputFred Hebert2016-05-251-1/+5
| | |
| * | Validate checksums expected vs obtainedFred Hebert2016-05-242-7/+16
| | |
| * | Fetch hashes from index prior to fetchingFred Hebert2016-05-241-1/+8
| | |
| * | Support package hashes in structure and lockfileFred Hebert2016-05-246-26/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | - the internal representation for package locks moves from `{Name, {pkg, PkgName, Vsn}, Lvl}` to `{Name, {pkg, PkgName, Vsn, Hash}, Lvl}` - the internal representation for packages moves from `{pkg, PkgName, Vsn}` to `{pkg, PkgName, Vsn, Hash}` - the hash can be `undefined`, meaning no check will be done - no checking is done yet.
* | | Merge pull request #1242 from jonathn/unset-debugFred Hebert2016-06-181-2/+2
|\ \ \ | | | | | | | | Let DEBUG="" and QUIET="" mean disable the option
| * | | Let DEBUG="" and QUIET="" mean disable the optionJon2016-06-181-2/+2
| | | | | | | | | | | | | | | | | | | | Setting DEBUG/QUIET environment variable to the empty string now acts the same as unsetting it. Unsetting is not always easy/possible.
* | | | go back to semver post-releaseFred Hebert2016-06-181-1/+1
| | | |
* | | | Bump to 3.2.0Fred Hebert2016-06-181-1/+1
| | | |
* | | | Fix unicode rendering of deps tree (issue #1140)Jon2016-06-181-1/+1
|/ / /
* | | ignore return value of `rebar_utils:reread_config` in shell provideralisdair sullivan2016-06-121-1/+2
| | |
* | | normalize include dirs to absolute paths during compilationalisdair sullivan2016-06-121-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | changed include files were not properly picked up by `erlc_compiler` in cases where they were in directories relative to the application source and not the current working dir of rebar3 fixes #1199
* | | Merge pull request #1232 from talentdeficit/REBAR-1184Fred Hebert2016-06-111-0/+7
|\ \ \ | | | | | | | | REBAR-1184 always recompile if `ERL_COMPILER_OPTIONS` env var is set
| * | | REBAR-1184 always recompile if `ERL_COMPILER_OPTIONS` env var is setalisdair sullivan2016-06-111-0/+7
| | | | | | | | | | | | | | | | partially addresses #1184
* | | | Merge pull request #1227 from ferd/compiler-source-formatFred Hebert2016-06-113-13/+67
|\ \ \ \ | | | | | | | | | | Compiler source paths in output are now relative
| * | | | Fix alternative path printing, default is relativeFred Hebert2016-06-092-38/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This required moving the reporting functions to rebar_base_compiler but since this was already done for error_tuple, this seems to make sense. Paths are also reformatted for warnings in erlc files.
| * | | | Rename 'unchanged' option to 'build'Fred Hebert2016-06-061-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to eventually change the default type without it looking ridiculous.
| * | | | Option to format compiler sourcesGarrett Smith2016-05-023-9/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default rebar3 displays compiler sources as absolute paths in their original location, which is under the build dir. This change introduces an option 'compiler_source_format' to format sources in two alternative ways: relative absolute When either 'relative' or 'absolute' are specified, the file is resolved to its original location when it is a link. When 'relative' is specified, the path is displayed relative to the current working directory. When 'absolute' is specified, the path is absolute. The default value is 'unchaged' which leaves the compiler source unchanged. This is arguably too flexible as I suspect most people would opt for 'relative' all the time - it's the most compact representation of the file and is sufficient to find the source given cwd. The change however is meant to introduce the change gradually, preserving existing behavior and giving users a choice for formats. In time perhaps the default can be changed to 'relative' - but still allowing users to revert to the other two options ('absolutel' and 'unchanged') as needed.
* | | | | add support for passing a sys_config to common testTristan Sloughter2016-06-114-30/+56
| |/ / / |/| | |
* | | | Support ENV config for proxy valuesFred Hebert2016-06-111-1/+5
| | | | | | | | | | | | | | | | | | | | - The configured stuff in rebar3 takes precedence over the ENV - The env is then chosen
* | | | Merge pull request #1080 from project-fifo/crashdumpFred Hebert2016-06-104-3/+19
|\ \ \ \ | | | | | | | | | | Write rebar3.crashdump on errors
| * | | | Make sure not to dump in api modeHeinz N. Gies2016-04-164-5/+18
| | | | |
| * | | | Write rebar3.crashdump on errorsHeinz N. Gies2016-04-162-3/+6
| | | | |
* | | | | Merge pull request #1164 from snaiper80/fix_cover_compile_erroralisdair sullivan2016-06-061-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Fix compile error case when cover compilation
| * | | | | Fix compile error case when cover compilationLee GiTack2016-04-181-1/+4
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dependent libs is required for some module when cover compiling. So all dependencies should be available on code path. This fixes #1148 issue.
* | | | | Merge pull request #1219 from ferd/umbrella-upgradeFred Hebert2016-06-061-1/+23
|\ \ \ \ \ | | | | | | | | | | | | Bugfix for upgrading deps of umbrella apps