diff options
author | ng0 <ng0@n0.is> | 2019-10-01 17:32:29 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-01 17:32:29 +0000 |
commit | 2d60f76abfd96bc44531cf3644eea3b16b6bb0f1 (patch) | |
tree | 39aa564de891c72314c6ff680937596e75f6ff04 | |
parent | 040475967c22b01e6d553143c54d8babdb686081 (diff) |
configure: implement --yarn
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | configure | 21 | ||||
-rw-r--r-- | configure.py | 20 |
3 files changed, 28 insertions, 15 deletions
@@ -53,7 +53,7 @@ lint: tsc yarn-install .PHONY: yarn-install yarn-install: - yarn install + $(yarnexe) install .PHONY: i18n @@ -87,19 +87,22 @@ else fi fi -if ! existence yarn; then - echo 'ERROR: yarn missing. See https://yarnpkg.com/en/docs/install' - exit 1 -fi - -if existence cmdtest; then +if existence yarn; then if yarn help | grep "No such file or directory"; then echo "ERROR: wrong yarn binary installed, please remove the" echo "ERROR: conflicting binary before continuing." + if existence cmdtest; then + echo "WARNING: cmdtest is installed, this can lead" + echo "WARNING: to know issues with yarn." + fi exit 1 fi - echo "WARNING: cmdtest is installed, this can lead to known issues" - echo "WARNING: with yarn." + myyarn="yarn" +elif existence yarnpkg; then + myyarn="yarnpkg" +else + echo 'ERROR: yarn missing. See https://yarnpkg.com/en/docs/install' + exit 1 fi # for the weird systems and sandboxes, only as a anotice. @@ -119,4 +122,4 @@ fi # If $1 is empty, the python script checks the # environment for PREFIX. We might need more # variables and switches, such as DESTDIR. -$PYTHON ./configure.py $@ +$PYTHON ./configure.py --yarn=$myyarn $@ diff --git a/configure.py b/configure.py index 1e813e0d0..3abef380b 100644 --- a/configure.py +++ b/configure.py @@ -44,26 +44,36 @@ def _read_prefix(): return myprefix else: - logger.debug('PREFIX from argv') + # logger.debug('PREFIX from argv') parser = argparse.ArgumentParser() parser.add_argument("-p", "--prefix", type=str, required=True, help='Directory prefix for installation') - logger.debug('parser.parse_args step') + 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) + # 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 + return [myprefix, yarnexe]; def main(): - myprefix = str(_read_prefix()) + # 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() |