From dbb0d65f8e87438024a4b4dc708d57799b03e951 Mon Sep 17 00:00:00 2001 From: PhoenixEmik Date: Sun, 26 Jul 2026 10:20:50 +0800 Subject: [PATCH 1/5] adding easyconfigs: autoplotly-0.1.5-foss-2025a-R-4.5.1.eb, autoplotly-0.1.5-foss-2024a-R-4.4.2.eb --- .../autoplotly-0.1.5-foss-2024a-R-4.4.2.eb | 46 +++++++++++++++++++ .../autoplotly-0.1.5-foss-2025a-R-4.5.1.eb | 46 +++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb create mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb new file mode 100644 index 000000000000..fc2ed084ee3a --- /dev/null +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb @@ -0,0 +1,46 @@ +easyblock = 'Bundle' + +name = 'autoplotly' +version = '0.1.5' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://github.com/terrytangyuan/autoplotly' +description = """ + Automatic Generation of Interactive Visualizations for Statistical Results +""" + +toolchain = {'name': 'foss', 'version': '2024a'} + +dependencies = [ + ('R', '4.4.2'), + ('R-bundle-CRAN', '2024.11'), +] + +exts_defaultclass = 'RPackage' +exts_default_options = { + 'sources': ['%(name)s_%(version)s.tar.gz'], + 'source_urls': [ + 'https://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive + 'https://cran.r-project.org/src/contrib/', # current version of packages + 'https://cran.freestatistics.org/src/contrib', # mirror alternative for current packages + ], +} +exts_list = [ + ('ggfortify', '0.4.19', { + 'checksums': ['2c568cf85be4e5ee932af7b3cc248d4360320b00bb8b29a230b29dd6f3636abd'], + }), + (name, version, { + 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['c4a28a4693ed9e771e9d0b62ad386cd0bae0c1c9a05d2ed562ba6df176fd5f2b'], + }), +] + +modextrapaths = {'R_LIBS_SITE': ''} + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb new file mode 100644 index 000000000000..82a017f3a173 --- /dev/null +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb @@ -0,0 +1,46 @@ +easyblock = 'Bundle' + +name = 'autoplotly' +version = '0.1.5' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://github.com/terrytangyuan/autoplotly' +description = """ + Automatic Generation of Interactive Visualizations for Statistical Results +""" + +toolchain = {'name': 'foss', 'version': '2025a'} + +dependencies = [ + ('R', '4.5.1'), + ('R-bundle-CRAN', '2025.10'), +] + +exts_defaultclass = 'RPackage' +exts_default_options = { + 'sources': ['%(name)s_%(version)s.tar.gz'], + 'source_urls': [ + 'https://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive + 'https://cran.r-project.org/src/contrib/', # current version of packages + 'https://cran.freestatistics.org/src/contrib', # mirror alternative for current packages + ], +} +exts_list = [ + ('ggfortify', '0.4.19', { + 'checksums': ['2c568cf85be4e5ee932af7b3cc248d4360320b00bb8b29a230b29dd6f3636abd'], + }), + (name, version, { + 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['c4a28a4693ed9e771e9d0b62ad386cd0bae0c1c9a05d2ed562ba6df176fd5f2b'], + }), +] + +modextrapaths = {'R_LIBS_SITE': ''} + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'vis' From fd5ff94124b4caae8f5da97e79f3c3c7d327175d Mon Sep 17 00:00:00 2001 From: PhoenixEmik Date: Sun, 26 Jul 2026 21:30:11 +0800 Subject: [PATCH 2/5] update ggfortify to 0.4.20 --- .../a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb | 6 ++++-- .../a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb index fc2ed084ee3a..02a34f440132 100644 --- a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb @@ -26,8 +26,10 @@ exts_default_options = { ], } exts_list = [ - ('ggfortify', '0.4.19', { - 'checksums': ['2c568cf85be4e5ee932af7b3cc248d4360320b00bb8b29a230b29dd6f3636abd'], + ('ggfortify', '0.4.20', { + 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], }), (name, version, { 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb index 82a017f3a173..70eee55ed40b 100644 --- a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb @@ -26,8 +26,10 @@ exts_default_options = { ], } exts_list = [ - ('ggfortify', '0.4.19', { - 'checksums': ['2c568cf85be4e5ee932af7b3cc248d4360320b00bb8b29a230b29dd6f3636abd'], + ('ggfortify', '0.4.20', { + 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], }), (name, version, { 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], From b79e6a1f1aa2074e8ad073e86131a8670dcecf21 Mon Sep 17 00:00:00 2001 From: PhoenixEmik Date: Tue, 28 Jul 2026 14:22:12 +0800 Subject: [PATCH 3/5] update to autoplotly 0.1.6 --- .../autoplotly-0.1.6-foss-2024a-R-4.4.2.eb | 40 +++++++++++++++++++ .../autoplotly-0.1.6-foss-2025a-R-4.5.1.eb | 40 +++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2024a-R-4.4.2.eb create mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2025a-R-4.5.1.eb diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2024a-R-4.4.2.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2024a-R-4.4.2.eb new file mode 100644 index 000000000000..272afa962d2a --- /dev/null +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2024a-R-4.4.2.eb @@ -0,0 +1,40 @@ +easyblock = 'Bundle' + +name = 'autoplotly' +version = '0.1.6' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://github.com/terrytangyuan/autoplotly' +description = """ + Automatic Generation of Interactive Visualizations for Statistical Results +""" + +toolchain = {'name': 'foss', 'version': '2024a'} + +dependencies = [ + ('R', '4.4.2'), + ('R-bundle-CRAN', '2024.11'), +] + +exts_defaultclass = 'RPackage' +exts_list = [ + ('ggfortify', '0.4.20', { + 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], + }), + (name, version, { + 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['24d3dafdd087efb084f9e492da27b6faf786e1c0ca9a05200ca363a1bf5e849b'], + }), +] + +modextrapaths = {'R_LIBS_SITE': ''} + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2025a-R-4.5.1.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2025a-R-4.5.1.eb new file mode 100644 index 000000000000..3841093f06f8 --- /dev/null +++ b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.6-foss-2025a-R-4.5.1.eb @@ -0,0 +1,40 @@ +easyblock = 'Bundle' + +name = 'autoplotly' +version = '0.1.6' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://github.com/terrytangyuan/autoplotly' +description = """ + Automatic Generation of Interactive Visualizations for Statistical Results +""" + +toolchain = {'name': 'foss', 'version': '2025a'} + +dependencies = [ + ('R', '4.5.1'), + ('R-bundle-CRAN', '2025.10'), +] + +exts_defaultclass = 'RPackage' +exts_list = [ + ('ggfortify', '0.4.20', { + 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], + }), + (name, version, { + 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], + 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], + 'checksums': ['24d3dafdd087efb084f9e492da27b6faf786e1c0ca9a05200ca363a1bf5e849b'], + }), +] + +modextrapaths = {'R_LIBS_SITE': ''} + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'vis' From 86e7487ff6f24e8b857e7205b6824480817e953b Mon Sep 17 00:00:00 2001 From: Emik Date: Tue, 28 Jul 2026 14:23:02 +0800 Subject: [PATCH 4/5] Delete autoplotly-0.1.5-foss-2024a-R-4.4.2.eb --- .../autoplotly-0.1.5-foss-2024a-R-4.4.2.eb | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb deleted file mode 100644 index 02a34f440132..000000000000 --- a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2024a-R-4.4.2.eb +++ /dev/null @@ -1,48 +0,0 @@ -easyblock = 'Bundle' - -name = 'autoplotly' -version = '0.1.5' -versionsuffix = '-R-%(rver)s' - -homepage = 'https://github.com/terrytangyuan/autoplotly' -description = """ - Automatic Generation of Interactive Visualizations for Statistical Results -""" - -toolchain = {'name': 'foss', 'version': '2024a'} - -dependencies = [ - ('R', '4.4.2'), - ('R-bundle-CRAN', '2024.11'), -] - -exts_defaultclass = 'RPackage' -exts_default_options = { - 'sources': ['%(name)s_%(version)s.tar.gz'], - 'source_urls': [ - 'https://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive - 'https://cran.r-project.org/src/contrib/', # current version of packages - 'https://cran.freestatistics.org/src/contrib', # mirror alternative for current packages - ], -} -exts_list = [ - ('ggfortify', '0.4.20', { - 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], - 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], - 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], - }), - (name, version, { - 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], - 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], - 'checksums': ['c4a28a4693ed9e771e9d0b62ad386cd0bae0c1c9a05d2ed562ba6df176fd5f2b'], - }), -] - -modextrapaths = {'R_LIBS_SITE': ''} - -sanity_check_paths = { - 'files': [], - 'dirs': [name], -} - -moduleclass = 'vis' From a58221ffd318c95d7fbe47edf9fb4c8541ae2e94 Mon Sep 17 00:00:00 2001 From: Emik Date: Tue, 28 Jul 2026 14:23:14 +0800 Subject: [PATCH 5/5] Delete autoplotly-0.1.5-foss-2025a-R-4.5.1.eb --- .../autoplotly-0.1.5-foss-2025a-R-4.5.1.eb | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb diff --git a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb b/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb deleted file mode 100644 index 70eee55ed40b..000000000000 --- a/easybuild/easyconfigs/a/autoplotly/autoplotly-0.1.5-foss-2025a-R-4.5.1.eb +++ /dev/null @@ -1,48 +0,0 @@ -easyblock = 'Bundle' - -name = 'autoplotly' -version = '0.1.5' -versionsuffix = '-R-%(rver)s' - -homepage = 'https://github.com/terrytangyuan/autoplotly' -description = """ - Automatic Generation of Interactive Visualizations for Statistical Results -""" - -toolchain = {'name': 'foss', 'version': '2025a'} - -dependencies = [ - ('R', '4.5.1'), - ('R-bundle-CRAN', '2025.10'), -] - -exts_defaultclass = 'RPackage' -exts_default_options = { - 'sources': ['%(name)s_%(version)s.tar.gz'], - 'source_urls': [ - 'https://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive - 'https://cran.r-project.org/src/contrib/', # current version of packages - 'https://cran.freestatistics.org/src/contrib', # mirror alternative for current packages - ], -} -exts_list = [ - ('ggfortify', '0.4.20', { - 'source_urls': ['https://github.com/sinhrks/ggfortify/archive/refs/tags/'], - 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], - 'checksums': ['409eb776ac481dbcb936578d70fc091866ee7cb799d3fe3c3ed269899b94bda8'], - }), - (name, version, { - 'source_urls': ['https://github.com/terrytangyuan/autoplotly/archive/refs/tags/'], - 'sources': [{'download_filename': 'v%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}], - 'checksums': ['c4a28a4693ed9e771e9d0b62ad386cd0bae0c1c9a05d2ed562ba6df176fd5f2b'], - }), -] - -modextrapaths = {'R_LIBS_SITE': ''} - -sanity_check_paths = { - 'files': [], - 'dirs': [name], -} - -moduleclass = 'vis'