From owner-svn-ports-all@FreeBSD.ORG Sun Mar 1 06:51:34 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DE2E771; Sun, 1 Mar 2015 06:51:34 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C7F0380; Sun, 1 Mar 2015 06:51:34 +0000 (UTC) Received: from mouf.net (swills@mouf [199.48.129.64]) by mouf.net (8.14.5/8.14.5) with ESMTP id t216pN69013568 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 1 Mar 2015 06:51:28 GMT (envelope-from swills@mouf.net) Received: (from swills@localhost) by mouf.net (8.14.5/8.14.5/Submit) id t216pNjh013567; Sun, 1 Mar 2015 06:51:23 GMT (envelope-from swills) Date: Sun, 1 Mar 2015 06:51:23 +0000 From: Steve Wills To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r380171 - in head: . Mk Message-ID: <20150301065119.GB39811@mouf.net> References: <201503010304.t2134fkk062813@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201503010304.t2134fkk062813@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Sun, 01 Mar 2015 06:51:28 +0000 (UTC) X-Spam-Status: No, score=0.0 required=4.5 tests=HEADER_FROM_DIFFERENT_DOMAINS autolearn=unavailable autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mouf.net X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2015 06:51:34 -0000 The commit itself was right, but the commit message was wrong, this should have said 2.1 instead of 2.0. Sorry about that. Reported by: linimon Pointyhat to: swills Steve On Sun, Mar 01, 2015 at 03:04:41AM +0000, Steve Wills wrote: > 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