117 lines
3.4 KiB
JavaScript
117 lines
3.4 KiB
JavaScript
import process from "process";
|
|
|
|
import { Command } from "commander";
|
|
import YAML from "yaml";
|
|
|
|
import { readLangConfig } from "./config.js";
|
|
|
|
// Given a language config object, return the text of a Bash script
|
|
// that will build the (unpacked) riju-lang-foo Debian package into
|
|
// ${pkg} when run in an appropriate environment. This is a package
|
|
// that will install the language interpreter/compiler and associated
|
|
// tools.
|
|
function makeLangScript(langConfig) {
|
|
const {
|
|
id,
|
|
name,
|
|
install: { apt, pip, manual },
|
|
} = langConfig;
|
|
let parts = [];
|
|
parts.push(`\
|
|
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail`);
|
|
let debianControlData = `\
|
|
Package: riju-lang-${id}
|
|
Version: \$(date +%s%3N)
|
|
Architecture: amd64
|
|
Maintainer: Radon Rosborough <radon.neon@gmail.com>
|
|
Description: The ${name} language packaged for Riju`;
|
|
if (apt.length > 0) {
|
|
debianControlData += `
|
|
Depends: ${apt.join(", ")}`;
|
|
}
|
|
debianControlData += `
|
|
Riju-Script-Hash: \$(sha1sum "\$0" | awk '{ print \$1 }')`;
|
|
parts.push(`\
|
|
install -d "\${pkg}/DEBIAN"
|
|
cat <<EOF > "\${pkg}/DEBIAN/control"
|
|
${debianControlData}
|
|
EOF`);
|
|
for (const part of manual || []) {
|
|
parts.push(part);
|
|
}
|
|
return parts.join("\n\n");
|
|
}
|
|
|
|
// Given a language config object, return the text of a Bash script
|
|
// that will build the (unpacked) riju-config-foo Debian package into
|
|
// ${pkg} when run in an appropriate environment. This is a package
|
|
// that will install configuration files and/or small scripts that
|
|
// encode the language configuration so that Riju can operate on any
|
|
// installed languages without knowing their configuration in advance.
|
|
function makeConfigScript(langConfig) {
|
|
const { id, name } = langConfig;
|
|
let parts = [];
|
|
parts.push(`\
|
|
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail`);
|
|
let debianControlData = `\
|
|
Package: riju-config-${id}
|
|
Version: \$(date +%s%3N)
|
|
Architecture: all
|
|
Maintainer: Radon Rosborough <radon.neon@gmail.com>
|
|
Description: Riju configuration for the ${name} language
|
|
Depends: riju-lang-${id}
|
|
Riju-Script-Hash: \$(sha1sum "$0" | awk '{ print $1 }')`;
|
|
parts.push(`\
|
|
install -d "\${pkg}/DEBIAN"
|
|
cat <<EOF > "\${pkg}/DEBIAN/control"
|
|
${debianControlData}
|
|
EOF`);
|
|
parts.push(`\
|
|
install -d "\${pkg}/opt/riju/langs"
|
|
cat <<"EOF" > "\${pkg}/opt/riju/langs/${id}.json"
|
|
${JSON.stringify(langConfig, null, 2)}
|
|
EOF`);
|
|
return parts.join("\n\n");
|
|
}
|
|
|
|
// Given a language config object, return the text of a Bash script
|
|
// that will build the (unpacked) riju-shared-foo Debian package into
|
|
// ${pkg} when run in an appropriate environment. This is a package
|
|
// that installs tools used by multiple languages, and can be declared
|
|
// as a dependency.
|
|
function makeSharedScript(langConfig) {
|
|
throw new Error("shared script generation not implemented yet");
|
|
}
|
|
|
|
// Parse command-line arguments, run main functionality, and exit.
|
|
async function main() {
|
|
const program = new Command();
|
|
program
|
|
.requiredOption("--lang <id>", "language ID")
|
|
.requiredOption(
|
|
"--type <value>",
|
|
"package category (lang, config, shared)"
|
|
);
|
|
program.parse(process.argv);
|
|
const scriptMaker = {
|
|
lang: makeLangScript,
|
|
config: makeConfigScript,
|
|
shared: makeSharedScript,
|
|
}[program.type];
|
|
if (!scriptMaker) {
|
|
console.error(`make-script.js: unsupported --type ${program.type}`);
|
|
process.exit(1);
|
|
}
|
|
console.log(scriptMaker(await readLangConfig(program.lang)));
|
|
process.exit(0);
|
|
}
|
|
|
|
main().catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|