diff options
author | Christopher Vance <[email protected]> | 2014-12-26 11:23:00 +1100 |
---|---|---|
committer | Christopher Vance <[email protected]> | 2014-12-26 11:23:00 +1100 |
commit | 4197e19f189ef2c6982987423fd3f55fb615736e (patch) | |
tree | 19ae3f5b7245064bd3c5a98acc647974bb12b4bb | |
parent | 68c888981b1b81e922de86813effce14b0f06082 (diff) | |
download | erlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.tar.gz erlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.tar.bz2 erlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.zip |
add svn dependencies
-rw-r--r-- | README.md | 11 | ||||
-rw-r--r-- | core/deps.mk | 2 | ||||
-rw-r--r-- | erlang.mk | 2 |
3 files changed, 15 insertions, 0 deletions
@@ -115,6 +115,17 @@ dep_cowboy = git https://github.com/ninenines/cowboy 1.0.0 They will always be compiled using the command `make`. If the dependency does not feature a Makefile, then erlang.mk will be used for building. +For subversion dependencies, the url specifies trunk, branch or +tag. To specify a particular revision, use `@revision` at the end of +the url. No separate specification of branch, tag, or revision is +required or possible. + +``` erlang +DEPS = ex1 ex2 +dep_ex1 = svn https://example.com/svn/trunk/project/ex1 +dep_ex2 = svn svn://example.com/svn/branches/erlang-proj/ex2@264 +``` + You can also specify test-only dependencies. These dependencies will only be downloaded when running `make tests`. The format is the same as above, except the variable `TEST_DEPS` holds the list of test-only dependencies. diff --git a/core/deps.mk b/core/deps.mk index 80bedda..7d4b974 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -49,6 +49,8 @@ define dep_fetch elif [ "$$$$VS" = "hg" ]; then \ hg clone -U $$$$REPO $(DEPS_DIR)/$(1); \ cd $(DEPS_DIR)/$(1) && hg update -q $$$$COMMIT; \ + elif [ "$$$$VS" = "svn" ]; then \ + svn checkout $$$$REPO $(DEPS_DIR)/$(1); \ else \ echo "Unknown or invalid dependency: $(1). Please consult the erlang.mk README for instructions." >&2; \ exit 78; \ @@ -135,6 +135,8 @@ define dep_fetch elif [ "$$$$VS" = "hg" ]; then \ hg clone -U $$$$REPO $(DEPS_DIR)/$(1); \ cd $(DEPS_DIR)/$(1) && hg update -q $$$$COMMIT; \ + elif [ "$$$$VS" = "svn" ]; then \ + svn checkout $$$$REPO $(DEPS_DIR)/$(1); \ else \ echo "Unknown or invalid dependency: $(1). Please consult the erlang.mk README for instructions." >&2; \ exit 78; \ |