From owner-svn-ports-all@FreeBSD.ORG Sat Jun 28 03:22:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBC6D5F8; Sat, 28 Jun 2014 03:22:13 +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 D903A2AFB; Sat, 28 Jun 2014 03:22:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5S3MDOB084410; Sat, 28 Jun 2014 03:22:13 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5S3MDJp084409; Sat, 28 Jun 2014 03:22:13 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201406280322.s5S3MDJp084409@svn.freebsd.org> From: Steve Wills Date: Sat, 28 Jun 2014 03:22:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359641 - head 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.18 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: Sat, 28 Jun 2014 03:22:14 -0000 Author: swills Date: Sat Jun 28 03:22:13 2014 New Revision: 359641 URL: http://svnweb.freebsd.org/changeset/ports/359641 QAT: https://qat.redports.org/buildarchive/r359641/ Log: - Add note about default JDK changing from OpenJDK 1.6 to OpenJDK 1.7 Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Jun 28 03:10:52 2014 (r359640) +++ head/UPDATING Sat Jun 28 03:22:13 2014 (r359641) @@ -6,6 +6,38 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20140627: + AFFECTS: Users of Java + AUTHOR: swills@FreeBSD.org + + The default version of OpenJDK has been updated from 1.6 to 1.7. To update, + users of Java will need to rebuild all ports that depend on Java: + + If you use pkg (regardless of if you build ports from source or install + binary packages): + # pkg set -o java/openjdk6:java/openjdk7 + + If you use portmaster to build ports from source: + + # portmaster -o java/openjdk7 openjdk6 + # portmaster -R -r openjdk + + If you use portupgrade to build ports from source: + + # portupgrade -fo java/openjdk7 java/openjdk6 + + If you use pkg to install prebuilt binary packages: + + # pkg install -fR java/openjdk7 + + If you wish to keep the 1.6 version as default, add the following lines to + your /etc/make.conf file: + + # + # Keep OpenJDK 1.6 as default version. + # + JAVA_PREFERRED_PORTS=JAVA_PORT_NATIVE_OPENJDK_JDK_1_6 + +20140627: AFFECTS: users of security/amavisd-milter AUTHOR: delphij@FreeBSD.org