diff options
author | Steve Wills <swills@FreeBSD.org> | 2014-10-09 01:08:28 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2014-10-09 01:08:28 +0000 |
commit | b97946146d72dda8ad1a1f89687aca719cfb15d4 (patch) | |
tree | 56a1fd14f6092225b99fc41fd48afff40973fe65 /UPDATING | |
parent | 21491c16237a37074522c87f10e59e32bc8f39a2 (diff) | |
download | ports-b97946146d72dda8ad1a1f89687aca719cfb15d4.tar.gz ports-b97946146d72dda8ad1a1f89687aca719cfb15d4.zip |
Notes
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -5,6 +5,39 @@ 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. +20141008: + AFFECTS: users of lang/ruby19 + AUTHOR: swills@FreeBSD.org + + The default ruby version has been updated from 1.9 to 2.0. + + If you compile your own ports you may keep 1.9 as the default version by + adding the following lines to your /etc/make.conf file: + + # + # Keep ruby 1.9 as default version + # + DEFAULT_VERSIONS+=ruby=1.9 + + 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/ruby20 lang/ruby19 + # portmaster -R -r ruby-2.0 + + 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 + # portupgrade -x ruby-2.0.\* -fr lang/ruby20 + 20141003: AFFECTS: xorg users AUTHOR: bapt@FreeBSD.org |