From f5a267fd437f347ecc885b22266830800bcc1cc0 Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Wed, 13 Sep 2023 22:22:49 -0600 Subject: [PATCH] more cleaning --- libs/awcp/README.md | 5 +---- libs/parasite/README.md | 3 ++- libs/tweetnacl/README.md | 2 ++ libs/vdk_aecrypt/README.md | 2 ++ libs/vdk_aertext/README.md | 2 ++ libs/vdk_aeser/README.md | 2 ++ libs/vdk_base58/README.md | 2 ++ libs/vdk_base64/LICENSE | 16 ++++++++++++++++ libs/vdk_base64/README.md | 11 +++++++++++ libs/vdk_binary/LICENSE | 16 ++++++++++++++++ libs/vdk_binary/README.md | 11 +++++++++++ libs/vdk_colors/LICENSE | 16 ++++++++++++++++ 12 files changed, 83 insertions(+), 5 deletions(-) create mode 100644 libs/vdk_base64/LICENSE create mode 100644 libs/vdk_base64/README.md create mode 100644 libs/vdk_binary/LICENSE create mode 100644 libs/vdk_binary/README.md create mode 100644 libs/vdk_colors/LICENSE diff --git a/libs/awcp/README.md b/libs/awcp/README.md index 76438ba..f8a523a 100644 --- a/libs/awcp/README.md +++ b/libs/awcp/README.md @@ -17,13 +17,10 @@ from the perspective of the waellet. ## Building -Requires [Erlang/zx], [jex], [npm], and TypeScript (`npm install -g -typescript`). +Requires [jex] ``` jex install ``` -[Erlang/zx]: https://www.bitchute.com/video/1gCvcoPUR7eJ/ [jex]: ../../utils/jex/ -[npm]: ../../docs/npm-misc/ diff --git a/libs/parasite/README.md b/libs/parasite/README.md index 21046a1..33a3bd5 100644 --- a/libs/parasite/README.md +++ b/libs/parasite/README.md @@ -2,9 +2,10 @@ do not use this library - ## building +requires [jex](../../utils/jex/) + ``` jex install ``` diff --git a/libs/tweetnacl/README.md b/libs/tweetnacl/README.md index b2c9fcd..4c815ff 100644 --- a/libs/tweetnacl/README.md +++ b/libs/tweetnacl/README.md @@ -6,6 +6,8 @@ Public Domain ## building +requires [jex](../../utils/jex/) + ``` jex dwim+ ``` diff --git a/libs/vdk_aecrypt/README.md b/libs/vdk_aecrypt/README.md index 7d6addf..ea95a5f 100644 --- a/libs/vdk_aecrypt/README.md +++ b/libs/vdk_aecrypt/README.md @@ -4,6 +4,8 @@ Aeternity-specific cryptography helper functions ## building +requires [jex](../../utils/jex/) + ``` jex install ``` diff --git a/libs/vdk_aertext/README.md b/libs/vdk_aertext/README.md index 473a1c4..70549b8 100644 --- a/libs/vdk_aertext/README.md +++ b/libs/vdk_aertext/README.md @@ -4,6 +4,8 @@ Seed phrases bad. AE Recovery Text good ## building +requires [jex](../../utils/jex/) + ``` jex install ``` diff --git a/libs/vdk_aeser/README.md b/libs/vdk_aeser/README.md index 0d54a56..313c76e 100644 --- a/libs/vdk_aeser/README.md +++ b/libs/vdk_aeser/README.md @@ -5,6 +5,8 @@ Serialization/deserialization routines for AE data. For instance, read a ## building +requires [jex](../../utils/jex/) + ``` jex install ``` diff --git a/libs/vdk_base58/README.md b/libs/vdk_base58/README.md index 0ea40b2..0ca2802 100644 --- a/libs/vdk_base58/README.md +++ b/libs/vdk_base58/README.md @@ -4,6 +4,8 @@ Base58 encode/decode routines. See ## building +requires [jex](../../utils/jex/) + ``` jex install ``` diff --git a/libs/vdk_base64/LICENSE b/libs/vdk_base64/LICENSE new file mode 100644 index 0000000..d6429f8 --- /dev/null +++ b/libs/vdk_base64/LICENSE @@ -0,0 +1,16 @@ +ISC License + +Copyright (c) 2023 Aeternity Foundation + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +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. + diff --git a/libs/vdk_base64/README.md b/libs/vdk_base64/README.md new file mode 100644 index 0000000..7909a28 --- /dev/null +++ b/libs/vdk_base64/README.md @@ -0,0 +1,11 @@ +# `vdk_base64` + +Base64 encode/decode routines. See + +## building + +Requires [jex](../../utils/jex) + +``` +jex install +``` diff --git a/libs/vdk_binary/LICENSE b/libs/vdk_binary/LICENSE new file mode 100644 index 0000000..d6429f8 --- /dev/null +++ b/libs/vdk_binary/LICENSE @@ -0,0 +1,16 @@ +ISC License + +Copyright (c) 2023 Aeternity Foundation + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +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. + diff --git a/libs/vdk_binary/README.md b/libs/vdk_binary/README.md new file mode 100644 index 0000000..d6218f9 --- /dev/null +++ b/libs/vdk_binary/README.md @@ -0,0 +1,11 @@ +# `vdk_binary` + +Basic binary utility functions + +## building + +Requires [jex](../../utils/jex/) + +``` +jex install +``` diff --git a/libs/vdk_colors/LICENSE b/libs/vdk_colors/LICENSE new file mode 100644 index 0000000..d6429f8 --- /dev/null +++ b/libs/vdk_colors/LICENSE @@ -0,0 +1,16 @@ +ISC License + +Copyright (c) 2023 Aeternity Foundation + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +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. +