From owner-svn-ports-all@FreeBSD.ORG Fri May 15 03:48:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 270326FE; Fri, 15 May 2015 03:48:08 +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 154EF1C5D; Fri, 15 May 2015 03:48:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4F3m7h1052933; Fri, 15 May 2015 03:48:07 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4F3m7wY052930; Fri, 15 May 2015 03:48:07 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201505150348.t4F3m7wY052930@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 15 May 2015 03:48:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386379 - in head/lang: python python2 python3 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: Fri, 15 May 2015 03:48:08 -0000 Author: bdrewery Date: Fri May 15 03:48:06 2015 New Revision: 386379 URL: https://svnweb.freebsd.org/changeset/ports/386379 Log: Remove dead PYTHON_NO_DEPENDS. It has not been needed or supported since USES=python was added in r364450. Modified: head/lang/python/Makefile head/lang/python2/Makefile head/lang/python3/Makefile Modified: head/lang/python/Makefile ============================================================================== --- head/lang/python/Makefile Fri May 15 03:46:42 2015 (r386378) +++ head/lang/python/Makefile Fri May 15 03:48:06 2015 (r386379) @@ -15,7 +15,6 @@ COMMENT= The "meta-port" for the default USES= python:run NO_BUILD= yes -PYTHON_NO_DEPENDS= yes PLIST_FILES= bin/2to3 \ bin/idle \ Modified: head/lang/python2/Makefile ============================================================================== --- head/lang/python2/Makefile Fri May 15 03:46:42 2015 (r386378) +++ head/lang/python2/Makefile Fri May 15 03:48:06 2015 (r386379) @@ -14,7 +14,6 @@ COMMENT= The "meta-port" for version 2 o USES= python:run PYTHON_VERSION= ${PYTHON2_DEFAULT_VERSION} NO_BUILD= yes -PYTHON_NO_DEPENDS= yes PLIST_FILES= bin/2to3-${PYTHON_MAJOR_VER} \ bin/idle${PYTHON_MAJOR_VER} \ Modified: head/lang/python3/Makefile ============================================================================== --- head/lang/python3/Makefile Fri May 15 03:46:42 2015 (r386378) +++ head/lang/python3/Makefile Fri May 15 03:48:06 2015 (r386379) @@ -14,7 +14,6 @@ COMMENT= The "meta-port" for version 3 o USES= python:run PYTHON_VERSION= ${PYTHON3_DEFAULT_VERSION} NO_BUILD= yes -PYTHON_NO_DEPENDS= yes PLIST_FILES= bin/2to3-${PYTHON_MAJOR_VER} \ bin/idle${PYTHON_MAJOR_VER} \