Skip to content

Commit

Permalink
Add Fedora 41 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Nov 8, 2024
1 parent 651047a commit 91aea07
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 275 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.4.16

* Add Fedora 41.

# 2.4.15

* Add OpenSUSE 15.6.
Expand Down
7 changes: 5 additions & 2 deletions lib/linux-filenames.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ x86_64 = {
'fedora-37': 'R-{}-1-1.x86_64.rpm',
'fedora-38': 'R-{}-1-1.x86_64.rpm',
'fedora-39': 'R-{}-1-1.x86_64.rpm',
'fedora-40': 'R-{}-1-1.x86_64.rpm'
'fedora-40': 'R-{}-1-1.x86_64.rpm',
'fedora-41': 'R-{}-1-1.x86_64.rpm'
};

arm64 = {
Expand Down Expand Up @@ -81,7 +82,9 @@ arm64 = {
'fedora-39':
'https://github.com/r-hub/R/releases/download/v{}/r-rstudio-fedora-39-{}-1-1.aarch64.rpm',
'fedora-40':
'https://github.com/r-hub/R/releases/download/v{}/r-rstudio-fedora-40-{}-1-1.aarch64.rpm'
'https://github.com/r-hub/R/releases/download/v{}/r-rstudio-fedora-40-{}-1-1.aarch64.rpm',
'fedora-41':
'https://github.com/r-hub/R/releases/download/v{}/r-rstudio-fedora-41-{}-1-1.aarch64.rpm'
};

module.exports = { 'x86_64': x86_64, 'arm64': arm64 };
15 changes: 14 additions & 1 deletion lib/linux-platform-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ platforms = [
'eol': '2024-05-14',
'ppm-binaries': false,
'retired': true,
'last-build': '4.3.3'
'last-build': '4.4.2'
},

{
Expand Down Expand Up @@ -312,6 +312,19 @@ platforms = [
'last-build': null
},

{
'id': 'fedora-41',
'aliases': [],
'name': 'Fedora Linux',
'url': 'https://fedoraproject.org/',
'version': '41',
'docker': 'fedora:41',
'eol': '2025-11-26',
'ppm-binaries': false,
'retired': false,
'last-build': null
},

// Distros implemented as other distros above

{
Expand Down
Loading

0 comments on commit 91aea07

Please sign in to comment.