- 04 Apr, 2019 1 commit
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
- 13 Mar, 2019 1 commit
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
- 06 Mar, 2019 2 commits
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
mod.sum generation had a fix in this version which probably is the reason for #6056 License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
- 05 Mar, 2019 6 commits
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Łukasz Magiera authored
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
-
- 06 Nov, 2018 1 commit
-
-
Steven Allen authored
We want to explicitly pass these where we need them. fixes #5733 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 09 Oct, 2018 1 commit
-
-
Steven Allen authored
Go 1.11 changes the output of `go fmt` slightly so we either need to all *downgrade* or *upgrade*. Let's upgrade. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 11 Sep, 2018 1 commit
-
-
Steven Allen authored
fixes #2722 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 19 Jul, 2018 1 commit
-
-
Steven Allen authored
fixes #5260 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 16 May, 2018 1 commit
-
-
Łukasz Magiera authored
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com> Signed-off-by: Victor Bjelkholm <git@victor.earth> Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 23 Mar, 2018 2 commits
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Lars Gierth authored
License: MIT Signed-off-by: Lars Gierth <larsg@systemli.org>
-
- 03 Feb, 2018 1 commit
-
-
Steven Allen authored
fixes #4642 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 16 Dec, 2017 1 commit
-
-
Steven Allen authored
We were doing this as part of the `test` target but we don't run that on CI (or at least not on Travis). License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 04 Dec, 2017 1 commit
-
-
Jeromy authored
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
-
- 01 Dec, 2017 1 commit
-
-
Steven Allen authored
fixes #4427 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 25 Aug, 2017 1 commit
-
-
Łukasz Magiera authored
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
-
- 22 Aug, 2017 1 commit
-
-
Łukasz Magiera authored
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
-
- 07 Jul, 2017 1 commit
-
-
Łukasz Magiera authored
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
-
- 01 Jun, 2017 1 commit
-
-
zramsay authored
License: MIT Signed-off-by: Zach Ramsay <zach.ramsay@gmail.com>
-
- 15 Mar, 2017 1 commit
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
- 11 Mar, 2017 1 commit
-
-
Lars Gierth authored
In workspace setups that have the source tree symlinked into GOPATH, the `go list `command wouldn't recognize that we're technically within GOPATH, because `pwd` doesn't look like it. For example /home/user/go/src/github.com/ipfs/go-ipfs => /home/user/go/ipfs/go-ipfs produces the import path _/home/user/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random/random which is not within GOPATH. We get around this by using fully-qualified import paths instead: starting in github.com/ipfs/go-ipfs/ instead of ./ License: MIT Signed-off-by: Lars Gierth <larsg@systemli.org>
-
- 12 Feb, 2017 3 commits
-
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-
Jakub Sztandera authored
This commit introduces non-recursive Makefile infrastructure that replaces current Makefile infrastructure. It also generally cleanups the Makefiles, separates them into nicer sub-modules and centralizes common operations into single definitions. It allows to depend on any target that is defined in the makefile, this means that for example `gx install` is called once when `make build test_expensive_sharness` is called instead of 4 or 5 times. It also makes the dependencies much cleaner and allows for reuse of modules. For example sharness coverage collection (WIP) uses sharness target with amended PATH, previously it might have been possible but not without wiring in the coverage collection into sharness make runner code. Yes, it is more complex but not much more. There are few rules that have to be followed and few complexities added but IMHO it is worth it. How to NR-make: 1. If make is to generate some file via a target, it MUST be defined in Rules.mk file in the directory of the target. 2. `Rules.mk` file MUST have `include mk/header.mk` statement as the first line and `include mk/footer.mk` statement as the last line (apart from project root `Rules.mk`). 3. It then MUST be included by the closest `Rules.mk` file up the directory tree. 4. Inside a `Rules.mk` special variable accessed as `$(d)` is defined. Its value is current directory, use it so if the `Rules.mk` file is moved in the tree it still works without a problem. Caution: this variable is not available in the recipe part and MUST NOT be used. Use name of the target or prerequisite to extract it if you need it. 5. Make has only one global scope, this means that name conflicts are a thing. Names SHOULD follow `VAR_NAME_$(d)` convention. There are exceptions from this rule in form of well defined global variables. Examples: General lists `TGT_BIN`, `CLEAN`; General targets: `TEST`, `COVERAGE`; General variables: `GOFLAGS`, `DEPS_GO`. 3. Any rules, definitions or variables that fit some family SHOULD be defined in `mk/$family.mk` file and included from project root `Rules.mk` License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
-