From owner-svn-ports-all@FreeBSD.ORG Fri Mar 7 11:22:50 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 8035ABB5; Fri, 7 Mar 2014 11:22:50 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D5E6192; Fri, 7 Mar 2014 11:22:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s27BMo9L001360; Fri, 7 Mar 2014 11:22:50 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s27BMos5001359; Fri, 7 Mar 2014 11:22:50 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403071122.s27BMos5001359@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 7 Mar 2014 11:22:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347362 - 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.17 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: Fri, 07 Mar 2014 11:22:50 -0000 Author: sunpoet Date: Fri Mar 7 11:22:49 2014 New Revision: 347362 URL: http://svnweb.freebsd.org/changeset/ports/347362 QAT: https://qat.redports.org/buildarchive/r347362/ Log: - Document the change of devel/py-setuptools Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Mar 7 11:13:17 2014 (r347361) +++ head/UPDATING Fri Mar 7 11:22:49 2014 (r347362) @@ -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. +20140307: + AFFECTS: users of devel/py-setuptools dependent ports + AUTHOR: sunpoet@FreeBSD.org + + devel/py-setuptools is being used for every python ports (if USE_PYDISTUTILS + defined) since r336553. Due to PKGORIGIN limitation, we cannot build one + python port with python27 and the other with python33 since they require + different setuptools versions which have same PKGORIGIN. With the addition + of py-setuptools{27,32,33}, we could now have py27-foo and py33-bar coexist + in one system. + + Note that this is only a short-term solution. It does not help if you need + coexistence of one port with different python versions, e.g. py27-foo and + py33-foo. + + Please rebuild all ports that depend on devel/py-setuptools and use + devel/py-setuptools{27,32,33} instead. + + XX represents python version (27, 32 or 33) in the following steps. + + pkgng users: + + # pkg set -o devel/py-setuptools:devel/py-setuptoolsXX + + portmaster users: + + # portmaster -o devel/py-setuptoolsXX devel/py-setuptools + # portmaster -r devel/py-setuptools + + portupgrade users: + + # portupgrade -o devel/py-setuptoolsXX -f devel/py-setuptools + # portupgrade -fr devel/py-setuptools + 20140304: AFFECTS: users of security/kwallet AUTHOR: kde@FreeBSD.org