Add acknowledgements from ringrtc and libsignal
This commit is contained in:
parent
27b8ce7498
commit
99ee4a0d73
3 changed files with 12327 additions and 4 deletions
|
@ -44,3 +44,7 @@ Gruntfile.js
|
||||||
|
|
||||||
# bad matches
|
# bad matches
|
||||||
!patch-package/node_modules/yaml/dist/doc
|
!patch-package/node_modules/yaml/dist/doc
|
||||||
|
|
||||||
|
# used for build:acknowledgements
|
||||||
|
!@signalapp/libsignal-client/dist/acknowledgments.md
|
||||||
|
!@signalapp/ringrtc/dist/acknowledgments.md
|
||||||
|
|
12293
ACKNOWLEDGMENTS.md
12293
ACKNOWLEDGMENTS.md
File diff suppressed because it is too large
Load diff
|
@ -12,10 +12,9 @@ const {
|
||||||
optionalDependencies = {},
|
optionalDependencies = {},
|
||||||
} = require('../package.json');
|
} = require('../package.json');
|
||||||
|
|
||||||
const SKIPPED_DEPENDENCIES = new Set([
|
const SIGNAL_LIBS = ['@signalapp/libsignal-client', '@signalapp/ringrtc'];
|
||||||
'@signalapp/libsignal-client',
|
|
||||||
'@signalapp/ringrtc',
|
const SKIPPED_DEPENDENCIES = new Set(SIGNAL_LIBS);
|
||||||
]);
|
|
||||||
|
|
||||||
const rootDir = join(__dirname, '..');
|
const rootDir = join(__dirname, '..');
|
||||||
const nodeModulesPath = join(rootDir, 'node_modules');
|
const nodeModulesPath = join(rootDir, 'node_modules');
|
||||||
|
@ -70,6 +69,21 @@ async function getMarkdownForDependency(dependencyName) {
|
||||||
].join('\n');
|
].join('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function getMarkdownForSignalLib(dependencyName) {
|
||||||
|
const dependencyRootPath = join(nodeModulesPath, dependencyName);
|
||||||
|
const licenseFilePath = join(
|
||||||
|
dependencyRootPath,
|
||||||
|
'dist',
|
||||||
|
'acknowledgments.md'
|
||||||
|
);
|
||||||
|
const licenseBody = (await fs.promises.readFile(licenseFilePath, 'utf8'))
|
||||||
|
.replace(/^# Acknowledgments/, '')
|
||||||
|
.trim();
|
||||||
|
return [`# Acknowledgements for ${dependencyName}`, '', licenseBody].join(
|
||||||
|
'\n'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
assert.deepStrictEqual(
|
assert.deepStrictEqual(
|
||||||
Object.keys(optionalDependencies),
|
Object.keys(optionalDependencies),
|
||||||
|
@ -94,6 +108,16 @@ async function main() {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// For our libraries copy the respective acknowledgement lists
|
||||||
|
const markdownsFromSignalLibs = await pMap(
|
||||||
|
SIGNAL_LIBS,
|
||||||
|
getMarkdownForSignalLib,
|
||||||
|
{
|
||||||
|
concurrency: 100,
|
||||||
|
timeout: 1000 * 60 * 2,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
const unformattedOutput = [
|
const unformattedOutput = [
|
||||||
'<!-- Copyright 2020 Signal Messenger, LLC -->',
|
'<!-- Copyright 2020 Signal Messenger, LLC -->',
|
||||||
'<!-- SPDX-License-Identifier: AGPL-3.0-only -->',
|
'<!-- SPDX-License-Identifier: AGPL-3.0-only -->',
|
||||||
|
@ -106,6 +130,8 @@ async function main() {
|
||||||
'## Kyber Patent License',
|
'## Kyber Patent License',
|
||||||
'',
|
'',
|
||||||
'<https://csrc.nist.gov/csrc/media/Projects/post-quantum-cryptography/documents/selected-algos-2022/nist-pqc-license-summary-and-excerpts.pdf>',
|
'<https://csrc.nist.gov/csrc/media/Projects/post-quantum-cryptography/documents/selected-algos-2022/nist-pqc-license-summary-and-excerpts.pdf>',
|
||||||
|
'',
|
||||||
|
markdownsFromSignalLibs.join('\n\n'),
|
||||||
].join('\n');
|
].join('\n');
|
||||||
|
|
||||||
const prettierConfig = await prettier.resolveConfig(destinationPath);
|
const prettierConfig = await prettier.resolveConfig(destinationPath);
|
||||||
|
|
Loading…
Reference in a new issue