Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add fedora 41, rm fedora 39 #133

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions distributions/fedora.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# Fedora only supports the last two releases.
##

# Fedora 40
function(fedora_40)
set(_distro_name "Fedora 40")
set(_distro_index_name "fedora/40")
# Fedora 41
function(fedora_41)
set(_distro_name "Fedora 41")
set(_distro_index_name "fedora/41")
set(_supported_architectures
"aarch64"
"x86_64"
Expand All @@ -22,10 +22,10 @@ function(fedora_40)
check_architecture_support()
endfunction()

# Fedora 39
function(fedora_39)
set(_distro_name "Fedora 39")
set(_distro_index_name "fedora/39")
# Fedora 40
function(fedora_40)
set(_distro_name "Fedora 40")
set(_distro_index_name "fedora/40")
set(_supported_architectures
"aarch64"
"x86_64"
Expand Down
2 changes: 1 addition & 1 deletion targets/otc_fips_linux_amd64_rpm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ el_8()
el_9()

# Supported Fedora versions
fedora_39()
fedora_40()
fedora_41()

# Supported openSUSE versions
opensuse_15_5()
Expand Down
2 changes: 1 addition & 1 deletion targets/otc_fips_linux_arm64_rpm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ el_8()
el_9()

# Supported Fedora versions
fedora_39()
fedora_40()
fedora_41()

# Supported openSUSE versions
opensuse_15_5()
Expand Down
2 changes: 1 addition & 1 deletion targets/otc_linux_amd64_rpm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ el_8()
el_9()

# Supported Fedora versions
fedora_39()
fedora_40()
fedora_41()

# Supported openSUSE versions
opensuse_15_5()
Expand Down
2 changes: 1 addition & 1 deletion targets/otc_linux_arm64_rpm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ el_8()
el_9()

# Supported Fedora versions
fedora_39()
fedora_40()
fedora_41()

# Supported openSUSE versions
opensuse_15_5()
Expand Down
Loading