From 4d46bd4fd4ea792343b85a4b8fb6e95790e569a6 Mon Sep 17 00:00:00 2001 From: Adam Samalik Date: Thu, 23 Feb 2023 11:48:00 +0000 Subject: [PATCH] update modulemd etc --- .gitignore | 0 gating.yaml | 8 ++++++ php.yaml | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 .gitignore create mode 100644 gating.yaml create mode 100644 php.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..1a0e222 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,8 @@ +--- !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} + - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.acceptance-tier.functional} diff --git a/php.yaml b/php.yaml new file mode 100644 index 0000000..4952c38 --- /dev/null +++ b/php.yaml @@ -0,0 +1,81 @@ +--- +document: modulemd +version: 2 +data: + name: php + stream: 7.2 + summary: PHP scripting language + description: >- + php 7.2 module + license: + module: + - GPLv2+ + content: + - BSD + - MIT + - PHP + - Zend + dependencies: + - buildrequires: + httpd: [2.4] + nginx: [1.14] + platform: [el8] + requires: + httpd: [2.4] + nginx: [] + platform: [el8] + references: + documentation: http://php.net/ + tracker: https://bugs.php.net/ + profiles: + common: + rpms: + - php-cli + - php-common + - php-fpm + - php-json + - php-mbstring + - php-xml + devel: + rpms: + - libzip + - php-cli + - php-common + - php-devel + - php-fpm + - php-json + - php-mbstring + - php-pear + - php-pecl-zip + - php-process + - php-xml + minimal: + rpms: + - php-cli + - php-common + api: + rpms: + - php-fpm + components: + rpms: + libzip: + rationale: ZIP library + ref: stream-php-7.2-rhel-8.8.0 + buildorder: 1 + php: + rationale: Module API. + ref: stream-7.2-rhel-8.8.0 + buildorder: 1 + php-pear: + rationale: Extension management + ref: stream-php-7.2-rhel-8.8.0 + buildorder: 2 + php-pecl-apcu: + rationale: APCu extension + ref: stream-php-7.2-rhel-8.8.0 + buildorder: 3 + php-pecl-zip: + rationale: ZIP extension + ref: stream-php-7.2-rhel-8.8.0 + buildorder: 3 +...