gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: debian


From: gnunet
Subject: [taler-wallet-core] branch master updated: debian
Date: Mon, 02 Aug 2021 10:03:19 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new aaf21980 debian
aaf21980 is described below

commit aaf219807dedae769c526bb12bfbc2e828938920
Author: Florian Dold <florian@dold.me>
AuthorDate: Mon Aug 2 10:03:13 2021 +0200

    debian
---
 {packages/taler-wallet-cli/debian => debian}/README    |  0
 {packages/taler-wallet-cli/debian => debian}/changelog |  0
 {packages/taler-wallet-cli/debian => debian}/control   |  0
 {packages/taler-wallet-cli/debian => debian}/copyright |  0
 {packages/taler-wallet-cli/debian => debian}/rules     |  8 +++++---
 packages/taler-wallet-cli/src/index.ts                 | 15 ++++++++++++++-
 6 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/packages/taler-wallet-cli/debian/README b/debian/README
similarity index 100%
rename from packages/taler-wallet-cli/debian/README
rename to debian/README
diff --git a/packages/taler-wallet-cli/debian/changelog b/debian/changelog
similarity index 100%
rename from packages/taler-wallet-cli/debian/changelog
rename to debian/changelog
diff --git a/packages/taler-wallet-cli/debian/control b/debian/control
similarity index 100%
rename from packages/taler-wallet-cli/debian/control
rename to debian/control
diff --git a/packages/taler-wallet-cli/debian/copyright b/debian/copyright
similarity index 100%
rename from packages/taler-wallet-cli/debian/copyright
rename to debian/copyright
diff --git a/packages/taler-wallet-cli/debian/rules b/debian/rules
similarity index 60%
rename from packages/taler-wallet-cli/debian/rules
rename to debian/rules
index f6db618f..4c655fcb 100755
--- a/packages/taler-wallet-cli/debian/rules
+++ b/debian/rules
@@ -3,6 +3,8 @@ include /usr/share/dpkg/default.mk
 
 TALER_WALLET_HOME = /usr/share/taler-wallet-cli
 
+cli_dir=src/packages/taler-wallet-cli
+
 
 build: build-arch build-indep
 build-arch:
@@ -10,9 +12,9 @@ build-arch:
 build-indep:
        true
 override_dh_auto_install:
-       dh_install bin/taler-wallet-cli 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/bin
-       dh_install dist/taler-wallet-cli.js 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/dist
-       dh_install dist/taler-wallet-cli.js.map 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/dist
+       dh_install $(cli_dir)/bin/taler-wallet-cli 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/bin
+       dh_install $(cli_dir)/dist/taler-wallet-cli.js 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/dist
+       dh_install $(cli_dir)/dist/taler-wallet-cli.js.map 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/dist
        dh_link 
$(TALER_WALLET_HOME)/node_modules/taler-wallet-cli/bin/taler-wallet-cli 
/usr/bin/taler-wallet-cli
 
 binary:
diff --git a/packages/taler-wallet-cli/src/index.ts 
b/packages/taler-wallet-cli/src/index.ts
index ab807cbb..ddc8b16b 100644
--- a/packages/taler-wallet-cli/src/index.ts
+++ b/packages/taler-wallet-cli/src/index.ts
@@ -39,6 +39,7 @@ import {
   codecForList,
   codecForString,
   Logger,
+  Configuration,
 } from "@gnu-taler/taler-util";
 import {
   NodeHttpLib,
@@ -863,8 +864,20 @@ advancedCli
     });
   });
 
+const deploymentCli = walletCli.subcommand("deploymentArgs", "deployment", {
+  help: "Subcommands for handling GNU Taler deployments.",
+});
+
+const deploymentConfigCli = deploymentCli.subcommand("configArgs", "config", {
+  help: "Subcommands the Taler configuration.",
+});
+
+deploymentConfigCli.subcommand("show", "show").action(async (args) => {
+  const cfg = new Configuration();
+});
+
 const testCli = walletCli.subcommand("testingArgs", "testing", {
-  help: "Subcommands for testing GNU Taler deployments.",
+  help: "Subcommands for testing.",
 });
 
 testCli

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]