From owner-svn-ports-head@freebsd.org Mon Sep 9 05:08:36 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C196FED4D0; Mon, 9 Sep 2019 05:08:36 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46Rbm44Nlbz4TkL; Mon, 9 Sep 2019 05:08:36 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 75B0287AB; Mon, 9 Sep 2019 05:08:36 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8958a20036763; Mon, 9 Sep 2019 05:08:36 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8958aCH036761; Mon, 9 Sep 2019 05:08:36 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201909090508.x8958aCH036761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Mon, 9 Sep 2019 05:08:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511605 - in head: . Mk X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head: . Mk X-SVN-Commit-Revision: 511605 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Sep 2019 05:08:36 -0000 Author: mfechner Date: Mon Sep 9 05:08:35 2019 New Revision: 511605 URL: https://svnweb.freebsd.org/changeset/ports/511605 Log: Switch default version of Ruby from 2.5 to 2.6. For detailed list of changes, please check the Ruby website: https://www.ruby-lang.org/en/news/2018/12/25/ruby-2-6-0-released/ How to upgrade is described in UPDATING entry 20190909. Exp-Run: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240094 Thanks to: antoine, sunpoet Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Mon Sep 9 02:05:15 2019 (r511604) +++ head/Mk/bsd.default-versions.mk Mon Sep 9 05:08:35 2019 (r511605) @@ -91,7 +91,7 @@ PYTHON2_DEFAULT?= 2.7 # Possible values: 3.5, 3.6, 3.7 PYTHON3_DEFAULT?= 3.6 # Possible values: 2.4, 2.5, 2.6 -RUBY_DEFAULT?= 2.5 +RUBY_DEFAULT?= 2.6 # Possible values: rust, rust-nightly RUST_DEFAULT?= rust # Possible values: 4.8, 4.10 Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Sep 9 02:05:15 2019 (r511604) +++ head/UPDATING Mon Sep 9 05:08:35 2019 (r511605) @@ -5,6 +5,30 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20190909: + AFFECTS: users of lang/ruby25 + AUTHOR: mfechner@FreeBSD.org + + The default ruby version has been updated from 2.5 to 2.6. + + If you compile your own ports you may keep 2.5 as the default version by + adding the following lines to your /etc/make.conf file: + + # + # Keep ruby 2.5 as default version + # + DEFAULT_VERSIONS+=ruby=2.5 + + If you wish to update to the new default version, you need to first stop any + software that uses ruby. Then, you will need to follow these steps, depending + upon how you manage your system. + + If you use pkgng, simply upgrade: + # pkg upgrade + + If you do not use pkg, please check entry 20190420. + The description there should also work for this version. + 20190906: AFFECTS: users of devel/py-fabric AUTHOR: dbaio@FreeBSD.org