From owner-svn-ports-all@freebsd.org Tue Feb 2 20:21:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE9FBA98186; Tue, 2 Feb 2016 20:21:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8BBA31A91; Tue, 2 Feb 2016 20:21:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u12KLlpr039161; Tue, 2 Feb 2016 20:21:47 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u12KLl3I039160; Tue, 2 Feb 2016 20:21:47 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201602022021.u12KLl3I039160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 2 Feb 2016 20:21:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407844 - head/Mk/Uses 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.20 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: Tue, 02 Feb 2016 20:21:48 -0000 Author: rm Date: Tue Feb 2 20:21:47 2016 New Revision: 407844 URL: https://svnweb.freebsd.org/changeset/ports/407844 Log: Update examples to exclude version 3.2 With hat: python Modified: head/Mk/Uses/python.mk Modified: head/Mk/Uses/python.mk ============================================================================== --- head/Mk/Uses/python.mk Tue Feb 2 20:16:34 2016 (r407843) +++ head/Mk/Uses/python.mk Tue Feb 2 20:21:47 2016 (r407844) @@ -10,14 +10,14 @@ # # version If your port requires only some set of Python versions, you # can set this to [min]-[max] or min+ or -max or as an -# explicit version or as a meta port version (eg. 3.2-3.3 for -# [min]-[max], 2.7+ or -3.2 for min+ and -max, 2.7 for an +# explicit version or as a meta port version (eg. 3.3-3.4 for +# [min]-[max], 2.7+ or -3.3 for min+ and -max, 2.7 for an # explicit version or 3 for a meta port version). Example: # # USES=python:2.7 # Only use Python 2.7 -# USES=python:3.2+ # Use Python 3.2 or newer -# USES=python:3.2-3.3 # Use Python 3.2 or 3.3 -# USES=python:-3.2 # Use any Python up to 3.2 +# USES=python:3.3+ # Use Python 3.3 or newer +# USES=python:3.3-3.4 # Use Python 3.3 or 3.4 +# USES=python:-3.3 # Use any Python up to 3.3 # USES=python:2 # Use the Python 2 meta port # USES=python # Use the set default Python # # version