taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 74136c8895f899e62868ceed626a1755883471da
parent 9db105f37da72ff10b72a7a726710d6ac95da237
Author: Florian Dold <florian@dold.me>
Date:   Tue,  9 Jun 2026 22:22:23 +0200

tweak build order

Diffstat:
Mpackaging/ng/taler-pkg | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packaging/ng/taler-pkg b/packaging/ng/taler-pkg @@ -25,6 +25,8 @@ host = "taler.net" native_arch = "amd64" if platform.machine().lower() in ("x86_64", "amd64") else "arm64" components = [ + "taler-wallet-cli", + "taler-merchant-webui", "gnunet", "libeufin", "donau", @@ -34,8 +36,6 @@ components = [ "taler-merchant", "taler-rust", "robocop", - "taler-wallet-cli", - "taler-merchant-webui", #"depolymerization", # These two packages don't have good debs yet, # Debian complains "No section given for ..., skipping. @@ -72,7 +72,7 @@ for n1, d in deps.items(): def buildsort(roots): """Toposort transitive closure of roots based on deps""" out = [] - stack = list(roots) + stack = list(roots[::-1]) pmark = set() tmark = set() while len(stack):