123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831 |
- # Core: Packages and dependencies.
- CORE_DEPS_CASES = build-c-8cc build-c-imagejs build-erl build-js dep-commit dir doc fetch-cp fetch-custom fetch-fail-bad fetch-fail-unknown fetch-git fetch-hex fetch-hg fetch-legacy fetch-svn ignore order-first order-top otp pkg rel search shell test
- CORE_DEPS_TARGETS = $(addprefix core-deps-,$(CORE_DEPS_CASES))
- CORE_DEPS_CLEAN_TARGETS = $(addprefix clean-,$(CORE_DEPS_TARGETS))
- .PHONY: core-deps $(CORE_DEPS_TARGETS) clean-core-deps $(CORE_DEPS_CLEAN_TARGETS)
- clean-core-deps: $(CORE_DEPS_CLEAN_TARGETS)
- $(CORE_DEPS_CLEAN_TARGETS):
- $t rm -rf $(APP_TO_CLEAN)/
- core-deps: $(CORE_DEPS_TARGETS)
- ifneq ($(PLATFORM),msys2)
- core-deps-build-c-8cc: build clean-core-deps-build-c-8cc
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add 8cc to the list of build dependencies"
- $t sed -i.bak '2i\
- BUILD_DEPS = 8cc\
- dep_8cc = git https://github.com/rui314/8cc master\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/8cc
- $i "Check that 8cc can be started"
- $t $(APP)/deps/8cc/8cc -h $v
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member('8cc', Deps), \
- halt()"
- endif
- core-deps-build-c-imagejs: build clean-core-deps-build-c-imagejs
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add imagejs to the list of build dependencies"
- $t sed -i.bak '2i\
- BUILD_DEPS = imagejs\
- dep_imagejs = git https://github.com/jklmnn/imagejs master\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/imagejs
- $i "Check that imagejs works"
- $t $(APP)/deps/imagejs/imagejs bmp $(APP)/deps/imagejs/Makefile
- $t test -f $(APP)/deps/imagejs/Makefile.bmp
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(imagejs, Deps), \
- halt()"
- core-deps-build-erl: build clean-core-deps-build-erl
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add cowlib to the list of build dependencies"
- $t sed -i.bak '2i\
- BUILD_DEPS = cowlib\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowlib
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowlib]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(cowlib, Deps), \
- halt()"
- core-deps-build-js: build clean-core-deps-build-js
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add jquery to the list of build dependencies"
- $t sed -i.bak '2i\
- BUILD_DEPS = jquery\
- dep_jquery = git https://github.com/jquery/jquery master\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/jquery
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(jquery, Deps), \
- halt()"
- core-deps-dep-commit: build clean-core-deps-dep-commit
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy 1.0.0 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- dep_cowboy_commit = 1.0.0\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowboy, vsn), \
- halt()"
- core-deps-dir: build clean-core-deps-dir
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy to the list of dependencies with a custom DEPS_DIR"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- DEPS_DIR ?= \$$(CURDIR)/libs\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched in the custom DEPS_DIR"
- $t test -d $(APP)/libs/cowboy
- $t test -d $(APP)/libs/cowlib
- $t test -d $(APP)/libs/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/libs/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- halt()"
- core-deps-doc: build clean-core-deps-doc
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Generate .erl files"
- $t echo "-module(boy)." > $(APP)/src/boy.erl
- $t echo "-module(girl)." > $(APP)/src/girl.erl
- $i "Add Edown as a documentation building dependency"
- $t sed -i.bak '2i\
- DOC_DEPS = edown\
- EDOC_OPTS = {doclet, edown_doclet}\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that no dependencies were fetched"
- $t test ! -e $(APP)/deps
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(edown, Deps), \
- halt()"
- $i "Build the application documentation"
- $t $(MAKE) -C $(APP) docs $v
- $i "Check that documentation dependencies were fetched"
- $t test -d $(APP)/deps/edown
- $i "Check the Edown generated Markdown documentation"
- $t test -f $(APP)/doc/boy.md
- $t test -f $(APP)/doc/girl.md
- core-deps-fetch-cp: build clean-core-deps-fetch-cp
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Bootstrap a new OTP library named my_dep inside $(APP)"
- $t mkdir $(APP)/my_dep
- $t cp ../erlang.mk $(APP)/my_dep/
- $t $(MAKE) -C $(APP)/my_dep/ -f erlang.mk bootstrap-lib $v
- $i "Add my_dep to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = my_dep\
- dep_my_dep = cp $(CURDIR)/$(APP)/my_dep/\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add my_dep to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- my_dep,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/my_dep
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), my_dep]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(my_dep, Deps), \
- halt()"
- core-deps-fetch-custom: build clean-core-deps-fetch-custom
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add dependency boop using custom fetch method beep to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = boop\
- dep_boop = beep boop\
- dep_fetch_beep = mkdir -p \$$(DEPS_DIR)/\$$1/ebin/\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add boop to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- boop,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/boop
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- ok = application:load($(APP)), \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(boop, Deps), \
- halt()"
- core-deps-fetch-fail-bad: build clean-core-deps-fetch-fail-bad
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowlib as a dependency using a non-existing fetch method named oops"
- $t sed -i.bak '2i\
- DEPS = cowlib\
- dep_cowlib = oops https://github.com/ninenines/cowlib 1.0.0\
- ' $(APP)/Makefile
- $i "Check that building the application fails"
- $t if $(MAKE) -C $(APP) $v; then false; fi
- core-deps-fetch-fail-unknown: build clean-core-deps-fetch-fail-unknown
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add an unknown application as a dependency"
- $t sed -i.bak '2i\
- DEPS = unknown\
- ' $(APP)/Makefile
- $i "Check that building the application fails"
- $t if $(MAKE) -C $(APP) $v; then false; fi
- core-deps-fetch-git: build clean-core-deps-fetch-git
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy 1.0.0 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- dep_cowboy = git https://github.com/ninenines/cowboy 1.0.0\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowboy, vsn), \
- halt()"
- core-deps-fetch-hex: build clean-core-deps-fetch-hex
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy 1.0.0 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- dep_cowboy = hex 1.0.0\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowboy, vsn), \
- halt()"
- core-deps-fetch-hg: build clean-core-deps-fetch-hg
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Ehsa 4.0.3 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = ehsa\
- dep_ehsa = hg https://bitbucket.org/a12n/ehsa 4.0.3\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add ehsa to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- ehsa,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/ehsa
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), ehsa]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(ehsa, Deps), \
- {ok, \"4.0.3\"} = application:get_key(ehsa, vsn), \
- halt()"
- # Legacy must fail for the top-level application, but work for dependencies.
- core-deps-fetch-legacy: build clean-core-deps-fetch-legacy
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowlib as a dependency using a non-existing fetch method named oops"
- $t sed -i.bak '2i\
- DEPS = cowlib\
- dep_cowlib = https://github.com/ninenines/cowlib 1.0.0\
- ' $(APP)/Makefile
- $i "Check that building the application fails"
- $t if $(MAKE) -C $(APP) $v; then false; fi
- $i "Check that building the application works with IS_DEP=1"
- $t $(MAKE) -C $(APP) IS_DEP=1 $v
- core-deps-fetch-svn: build clean-core-deps-fetch-svn
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowlib 1.0.0 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowlib\
- dep_cowlib = svn https://github.com/ninenines/cowlib/tags/1.0.0\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowlib to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowlib,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowlib
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowlib]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowlib, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowlib, vsn), \
- halt()"
- core-deps-ignore: build clean-core-deps-ignore
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy to dependencies, Ranch to the ignore list and to test dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- IGNORE_DEPS = ranch\
- TEST_DEPS = ranch\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that the correct dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test ! -e $(APP)/deps/ranch
- $i "Build the test dependencies"
- $t $(MAKE) -C $(APP) test-deps $v
- $i "Check that the correct dependencies were fetched"
- $t test -d $(APP)/deps/ranch
- # A lower-level dependency of the first dependency always
- # wins over a lower-level dependency of the second dependency.
- core-deps-order-first: build clean-core-deps-order-first
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Bootstrap a new OTP library named my_dep inside $(APP)"
- $t mkdir $(APP)/my_dep
- $t cp ../erlang.mk $(APP)/my_dep/
- $t $(MAKE) -C $(APP)/my_dep/ -f erlang.mk bootstrap-lib $v
- $i "Add Cowlib 1.0.0 to the list of dependencies for my_dep"
- $t sed -i.bak '2i\
- DEPS = cowlib\
- dep_cowlib = git https://github.com/ninenines/cowlib 1.0.0\
- ' $(APP)/my_dep/Makefile
- $i "Add Cowboy package and my_dep to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = my_dep cowboy\
- dep_my_dep = cp $(CURDIR)/$(APP)/my_dep/\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy and my_dep to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,\
- my_dep,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/my_dep
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, my_dep, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowlib, vsn), \
- halt()"
- # A higher-level dependency always wins.
- core-deps-order-top: build clean-core-deps-order-top
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy package and Cowlib 1.0.0 to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy cowlib\
- dep_cowlib = git https://github.com/ninenines/cowlib 1.0.0\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- {ok, \"1.0.0\"} = application:get_key(cowlib, vsn), \
- halt()"
- ifndef LEGACY
- core-deps-otp: build clean-core-deps-otp
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Crypto to the list of OTP dependencies"
- $t sed -i.bak '2i\
- OTP_DEPS = crypto\
- ' $(APP)/Makefile
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that no dependencies were fetched"
- $t test ! -e $(APP)/deps
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), crypto]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(crypto, Deps), \
- halt()"
- endif
- core-deps-pkg: build clean-core-deps-pkg
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy to the list of dependencies"
- $t sed -i.bak '2i\
- DEPS = cowboy\
- ' $(APP)/Makefile
- ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t sed -i.bak '8i\
- cowboy,' $(APP)/src/$(APP).app.src
- endif
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/cowboy
- $t test -d $(APP)/deps/cowlib
- $t test -d $(APP)/deps/ranch
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), cowboy, cowlib, ranch]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- true = lists:member(cowboy, Deps), \
- halt()"
- core-deps-rel: build clean-core-deps-rel
- $i "Bootstrap a new release-enabled OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib bootstrap-rel $v
- $i "Add Recon to the list of release dependencies"
- $t sed -i.bak '2i\
- REL_DEPS = recon\
- ' $(APP)/Makefile
- $i "Add Recon to the relx.config file"
- $t $(ERL) -eval " \
- {ok, Conf0} = file:consult(\"$(APP)/relx.config\"), \
- Conf = lists:keyreplace(release, 1, Conf0, {release, {$(APP)_release, \"1\"}, [$(APP), recon]}), \
- ok = file:write_file(\"$(APP)/relx.config\", \
- lists:map(fun(Term) -> io_lib:format(\"~p.~n\", [Term]) end, Conf)), \
- halt()"
- $i "Build the application and its dependencies"
- $t $(MAKE) -C $(APP) deps app $v
- $i "Check that no dependencies were fetched"
- $t test ! -e $(APP)/deps
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(recon, Deps), \
- halt()"
- $i "Build the release"
- $t $(MAKE) -C $(APP) $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/recon
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), recon]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(recon, Deps), \
- halt()"
- # @todo Add check for MSYS2 when releases under Windows become usable.
- # $i "Start the release and check that Recon is loaded"
- ifeq ($(PLATFORM),msys2)
- # $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release.cmd install $v
- # $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release.cmd start $v
- # $t test -n "`$(APP)/_rel/$(APP)_release/bin/$(APP)_release.cmd rpcterms \
- # application loaded_applications | grep recon`"
- # $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release.cmd stop $v
- # $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release.cmd uninstall $v
- else
- $i "Start the release and check that Recon is loaded"
- $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release start $v
- $t test -n "`$(APP)/_rel/$(APP)_release/bin/$(APP)_release rpcterms \
- application loaded_applications | grep recon`"
- $t $(APP)/_rel/$(APP)_release/bin/$(APP)_release stop $v
- endif
- core-deps-search: build clean-core-deps-search
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Run 'make search' and check that it prints packages"
- $t test -n "`$(MAKE) -C $(APP) search`"
- $i "Run 'make search q=cowboy' and check that it prints packages"
- $t test -n "`$(MAKE) -C $(APP) search q=cowboy`"
- core-deps-shell: build clean-core-deps-shell
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add TDDReloader to the list of shell dependencies"
- $t sed -i.bak '2i\
- SHELL_DEPS = tddreloader\
- ' $(APP)/Makefile
- $i "Build the application and its dependencies"
- $t $(MAKE) -C $(APP) deps app $v
- $i "Check that no dependencies were fetched"
- $t test ! -e $(APP)/deps
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(tddreloader, Deps), \
- halt()"
- $i "Run the shell"
- $t $(MAKE) -C $(APP) shell SHELL_OPTS="-eval \" \
- ok = application:load($(APP)), \
- ok = application:load(tddreloader), \
- halt()\"" $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/tddreloader
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), tddreloader]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(tddreloader, Deps), \
- halt()"
- core-deps-test: build clean-core-deps-test
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Generate .erl files"
- $t echo "-module(boy)." > $(APP)/src/boy.erl
- $t echo "-module(girl)." > $(APP)/src/girl.erl
- $i "Add triq to the list of test dependencies"
- $t sed -i.bak '2i\
- TEST_DEPS = triq\
- ' $(APP)/Makefile
- $i "Build the application and its dependencies"
- $t $(MAKE) -C $(APP) deps app $v
- $i "Check that no dependencies were fetched"
- $t test ! -e $(APP)/deps
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP)]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(triq, Deps), \
- halt()"
- $i "Run tests"
- $t $(MAKE) -C $(APP) tests $v
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/triq
- $i "Check that the application was compiled correctly"
- $t $(ERL) -pa $(APP)/ebin/ $(APP)/deps/*/ebin/ -eval " \
- [ok = application:load(App) || App <- [$(APP), triq]], \
- {ok, Deps} = application:get_key($(APP), applications), \
- false = lists:member(triq, Deps), \
- halt()"
|