Skip to content

Commit 8465e02

Browse files
committedJan 7, 2024
Skip passing --with-readline-dir for Ruby 3.3+
1 parent 3b79c29 commit 8465e02

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed
 

‎bin/ruby-build

+6-3
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,10 @@ build_package_standard() {
655655
local PACKAGE_CFLAGS="${package_var_name}_CFLAGS"
656656

657657
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
659662
use_homebrew_readline || use_freebsd_readline || true
660663
fi
661664
if [[ "$RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]}" != *--with-libffi-dir=* ]]; then
@@ -672,7 +675,7 @@ build_package_standard() {
672675
# use openssl installed from Ports Collection
673676
package_option ruby configure --with-openssl-dir="/usr/local"
674677
fi
675-
elif [ "$(normalize_semver "${package_name#ruby-}")" -lt 200707 ]; then
678+
elif [ "$ruby_semver" -lt 200707 ]; then
676679
local opt
677680
for opt in $RUBY_CONFIGURE_OPTS "${RUBY_CONFIGURE_OPTS_ARRAY[@]}"; do
678681
if [[ $opt == --with-openssl-dir=* ]]; then
@@ -690,7 +693,7 @@ build_package_standard() {
690693
fi
691694
if [[ "$RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]}" != *--with-ext* &&
692695
"$RUBY_CONFIGURE_OPTS ${RUBY_CONFIGURE_OPTS_ARRAY[*]}" != *--without-ext* &&
693-
"$(normalize_semver "${package_name#ruby-}")" -ge 200500 ]]; then
696+
"$ruby_semver" -ge 200500 ]]; then
694697
# For Ruby 2.5+, fail the `make` step if any of these extensions were not compiled.
695698
# Otherwise, the build would have succeeded, but Ruby would be useless at runtime.
696699
# https://github.com/ruby/ruby/commit/b58a30e1c14e971adba4096104274d5d692492e9

‎test/build.bats

+24
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,30 @@ make install
293293
OUT
294294
}
295295

296+
@test "readline is not auto-discovered for Ruby 3.3" {
297+
cached_tarball "ruby-3.3.0" configure
298+
299+
readline_libdir="$TMP/homebrew-readline"
300+
mkdir -p "$readline_libdir"
301+
302+
stub_repeated brew "--prefix readline : echo '$readline_libdir'"
303+
stub_make_install
304+
305+
run_inline_definition <<DEF
306+
install_package "ruby-3.3.0" "http://ruby-lang.org/ruby/3.0/ruby-3.3.0.tar.gz"
307+
DEF
308+
assert_success
309+
310+
unstub brew
311+
unstub make
312+
313+
assert_build_log <<OUT
314+
ruby-3.3.0: [--prefix=$INSTALL_ROOT,--with-ext=openssl,psych,+]
315+
make -j 2
316+
make install
317+
OUT
318+
}
319+
296320
@test "readline is not linked from Homebrew when explicitly defined" {
297321
cached_tarball "ruby-3.2.0" configure
298322

0 commit comments

Comments
 (0)