From owner-svn-ports-head@freebsd.org Sat Jun 10 02:57:55 2017 Return-Path: Delivered-To: svn-ports-head@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 671C1C774D9; Sat, 10 Jun 2017 02:57:55 +0000 (UTC) (envelope-from woodsb02@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 2D16624C3; Sat, 10 Jun 2017 02:57:55 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5A2vsJx028394; Sat, 10 Jun 2017 02:57:54 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5A2vsH9028392; Sat, 10 Jun 2017 02:57:54 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706100257.v5A2vsH9028392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 10 Jun 2017 02:57:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443065 - in head/www: py-requests py3-requests X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 02:57:55 -0000 Author: woodsb02 Date: Sat Jun 10 02:57:54 2017 New Revision: 443065 URL: https://svnweb.freebsd.org/changeset/ports/443065 Log: www/py3-requests: Update slave port to depend on Python 3.x ports PR: 219833 Approved by: portmgr blanket Modified: head/www/py-requests/Makefile head/www/py3-requests/Makefile Modified: head/www/py-requests/Makefile ============================================================================== --- head/www/py-requests/Makefile Sat Jun 10 02:52:09 2017 (r443064) +++ head/www/py-requests/Makefile Sat Jun 10 02:57:54 2017 (r443065) @@ -13,11 +13,11 @@ COMMENT= HTTP library written in Python for human bein LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=3.0.2:textproc/py-chardet \ +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}chardet>=3.0.2:textproc/py-chardet \ ${PYTHON_PKGNAMEPREFIX}idna>=2.5:dns/py-idna \ ${PYTHON_PKGNAMEPREFIX}urllib3>=1.21.1:net/py-urllib3 \ ${PYTHON_PKGNAMEPREFIX}certifi>=2017.4.17:security/py-certifi -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.1:devel/py-pytest \ +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.1:devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py-pytest-xdist \ ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:sysutils/py-execnet \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock Modified: head/www/py3-requests/Makefile ============================================================================== --- head/www/py3-requests/Makefile Sat Jun 10 02:52:09 2017 (r443064) +++ head/www/py3-requests/Makefile Sat Jun 10 02:57:54 2017 (r443065) @@ -2,6 +2,15 @@ MASTERDIR= ${.CURDIR}/../py-requests +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=3.0.2:textproc/py3-chardet \ + ${PYTHON_PKGNAMEPREFIX}idna>=2.5:dns/py3-idna \ + ${PYTHON_PKGNAMEPREFIX}urllib3>=1.21.1:net/py3-urllib3 \ + ${PYTHON_PKGNAMEPREFIX}certifi>=2017.4.17:security/py3-certifi +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.1:devel/py3-pytest \ + ${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py3-pytest-xdist \ + ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:sysutils/py3-execnet \ + ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py3-mock + USES= python:3.3+ .include "${MASTERDIR}/Makefile"