commit 5178e95c849a02dade1b63ca83dae5c3b0deac53 Author: Adam Samalik Date: Thu Feb 23 11:47:59 2023 +0000 update modulemd etc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..16963fc --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +nodejs dependencies +==================== + +build dependencies calculated by brt_dep_solver +----------------------------------------------- +compat-openssl10 +gcc +icu + +runtime dependencies calculated by brt_dep_solver +------------------------------------------------- diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..9f1d298 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,7 @@ +--- !Policy +product_versions: + - rhel-8 +decision_context: osci_compose_gate_modules +subject_type: redhat-module +rules: + - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.tier1.functional} diff --git a/nodejs.yaml b/nodejs.yaml new file mode 100644 index 0000000..6f74207 --- /dev/null +++ b/nodejs.yaml @@ -0,0 +1,65 @@ +--- +document: modulemd +version: 2 +data: + stream: 10 + summary: Javascript runtime + description: >- + Node.js is a platform built on Chrome's JavaScript runtime for easily building + fast, scalable network applications. Node.js uses an event-driven, non-blocking + I/O model that makes it lightweight and efficient, perfect for data-intensive + real-time applications that run across distributed devices. + license: + module: + - MIT + dependencies: + - buildrequires: + platform: [el8] + requires: + platform: [el8] + references: + community: http://nodejs.org + documentation: http://nodejs.org/en/docs + tracker: https://github.com/nodejs/node/issues + profiles: + common: + rpms: + - nodejs + - npm + development: + rpms: + - nodejs + - nodejs-devel + - npm + minimal: + rpms: + - nodejs + s2i: + rpms: + - nodejs + - nodejs-nodemon + - npm + api: + rpms: + - nodejs + - nodejs-devel + - npm + buildopts: + rpms: + macros: | + %_with_bootstrap 1 + components: + rpms: + nodejs: + rationale: Javascript runtime and npm package manager. + ref: stream-10-rhel-8.8.0 + buildorder: 10 + nodejs-nodemon: + rationale: Simple monitor script for use during development of a node.js app + ref: stream-rhel-8.0-rhel-8.8.0 + buildorder: 200 + nodejs-packaging: + rationale: RPM Macros and Utilities for Node.js Packaging + ref: stream-rhel-8.0-rhel-8.8.0 + buildorder: 100 +...