From 60855fe2a77c78ef45fe6193ee2bb453188597e4 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: May 25 2021 01:15:29 +0000 Subject: [PATCH 1/2] Change the module defaults for CentOS Linux 8.4 Signed-off-by: Brian Stinson --- diff --git a/container-tools.yaml b/container-tools.yaml index cea277d..e8f7ce1 100644 --- a/container-tools.yaml +++ b/container-tools.yaml @@ -8,4 +8,5 @@ data: 1.0: [common] rhel8: [common] 2.0: [common] + 3.0: [common] ... diff --git a/eclipse.yaml b/eclipse.yaml new file mode 100644 index 0000000..bc09ca6 --- /dev/null +++ b/eclipse.yaml @@ -0,0 +1,8 @@ +--- +document: modulemd-defaults +version: 1 +data: + module: eclipse + profiles: + rhel8: [java] +... diff --git a/mariadb.yaml b/mariadb.yaml index 9672146..054884a 100644 --- a/mariadb.yaml +++ b/mariadb.yaml @@ -6,4 +6,5 @@ data: stream: 10.3 profiles: 10.3: [server] + 10.5: [server] ... diff --git a/postgresql.yaml b/postgresql.yaml index ccfbc22..7c28ba7 100644 --- a/postgresql.yaml +++ b/postgresql.yaml @@ -8,4 +8,5 @@ data: 9.6: [server] 10: [server] 12: [server] + 13: [server] ... diff --git a/python39.yaml b/python39.yaml new file mode 100644 index 0000000..e7325a4 --- /dev/null +++ b/python39.yaml @@ -0,0 +1,9 @@ +--- +document: modulemd-defaults +version: 1 +data: + module: python39 + stream: 3.9 + profiles: + 3.9: [common] +... diff --git a/redis.yaml b/redis.yaml index c406e04..d9d3399 100644 --- a/redis.yaml +++ b/redis.yaml @@ -6,4 +6,5 @@ data: stream: 5 profiles: 5: [common] + 6: [common] ... diff --git a/subversion.yaml b/subversion.yaml index 15eb396..56158bc 100644 --- a/subversion.yaml +++ b/subversion.yaml @@ -6,4 +6,5 @@ data: stream: 1.10 profiles: 1.10: [common] + 1.14: [common] ... diff --git a/swig.yaml b/swig.yaml index 851a99e..c11d113 100644 --- a/swig.yaml +++ b/swig.yaml @@ -6,4 +6,5 @@ data: stream: 3.0 profiles: 3.0: [common] + 4.0: [common] ... From 275539cdae5e31a2f714629dc77f37df3d534050 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: May 25 2021 16:16:20 +0000 Subject: [PATCH 2/2] We are not building eclipse at this time, let's not do a module default for it. Signed-off-by: Brian Stinson --- diff --git a/eclipse.yaml b/eclipse.yaml deleted file mode 100644 index bc09ca6..0000000 --- a/eclipse.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -document: modulemd-defaults -version: 1 -data: - module: eclipse - profiles: - rhel8: [java] -...