summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-02 21:25:19 +0000
committerng0 <ng0@n0.is>2019-10-02 21:25:19 +0000
commit314e499ef077874220a0a0574a879239d4b78194 (patch)
tree280c7a4ab460c9698f8e43ee27a92c616aca8a47 /configure.py
parent42324a357b58bedea86974bf229fc326a89e06dc (diff)
downloadwallet-core-314e499ef077874220a0a0574a879239d4b78194.tar.gz
wallet-core-314e499ef077874220a0a0574a879239d4b78194.tar.bz2
wallet-core-314e499ef077874220a0a0574a879239d4b78194.zip
bump submodule, add lines to enable bootstrapping the submodule and configure*
Diffstat (limited to 'configure.py')
l---------[-rw-r--r--]configure.py81
1 files changed, 1 insertions, 80 deletions
diff --git a/configure.py b/configure.py
index 3abef380b..51dc3d24b 100644..120000
--- a/configure.py
+++ b/configure.py
@@ -1,80 +1 @@
-# This file is part of TALER
-# (C) 2019 GNUnet e.V.
-#
-# Authors:
-# Author: ng0 <ng0@taler.net>
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
-# LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
-# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
-# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-# THIS SOFTWARE.
-#
-# SPDX-License-Identifier: 0BSD
-
-import argparse
-import os
-import sys
-import logging
-
-# This script so far generates config.mk.
-# The only value it produces is prefix,
-# which is either taken as the first argument
-# to this script, or as --prefix=, or read
-# from the environment variable PREFIX.
-#
-# TODO: Also respect DESTDIR ($PREFIX/$DESTDIR/rest).
-
-
-def _read_prefix():
- logging.basicConfig(level=logging.DEBUG)
- logger = logging.getLogger(__name__)
-
- if 'PREFIX' in os.environ:
- logger.debug('PREFIX from environment')
- myprefix = os.environ.get('PREFIX')
- if myprefix is not None and os.path.isdir(myprefix) is True:
- logger.debug('PREFIX from environment: %s', myprefix)
- return myprefix
-
- else:
- # logger.debug('PREFIX from argv')
- parser = argparse.ArgumentParser()
- parser.add_argument("-p",
- "--prefix",
- type=str,
- required=True,
- help='Directory prefix for installation')
- parser.add_argument("-y",
- "--yarn",
- type=str,
- required=True,
- help='name of yarn executable')
- # logger.debug('parser.parse_args step')
- args = parser.parse_args()
- # logger.debug('%s', args)
- myprefix = args.prefix
- yarnexe = args.yarn
- # if args.prefix is not None and os.path.isdir(myprefix) is True:
- if args.prefix and os.path.isdir(myprefix) is True:
- return [myprefix, yarnexe];
-
-def main():
- # mylist = str(_read_prefix())
- mylist = _read_prefix()
- myprefix = mylist[0]
- yarnexe = mylist[1]
- f = open('config.mk', 'w+')
- f.write('# this file is autogenerated by ./configure\n')
- f.write('prefix=' + myprefix + '\n')
- f.write('yarnexe=' + yarnexe + '\n')
- f.close()
-
-
-main()
+build-scripts/configure.py \ No newline at end of file