gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: include build-common submodule


From: gnunet
Subject: [libeufin] branch master updated: include build-common submodule
Date: Fri, 06 Nov 2020 18:24:14 +0100

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

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 4b3492c  include build-common submodule
4b3492c is described below

commit 4b3492c16a349cabcddaf1b63b3f8d1c7a99c5a5
Author: MS <ms@taler.net>
AuthorDate: Fri Nov 6 18:23:58 2020 +0100

    include build-common submodule
---
 .gitmodules                      |  3 +++
 bootstrap                        | 16 ++++++++++++++++
 build-system/configure.py        |  9 +++++++++
 build-system/taler-build-scripts |  1 +
 4 files changed, 29 insertions(+)

diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..527bc74
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "build-system/taler-build-scripts"]
+       path = build-system/taler-build-scripts
+       url = git://git.taler.net/build-common
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..9ea2c21
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# Bootstrap the repository.  Used when the repository is checked out from git.
+# When using the source tarball, running this script is not necessary.
+
+set -eu
+
+if ! git --version >/dev/null; then
+  echo "git not installed"
+  exit 1
+fi
+
+git submodule sync
+git submodule update --init
+rm -f ./configure
+cp build-system/taler-build-scripts/configure ./configure
diff --git a/build-system/configure.py b/build-system/configure.py
new file mode 100644
index 0000000..337c51d
--- /dev/null
+++ b/build-system/configure.py
@@ -0,0 +1,9 @@
+# This configure.py.template file is in the public domain.
+
+from talerbuildconfig import *
+
+b = BuildConfig()
+b.enable_prefix()
+b.enable_configmk()
+b.add_tool(PosixTool("find"))
+b.run()
diff --git a/build-system/taler-build-scripts b/build-system/taler-build-scripts
new file mode 160000
index 0000000..e3362ab
--- /dev/null
+++ b/build-system/taler-build-scripts
@@ -0,0 +1 @@
+Subproject commit e3362ab5efd9c4d9ae7fa4de7420f55d09f26226

-- 
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]