Unregister expired Ruby 2.4

This commit is contained in:
Rene Ladan
2020-03-31 11:13:55 +00:00
parent 6e2c88afb3
commit 77ca46dedf
2 changed files with 4 additions and 13 deletions

View File

@@ -90,7 +90,7 @@ PYTHON_DEFAULT?= 3.7
PYTHON2_DEFAULT?= 2.7
# Possible values: 3.5, 3.6, 3.7, 3.8
PYTHON3_DEFAULT?= 3.7
# Possible values: 2.4, 2.5, 2.6, 2.7
# Possible values: 2.5, 2.6, 2.7
RUBY_DEFAULT?= 2.6
# Possible values: rust, rust-nightly
RUST_DEFAULT?= rust

View File

@@ -15,7 +15,7 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.org
# [variables that a user may define]
#
# RUBY_VER - (See below)
# RUBY_DEFAULT_VER - Set to (e.g.) "2.4" if you want to refer to "ruby24"
# RUBY_DEFAULT_VER - Set to (e.g.) "2.5" if you want to refer to "ruby25"
# just as "ruby".
# RUBY_ARCH - (See below)
#
@@ -144,16 +144,7 @@ RUBY?= ${LOCALBASE}/bin/${RUBY_NAME}
.if defined(RUBY_VER)
# When adding a version, please keep the comment in
# Mk/bsd.default-versions.mk in sync.
. if ${RUBY_VER} == 2.4
#
# Ruby 2.4
#
RUBY_VERSION= 2.4.9
RUBY_PORTREVISION= 0
RUBY_PORTEPOCH= 1
RUBY24= "" # PLIST_SUB helpers
. elif ${RUBY_VER} == 2.5
. if ${RUBY_VER} == 2.5
#
# Ruby 2.5
#
@@ -186,7 +177,7 @@ RUBY27= "" # PLIST_SUB helpers
#
# Other versions
#
IGNORE= Only ruby 2.4, 2.5, 2.6 and 2.7 are supported
IGNORE= Only ruby 2.5, 2.6 and 2.7 are supported
_INVALID_RUBY_VER= 1
. endif
.endif # defined(RUBY_VER)