From fa48f702d6eb0c9eb5fd712bb36bab4101ce2c70 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 18 Aug 2020 16:23:29 +0200 Subject: F33 --- mkmodular | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'mkmodular') diff --git a/mkmodular b/mkmodular index 39bcc799..e83909c1 100755 --- a/mkmodular +++ b/mkmodular @@ -376,6 +376,23 @@ if (count($_SERVER['argv']) < 2 || in_array('f32', $_SERVER['argv'])) { createRepo($dest, $mod); } +if (count($_SERVER['argv']) < 2 || in_array('f33', $_SERVER['argv'])) { + $dest = 'fedora/33/modular/x86_64'; + echo "Populate $dest\n"; + cleanup($dest); + $deps = ['platform' => 'f33']; + $mod = genModule('fedora/33/remi/x86_64', $dest, ['unit-php*rpm', 'php-*7.4*.rpm'], '7.4', 'x86_64', $deps, $template_php); + $mod .= genDefaults('php', 'remi-7.4', ['remi-7.4']); + createRepo($dest, $mod); + + $dest = 'fedora/33/modular-test/x86_64'; + echo "Populate $dest\n"; + cleanup($dest); + $deps = ['platform' => 'f33']; + $mod = genModule('fedora/33/test/x86_64', $dest, ['unit-php*rpm', 'php-*7.4*.rpm'], '7.4', 'x86_64', $deps, $template_php); + createRepo($dest, $mod); +} + if (count($_SERVER['argv']) < 2 || in_array('el8', $_SERVER['argv'])) { $dest = 'enterprise/8/modular-test/x86_64'; echo "Populate $dest\n"; -- cgit