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

fix: update registry backend APIs and download functionality #990

Merged
merged 13 commits into from
Mar 23, 2024
2 changes: 1 addition & 1 deletion src/fpm_command_line.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1390,7 +1390,7 @@ subroutine set_help()
'DESCRIPTION', &
' Follow the steps to create a tarball and upload a package to the registry:', &
'', &
' 1. Register on the website (https://registry-frontend.vercel.app/).', &
' 1. Register on the website (https://registry-phi.vercel.app/).', &
' 2. Create a namespace. Uploaded packages must be assigned to a unique', &
' namespace to avoid conflicts among packages with similar names. A', &
' namespace can accommodate multiple packages.', &
Expand Down
2 changes: 1 addition & 1 deletion src/fpm_compiler.F90
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ subroutine get_release_compile_flags(id, flags)

case(id_intel_classic_mac)
flags = &
flag_intel_opt//&
! flag_intel_opt//& ! commented to debug #980
flag_intel_fp//&
flag_intel_align//&
flag_intel_limit//&
Expand Down
2 changes: 1 addition & 1 deletion src/fpm_settings.f90
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module fpm_settings
private
public :: fpm_global_settings, get_global_settings, get_registry_settings, official_registry_base_url

character(*), parameter :: official_registry_base_url = 'https://registry-apis.vercel.app'
character(*), parameter :: official_registry_base_url = 'https://fpm-registry.vercel.app'
character(*), parameter :: default_config_file_name = 'config.toml'

type :: fpm_global_settings
Expand Down
Loading