From owner-svn-ports-head@freebsd.org Tue Aug 14 14:02:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FA431079235; Tue, 14 Aug 2018 14:02:06 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2396706C6; Tue, 14 Aug 2018 14:02:05 +0000 (UTC) (envelope-from mi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 937631C88E; Tue, 14 Aug 2018 14:02:05 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7EE253h006706; Tue, 14 Aug 2018 14:02:05 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7EE25mS006704; Tue, 14 Aug 2018 14:02:05 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201808141402.w7EE25mS006704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Tue, 14 Aug 2018 14:02:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477153 - in head/devel: dispy pycos X-SVN-Group: ports-head X-SVN-Commit-Author: mi X-SVN-Commit-Paths: in head/devel: dispy pycos X-SVN-Commit-Revision: 477153 X-SVN-Commit-Repository: ports 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.27 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: Tue, 14 Aug 2018 14:02:06 -0000 Author: mi Date: Tue Aug 14 14:02:04 2018 New Revision: 477153 URL: https://svnweb.freebsd.org/changeset/ports/477153 Log: Collapse the MASTER_SITES/SUBDIR into one line and actually record the run-time dependency of dispy on pycos. Reported by: mat Was going to put the Python's version into package-name's prefix as seems customary, to allow packages for different versions to be installed concurrently, but antoine beat me to it. Modified: head/devel/dispy/Makefile head/devel/pycos/Makefile Modified: head/devel/dispy/Makefile ============================================================================== --- head/devel/dispy/Makefile Tue Aug 14 13:37:34 2018 (r477152) +++ head/devel/dispy/Makefile Tue Aug 14 14:02:04 2018 (r477153) @@ -4,8 +4,7 @@ PORTNAME= dispy PORTVERSION= 4.9.1 CATEGORIES= devel net -MASTER_SITES= SF -MASTER_SITE_SUBDIR=${PORTNAME} +MASTER_SITES= SF/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mi@aldan.algebra.com @@ -13,6 +12,8 @@ COMMENT= Distributed and Parallel Computing with/for P LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycos>=4.7.7:devel/pycos@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/devel/pycos/Makefile ============================================================================== --- head/devel/pycos/Makefile Tue Aug 14 13:37:34 2018 (r477152) +++ head/devel/pycos/Makefile Tue Aug 14 14:02:04 2018 (r477153) @@ -4,8 +4,7 @@ PORTNAME= pycos PORTVERSION= 4.7.7 CATEGORIES= devel net -MASTER_SITES= SF -MASTER_SITE_SUBDIR=${PORTNAME} +MASTER_SITES= SF/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mi@aldan.algebra.com