@@ -655,7 +655,10 @@ build_package_standard() {
655
655
local PACKAGE_CFLAGS=" ${package_var_name} _CFLAGS"
656
656
657
657
if [ " $package_var_name " = " RUBY" ]; then
658
- if [[ " $RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]} " != * --with-readline-dir= * ]]; then
658
+ # shellcheck disable=SC2155
659
+ local ruby_semver=" $( normalize_semver " ${package_name# ruby-} " ) "
660
+ if [[ " $RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]} " != * --with-readline-dir= * && " $ruby_semver " -lt 300300 ]]; then
661
+ # Ruby 3.3+ does not need external readline: https://github.com/rbenv/ruby-build/issues/2330
659
662
use_homebrew_readline || use_freebsd_readline || true
660
663
fi
661
664
if [[ " $RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]} " != * --with-libffi-dir= * ]]; then
@@ -672,7 +675,7 @@ build_package_standard() {
672
675
# use openssl installed from Ports Collection
673
676
package_option ruby configure --with-openssl-dir=" /usr/local"
674
677
fi
675
- elif [ " $( normalize_semver " ${package_name # ruby-} " ) " -lt 200707 ]; then
678
+ elif [ " $ruby_semver " -lt 200707 ]; then
676
679
local opt
677
680
for opt in $RUBY_CONFIGURE_OPTS " ${RUBY_CONFIGURE_OPTS_ARRAY[@]} " ; do
678
681
if [[ $opt == --with-openssl-dir= * ]]; then
@@ -690,7 +693,7 @@ build_package_standard() {
690
693
fi
691
694
if [[ " $RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]} " != * --with-ext* &&
692
695
" $RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]} " != * --without-ext* &&
693
- " $( normalize_semver " ${package_name # ruby-} " ) " -ge 200500 ]]; then
696
+ " $ruby_semver " -ge 200500 ]]; then
694
697
# For Ruby 2.5+, fail the `make` step if any of these extensions were not compiled.
695
698
# Otherwise, the build would have succeeded, but Ruby would be useless at runtime.
696
699
# https://github.com/ruby/ruby/commit/b58a30e1c14e971adba4096104274d5d692492e9
0 commit comments