From owner-svn-ports-branches@freebsd.org Fri Dec 20 10:11:30 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 15F331D5016; Fri, 20 Dec 2019 10:11:30 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47fPfT6xVVz3Hp4; Fri, 20 Dec 2019 10:11:29 +0000 (UTC) (envelope-from koobs@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 E9901252D8; Fri, 20 Dec 2019 10:11:29 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBKABTab099403; Fri, 20 Dec 2019 10:11:29 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBKABTpe099402; Fri, 20 Dec 2019 10:11:29 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201912201011.xBKABTpe099402@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 20 Dec 2019 10:11:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r520494 - branches/2019Q4/astro/pyephem X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q4/astro/pyephem X-SVN-Commit-Revision: 520494 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Dec 2019 10:11:30 -0000 Author: koobs Date: Fri Dec 20 10:11:29 2019 New Revision: 520494 URL: https://svnweb.freebsd.org/changeset/ports/520494 Log: MFH: r520166 astro/pyephem: Add missing (ephem) dependency The 3.7.7.0 release of pyephem was converted [1] into a stub, depending on the ephem package, in order to allow software authors to transition to the new package name. The ports r511276 commit updating the port to 3.7.7.0 missed the additional dependency. This change adds the missing dependency, after astro/py-ephem landed as a new port in ports r520162, and unbreaks all current astro/pyephem dependents, and all transitive dependents, including comms/gnuradio [2]. While I'm here: - Add NO_ARCH - Bump PORTREVISION given this issue did not affect builds, just runtime and dependents accordingly. [1] https://github.com/brandon-rhodes/pyephem/commit/5c32679a8650efd2e79d5f794edd1587b3b6e67b [2] bug 240546 PR: 240735 Submitted by: Rainer Hurling Approved by: portmgr (blanket(s): missing dependencies, build/run fix (dependents)) Approved by: ports-secteam (joneum) Modified: branches/2019Q4/astro/pyephem/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/astro/pyephem/Makefile ============================================================================== --- branches/2019Q4/astro/pyephem/Makefile Fri Dec 20 10:08:06 2019 (r520493) +++ branches/2019Q4/astro/pyephem/Makefile Fri Dec 20 10:11:29 2019 (r520494) @@ -3,10 +3,10 @@ PORTNAME= pyephem PORTVERSION= 3.7.7.0 +PORTREVISION= 1 PORTEPOCH= 1 -CATEGORIES= astro math hamradio +CATEGORIES= astro math python MASTER_SITES= CHEESESHOP -# XXX rename the directory too. PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org @@ -14,7 +14,11 @@ COMMENT= Scientific-grade astronomical computations fo LICENSE= LGPL3 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ephem==${PORTVERSION}:astro/py-ephem@${PY_FLAVOR} + USES= python USE_PYTHON= autoplist distutils + +NO_ARCH= yes .include