From owner-svn-ports-head@FreeBSD.ORG Sun Mar 1 03:04:41 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEC9D6B2; Sun, 1 Mar 2015 03:04:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0C3B20F; Sun, 1 Mar 2015 03:04:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2134fT3062817; Sun, 1 Mar 2015 03:04:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2134fkk062813; Sun, 1 Mar 2015 03:04:41 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201503010304.t2134fkk062813@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 1 Mar 2015 03:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380171 - in head: . Mk X-SVN-Group: ports-head 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.18-1 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: Sun, 01 Mar 2015 03:04:41 -0000 Author: swills Date: Sun Mar 1 03:04:40 2015 New Revision: 380171 URL: https://svnweb.freebsd.org/changeset/ports/380171 QAT: https://qat.redports.org/buildarchive/r380171/ Log: - Switch default version of Ruby to 2.0 PR: 196632 Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Sun Mar 1 01:41:00 2015 (r380170) +++ head/Mk/bsd.default-versions.mk Sun Mar 1 03:04:40 2015 (r380171) @@ -29,7 +29,7 @@ PHP_DEFAULT?= 5.6 PYTHON_DEFAULT?= 2.7 PYTHON2_DEFAULT?= 2.7 PYTHON3_DEFAULT?= 3.4 -RUBY_DEFAULT?= 2.0 +RUBY_DEFAULT?= 2.1 TCLTK_DEFAULT?= 8.6 FIREBIRD_DEFAULT?= 2.5 Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Mar 1 01:41:00 2015 (r380170) +++ head/UPDATING Sun Mar 1 03:04:40 2015 (r380171) @@ -5,6 +5,40 @@ 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. +20150301: + AFFECTS: users of lang/ruby20 + AUTHOR: swills@FreeBSD.org + + The default ruby version has been updated from 2.0 to 2.1. + + If you compile your own ports you may keep 2.0 as the default version by + adding the following lines to your /etc/make.conf file: + + # + # Keep ruby 2.0 as default version + # + DEFAULT_VERSIONS+=ruby=2.0 + + 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 use portmaster, install new ruby, then rebuild all ports that depend + on ruby: + # portmaster -o lang/ruby21 lang/ruby20 + # portmaster -R -r ruby-2.1 + + If you use portupgrade, install new ruby, then rebuild all ports that depend + on ruby: + + # pkg delete -f ruby portupgrade + # make -C /usr/ports/ports-mgmt/portupgrade install clean + # pkg set -o lang/ruby20:lang/ruby21 + # portupgrade -x ruby-2.1.\* -fr lang/ruby21 + 20150227: AFFECTS: Users of games/trigger AUTHOR: makc@FreeBSD.org