diff options
-rw-r--r-- | Mk/bsd.default-versions.mk | 2 | ||||
-rw-r--r-- | UPDATING | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk index 7cc7fe2146a4..baa5fcc5bad2 100644 --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -29,7 +29,7 @@ PHP_DEFAULT?= 5.4 PYTHON_DEFAULT?= 2.7 PYTHON2_DEFAULT?= 2.7 PYTHON3_DEFAULT?= 3.3 -RUBY_DEFAULT?= 1.9 +RUBY_DEFAULT?= 2.0 TCLTK_DEFAULT?= 8.6 FIREBIRD_DEFAULT?= 2.5 @@ -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 |