mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-11-17 17:41:00 +01:00
parent
82e275db37
commit
2617f400de
87 changed files with 106 additions and 86 deletions
|
|
@ -508,6 +508,26 @@ package_option() {
|
|||
eval "$variable=( \"\${value[@]}\" )"
|
||||
}
|
||||
|
||||
build_package_warn_eol() {
|
||||
local package_name="$1"
|
||||
|
||||
{ echo
|
||||
echo "WARNING: $package_name is past its end of life and is now unsupported."
|
||||
echo "It no longer receives bug fixes or critical security updates."
|
||||
echo
|
||||
} >&3
|
||||
}
|
||||
|
||||
build_package_warn_unsupported() {
|
||||
local package_name="$1"
|
||||
|
||||
{ echo
|
||||
echo "WARNING: $package_name is nearing its end of life."
|
||||
echo "It only receives critical security updates, no bug fixes."
|
||||
echo
|
||||
} >&3
|
||||
}
|
||||
|
||||
build_package_standard() {
|
||||
local package_name="$1"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue