From owner-svn-ports-all@FreeBSD.ORG Mon May 27 13:11:31 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9F37AE60; Mon, 27 May 2013 13:11:31 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 90A12127; Mon, 27 May 2013 13:11:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4RDBVPg099341; Mon, 27 May 2013 13:11:31 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4RDBVMf099339; Mon, 27 May 2013 13:11:31 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201305271311.r4RDBVMf099339@svn.freebsd.org> From: Steve Wills Date: Mon, 27 May 2013 13:11:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319233 - 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-all@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 27 May 2013 13:11:31 -0000 Author: swills Date: Mon May 27 13:11:30 2013 New Revision: 319233 URL: http://svnweb.freebsd.org/changeset/ports/319233 Log: - Switch default version of Ruby to 1.9 Modified: head/Mk/bsd.ruby.mk head/UPDATING Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Mon May 27 13:02:14 2013 (r319232) +++ head/Mk/bsd.ruby.mk Mon May 27 13:11:30 2013 (r319233) @@ -132,7 +132,7 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.or # RUBY_ELISPDIR - Installation path for emacs lisp files. # -RUBY_DEFAULT_VER?= 1.8 +RUBY_DEFAULT_VER?= 1.9 RUBY_VER?= ${RUBY_DEFAULT_VER} Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon May 27 13:02:14 2013 (r319232) +++ head/UPDATING Mon May 27 13:11:30 2013 (r319233) @@ -5,6 +5,28 @@ 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. +20130527: + AFFECTS: users of lang/ruby18 + AUTHOR: swills@FreeBSD.org + + The default ruby version has been updated from 1.8 to 1.9. You'll need to + rebuild all ports that depend on ruby: + + # portmaster -r lang/ruby19 + or + # portupgrade -fr lang/ruby19 + or + # pkg set -o lang/ruby18:lang/ruby19 + # pkg install -fR lang/ruby19 + + If you wish to keep the 1.8 version as default, add the following lines + to your /etc/make.conf file: + + # + # Keep ruby 1.8 as default version. + # + RUBY_DEFAULT_VER=1.8 + 20130525: AFFECTS: users of sysutils/rsyslog5* AUTHOR: brd@FreeBSD.org