From owner-svn-ports-all@freebsd.org Sun Jun 26 19:00:10 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 9DBD2B81B97; Sun, 26 Jun 2016 19:00:10 +0000 (UTC) (envelope-from cpm@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 6E29C2B5F; Sun, 26 Jun 2016 19:00:10 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5QJ09IG016350; Sun, 26 Jun 2016 19:00:09 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5QJ09ir016349; Sun, 26 Jun 2016 19:00:09 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201606261900.u5QJ09ir016349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sun, 26 Jun 2016 19:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417606 - head/misc/py-socli 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.22 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: Sun, 26 Jun 2016 19:00:10 -0000 Author: cpm Date: Sun Jun 26 19:00:09 2016 New Revision: 417606 URL: https://svnweb.freebsd.org/changeset/ports/417606 Log: - Drop textproc/py-beautifulsoup as dependency because it was removed. - Add www/py-beautifulsoup to RUN_DEPENDS - Ignore on the package builders Reported by: pkg-fallout Reviewed by: junovitch (mentor) Approved by: junovitch (mentor) Differential Revision: D6971 Modified: head/misc/py-socli/Makefile Modified: head/misc/py-socli/Makefile ============================================================================== --- head/misc/py-socli/Makefile Sun Jun 26 18:53:12 2016 (r417605) +++ head/misc/py-socli/Makefile Sun Jun 26 19:00:09 2016 (r417606) @@ -12,7 +12,7 @@ COMMENT= Stack overflow command line int LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup4>=0:textproc/py-beautifulsoup4 \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests USES= python:3 @@ -23,4 +23,10 @@ GH_ACCOUNT= gautamkrishnar NO_ARCH= yes -.include +.include + +.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} +.endif + +.include