summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-06-02 10:09:58 +0200
committerChristian Grothoff <christian@grothoff.org>2021-06-02 10:09:58 +0200
commite42450a1c8d1b45f88d4e5a5ec0b93e0df68be45 (patch)
tree596252c8606cc96908ef46f13ff8c6bdd6b0419d /bin
parent091b19d4bbb2f18730237683a3fd4e72d289e5e6 (diff)
downloaddeployment-e42450a1c8d1b45f88d4e5a5ec0b93e0df68be45.tar.gz
deployment-e42450a1c8d1b45f88d4e5a5ec0b93e0df68be45.tar.bz2
deployment-e42450a1c8d1b45f88d4e5a5ec0b93e0df68be45.zip
fix dependencies
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-deployment48
1 files changed, 27 insertions, 21 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index ea1af93..331daf7 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -297,6 +297,12 @@ def get_repos(envname):
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",
@@ -359,33 +365,33 @@ 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(