diff --git a/Golden_Repo/c/CubeGUI/CubeGUI-4.8.2-GCCcore-11.3.0.eb b/Golden_Repo/c/CubeGUI/CubeGUI-4.8.2-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..5013b25d38b14f460f606b824167aeeffb915fe4
--- /dev/null
+++ b/Golden_Repo/c/CubeGUI/CubeGUI-4.8.2-GCCcore-11.3.0.eb
@@ -0,0 +1,60 @@
+##
+# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
+#
+# Copyright:: Copyright 2018-2022 Juelich Supercomputing Centre, Germany
+# Authors::   Markus Geimer <m.geimer@fz-juelich.de>
+#             Christian Feld <c.feld@fz-juelich.de>
+# License::   3-clause BSD
+#
+# This work is based on experiences from the UNITE project
+# http://apps.fz-juelich.de/unite/
+##
+
+easyblock = 'EB_Score_minus_P'
+
+name = 'CubeGUI'
+version = '4.8.2'
+
+homepage = 'https://www.scalasca.org/software/cube-4.x/download.html'
+description = """
+Cube, which is used as performance report explorer for Scalasca and Score-P,
+is a generic tool for displaying a multi-dimensional performance space
+consisting of the dimensions (i) performance metric, (ii) call path, and
+(iii) system resource. Each dimension can be represented as a tree, where
+non-leaf nodes of the tree can be collapsed or expanded to achieve the
+desired level of granularity.
+
+This module provides the Cube graphical report explorer.
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://perftools.pages.jsc.fz-juelich.de/cicd/cubegui/tags/cubegui-%(version)s']
+sources = [SOURCELOWER_TAR_GZ]
+checksums = ['bf2e02002bb2e5c4f61832ce37b62a440675c6453463014b33b2474aac78f86d']
+
+builddependencies = [
+    # use same binutils version that was used when building GCCcore
+    ('binutils', '2.38'),
+    ('CubeLib', '4.8.2'),
+]
+
+dependencies = [
+    ('Qt5', '5.15.5'),
+]
+
+sanity_check_paths = {
+    'files': ['bin/cube', 'bin/cubegui-config',
+              ('lib/libcube4gui.a', 'lib64/libcube4gui.a'),
+              ('lib/libcube4gui.%s' % SHLIB_EXT, 'lib64/libcube4gui.%s' % SHLIB_EXT)],
+    'dirs': ['include/cubegui', 'lib/cube-plugins'],
+}
+
+# CubeGUI (and other Qt apps that use OpenGl) crash from time to time
+# or don't show any output when using Qt's WebEngine with the default
+# KNOB_MAX_WORKER_THREADS value of 65535. Even with a value of 10 this
+# behavior doesn't vanish. Thus, don't use WebEngine at all, although
+# it makes nicer output.
+configopts = '--without-web-engine'
+
+moduleclass = 'perf'
diff --git a/Golden_Repo/c/CubeLib/CubeLib-4.8.2-GCCcore-11.3.0.eb b/Golden_Repo/c/CubeLib/CubeLib-4.8.2-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..193bc4fcf53da25aed5272f2b15ff860a3aaea63
--- /dev/null
+++ b/Golden_Repo/c/CubeLib/CubeLib-4.8.2-GCCcore-11.3.0.eb
@@ -0,0 +1,58 @@
+##
+# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
+#
+# Copyright:: Copyright 2018-2022 Juelich Supercomputing Centre, Germany
+# Authors::   Markus Geimer <m.geimer@fz-juelich.de>
+#             Christian Feld <c.feld@fz-juelich.de>
+# License::   3-clause BSD
+#
+# This work is based on experiences from the UNITE project
+# http://apps.fz-juelich.de/unite/
+##
+
+easyblock = 'EB_Score_minus_P'
+
+name = 'CubeLib'
+version = '4.8.2'
+
+homepage = 'https://www.scalasca.org/software/cube-4.x/download.html'
+description = """
+Cube, which is used as performance report explorer for Scalasca and Score-P,
+is a generic tool for displaying a multi-dimensional performance space
+consisting of the dimensions (i) performance metric, (ii) call path, and
+(iii) system resource. Each dimension can be represented as a tree, where
+non-leaf nodes of the tree can be collapsed or expanded to achieve the
+desired level of granularity.
+
+This module provides the Cube general purpose C++ library component and
+command-line tools.
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://perftools.pages.jsc.fz-juelich.de/cicd/cubelib/tags/cubelib-%(version)s']
+sources = [SOURCELOWER_TAR_GZ]
+checksums = [
+    'd6fdef57b1bc9594f1450ba46cf08f431dd0d4ae595c47e2f3454e17e4ae74f4',  # cubelib-4.8.2.tar.gz
+]
+
+builddependencies = [
+    # use same binutils version that was used when building GCCcore
+    ('binutils', '2.38'),
+    ('pkgconf', '1.8.0'),
+]
+
+dependencies = [
+    ('zlib', '1.2.12'),
+]
+
+configopts = '--enable-shared'
+
+sanity_check_paths = {
+    'files': ['bin/cubelib-config',
+              ('lib/libcube4.a', 'lib64/libcube4.a'),
+              ('lib/libcube4.%s' % SHLIB_EXT, 'lib64/libcube4.%s' % SHLIB_EXT)],
+    'dirs': ['include/cubelib'],
+}
+
+moduleclass = 'perf'
diff --git a/Golden_Repo/c/CubeWriter/CubeWriter-4.8.2-GCCcore-11.3.0.eb b/Golden_Repo/c/CubeWriter/CubeWriter-4.8.2-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..86689cf97d3dc262db4462c22082b10f08260999
--- /dev/null
+++ b/Golden_Repo/c/CubeWriter/CubeWriter-4.8.2-GCCcore-11.3.0.eb
@@ -0,0 +1,57 @@
+##
+# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
+#
+# Copyright:: Copyright 2018-2022 Juelich Supercomputing Centre, Germany
+# Authors::   Markus Geimer <m.geimer@fz-juelich.de>
+#             Christian Feld <c.feld@fz-juelich.de>
+# License::   3-clause BSD
+#
+# This work is based on experiences from the UNITE project
+# http://apps.fz-juelich.de/unite/
+##
+
+easyblock = 'EB_Score_minus_P'
+
+name = 'CubeWriter'
+version = '4.8.2'
+
+homepage = 'https://www.scalasca.org/software/cube-4.x/download.html'
+description = """
+Cube, which is used as performance report explorer for Scalasca and Score-P,
+is a generic tool for displaying a multi-dimensional performance space
+consisting of the dimensions (i) performance metric, (ii) call path, and
+(iii) system resource. Each dimension can be represented as a tree, where
+non-leaf nodes of the tree can be collapsed or expanded to achieve the
+desired level of granularity.
+
+This module provides the Cube high-performance C writer library component.
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://perftools.pages.jsc.fz-juelich.de/cicd/cubew/tags/cubew-%(version)s']
+sources = ['cubew-%(version)s.tar.gz']
+checksums = [
+    '4f3bcf0622c2429b8972b5eb3f14d79ec89b8161e3c1cc5862ceda417d7975d2',  # cubew-4.8.2.tar.gz
+]
+
+builddependencies = [
+    # use same binutils version that was used when building GCCcore
+    ('binutils', '2.38'),
+    ('pkgconf', '1.8.0'),
+]
+
+dependencies = [
+    ('zlib', '1.2.12'),
+]
+
+configopts = '--enable-shared'
+
+sanity_check_paths = {
+    'files': ['bin/cubew-config',
+              ('lib/libcube4w.a', 'lib64/libcube4w.a'),
+              ('lib/libcube4w.%s' % SHLIB_EXT, 'lib64/libcube4w.%s' % SHLIB_EXT)],
+    'dirs': ['include/cubew'],
+}
+
+moduleclass = 'perf'
diff --git a/Golden_Repo/o/OPARI2/OPARI2-2.0.8-GCCcore-11.3.0.eb b/Golden_Repo/o/OPARI2/OPARI2-2.0.8-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..41e7e872242ead52245dab7278cb73dd370c0fe6
--- /dev/null
+++ b/Golden_Repo/o/OPARI2/OPARI2-2.0.8-GCCcore-11.3.0.eb
@@ -0,0 +1,44 @@
+##
+# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
+# Copyright:: Copyright 2013-2021 Juelich Supercomputing Centre, Germany
+# Authors::   Bernd Mohr <b.mohr@fz-juelich.de>
+#             Markus Geimer <m.geimer@fz-juelich.de>
+#             Christian Feld <c.feld@fz-juelich.de>
+# License::   3-clause BSD
+#
+# This work is based on experiences from the UNITE project
+# http://apps.fz-juelich.de/unite/
+##
+
+easyblock = 'ConfigureMake'
+
+name = 'OPARI2'
+version = '2.0.8'
+
+homepage = 'https://www.score-p.org'
+description = """
+OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a
+source-to-source instrumentation tool for OpenMP and hybrid codes.
+It surrounds OpenMP directives and runtime library calls with calls
+to the POMP2 measurement interface.
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://perftools.pages.jsc.fz-juelich.de/cicd/opari2/tags/opari2-%(version)s']
+sources = [SOURCELOWER_TAR_GZ]
+checksums = [
+    '196e59a2a625e6c795a6124c61e784bad142f9f38df0b4fa4d435ba9b9c19721',  # opari2-2.0.8.tar.gz
+]
+
+builddependencies = [
+    # use same binutils version that was used when building GCCcore
+    ('binutils', '2.38'),
+]
+
+sanity_check_paths = {
+    'files': ['bin/opari2', 'include/opari2/pomp2_lib.h'],
+    'dirs': [],
+}
+
+moduleclass = 'perf'