diff options
author | 2020-01-23 10:01:03 +0100 | |
---|---|---|
committer | 2021-06-16 20:46:02 +0000 | |
commit | f92c0cda4e73677d2e74cbf64c8a93c349bacc51 (patch) | |
tree | 6763ad7ae8929047e9869ac4311b5fdfa87a588b | |
parent | cf5c4fcd3697e1cca6f18100f70e0e1ca7ba00c8 (diff) | |
download | paludis-f92c0cda4e73677d2e74cbf64c8a93c349bacc51.tar.gz paludis-f92c0cda4e73677d2e74cbf64c8a93c349bacc51.tar.xz |
build-sys: drop support for EOL rubys
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rwxr-xr-x | ci/configure-paludis.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f6430d98f..6b74d6599 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,8 +54,8 @@ set(PYTHON_SUPPORTED_VERSIONS 2.7 3.5 3.6 3.7 3.8) set(PYTHON_VERSION "2.7" CACHE STRING "Python version (${PYTHON_SUPPORTED_VERSIONS}) (requires corresponding Boost.Python as well)") -set(RUBY_SUPPORTED_VERSIONS 2.1 2.2 2.3 2.4 2.5 2.6 2.7) -set(RUBY_VERSION "2.3" CACHE STRING "Ruby Version (${RUBY_SUPPORTED_VERSIONS})") +set(RUBY_SUPPORTED_VERSIONS 2.4 2.5 2.6 2.7) +set(RUBY_VERSION "2.7" CACHE STRING "Ruby Version (${RUBY_SUPPORTED_VERSIONS})") set(CMAKE_THREAD_PREFER_PTHREAD TRUE) set(THREADS_PREFER_PTHREAD_FLAG TRUE) diff --git a/ci/configure-paludis.sh b/ci/configure-paludis.sh index b01628a4d..c25a5cb47 100755 --- a/ci/configure-paludis.sh +++ b/ci/configure-paludis.sh @@ -11,7 +11,7 @@ if [[ ${DISTRIBUTION} == "exherbo" ]]; then -DPALUDIS_DEFAULT_DISTRIBUTION=exherbo -DCONFIG_FRAMEWORK=eclectic - -DRUBY_VERSION:STRING="2.4" + -DRUBY_VERSION:STRING="2.7" -DPYTHON_VERSION:STRING="${PYTHON_VERSION}" ) elif [[ ${DISTRIBUTION} == "gentoo" ]]; then @@ -21,7 +21,7 @@ elif [[ ${DISTRIBUTION} == "gentoo" ]]; then -DPALUDIS_DEFAULT_DISTRIBUTION=gentoo -DCONFIG_FRAMEWORK=eselect - -DRUBY_VERSION:STRING="2.4" + -DRUBY_VERSION:STRING="2.7" -DPYTHON_VERSION:STRING="${PYTHON_VERSION}" ) fi |