From e42450a1c8d1b45f88d4e5a5ec0b93e0df68be45 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 2 Jun 2021 10:09:58 +0200 Subject: fix dependencies --- bin/taler-deployment | 48 +++++++++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 21 deletions(-) (limited to 'bin') diff --git a/bin/taler-deployment b/bin/taler-deployment index ea1af93..331daf7 100755 --- a/bin/taler-deployment +++ b/bin/taler-deployment @@ -296,6 +296,12 @@ def get_repos(envname): return [] if envname in ("docs-builder",): return [ + Repo( + "libmicrohttpd", + "git://git.gnunet.org/libmicrohttpd.git", + [], + build_libmicrohttpd, + ), Repo( "docs", "git://git.taler.net/docs", @@ -317,19 +323,19 @@ def get_repos(envname): Repo( "merchant", "git://git.taler.net/merchant", - ["exchange"], + ["exchange","libmicrohttpd","gnunet"], build_merchant, ), Repo( "sync", "git://git.taler.net/sync", - ["exchange", "merchant"], + ["exchange", "merchant","gnunet","libmicrohttpd"], build_sync, ), Repo( "anastasis", "git://git.taler.net/anastasis", - ["exchange", "merchant"], + ["exchange", "merchant","libmicrohttpd","gnunet"], build_anastasis, ), ] @@ -344,7 +350,7 @@ def get_repos(envname): Repo( "gnunet", "git://git.gnunet.org/gnunet.git", - [], + ["libmicrohttpd"], build_gnunet), Repo( "bank", @@ -358,34 +364,34 @@ def get_repos(envname): [], build_wallet, ), - Repo( - "exchange", - "git://git.taler.net/exchange", - ["gnunet", "libmicrohttpd"], - build_exchange, - ), Repo( "twister", "git://git.taler.net/twister", - ["gnunet", "exchange"], + ["gnunet", "libmicrohttpd"], build_twister, ), + Repo( + "exchange", + "git://git.taler.net/exchange", + ["gnunet", "libmicrohttpd", "twister","wallet-core"], + build_exchange, + ), Repo( "merchant", "git://git.taler.net/merchant", - ["exchange", "libmicrohttpd"], + ["exchange", "libmicrohttpd", "gnunet"], build_merchant, ), Repo( "sync", "git://git.taler.net/sync", - ["exchange", "merchant"], + ["exchange", "merchant", "gnunet", "libmicrohttpd"], build_sync, ), Repo( "anastasis", "git://git.taler.net/anastasis", - ["exchange", "merchant"], + ["exchange", "merchant", "gnunet", "libmicrohttpd"], build_anastasis, ), Repo( @@ -414,7 +420,7 @@ def get_repos(envname): Repo( "gnunet", "git://git.gnunet.org/gnunet.git", - [], + ["libmicrohttpd"], build_gnunet, ), Repo( @@ -459,37 +465,37 @@ def get_repos(envname): Repo( "gnunet", "git://git.gnunet.org/gnunet.git", - [], + ["libmicrohttpd"], build_gnunet, ), Repo( "twister", "git://git.taler.net/twister", - ["gnunet", "exchange"], + ["gnunet", "libmicrohttpd"], build_twister, ), Repo( "exchange", "git://git.taler.net/exchange", - ["gnunet", "libmicrohttpd"], + ["gnunet", "libmicrohttpd", "twister", "wallet-core"], build_exchange, ), Repo( "merchant", "git://git.taler.net/merchant", - ["exchange", "libmicrohttpd"], + ["exchange", "libmicrohttpd", "gnunet"], build_merchant, ), Repo( "sync", "git://git.taler.net/sync", - ["exchange", "merchant", "libmicrohttpd"], + ["exchange", "merchant", "gnunet", "libmicrohttpd"], build_sync, ), Repo( "anastasis", "git://git.taler.net/anastasis", - ["gnunet", "libmicrohttpd"], + ["gnunet", "libmicrohttpd", "exchange", "merchant"], build_sync, ), Repo( -- cgit v1.2.3