Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2019 08:33:48 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520159 - head/devel/py-convertdate
Message-ID:  <201912150833.xBF8XmmZ081308@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Sun Dec 15 08:33:47 2019
New Revision: 520159
URL: https://svnweb.freebsd.org/changeset/ports/520159

Log:
  devel/py-convertdate: Fix broken dependencies
  
  convertdate does not [1] depend on pyephem, which was replaced with
  pymeeus in 2.2.0.
  
  Dependency astro/py-pymeeus landed in ports r520157 as a new port.
  
  This issue was identified while QA'ing pyephem dependents for bug 240735
  
  [1] HISTORY.rst:* Replace pyephem, which is now in maintenance mode, with pymeeus.
  
  PR:		240735
  Approved by:	portmgr (blanket(s): dependencies, runtime bugfix)
  MFH:		2019Q4 (MFH with r520157)

Modified:
  head/devel/py-convertdate/Makefile

Modified: head/devel/py-convertdate/Makefile
==============================================================================
--- head/devel/py-convertdate/Makefile	Sun Dec 15 08:29:08 2019	(r520158)
+++ head/devel/py-convertdate/Makefile	Sun Dec 15 08:33:47 2019	(r520159)
@@ -2,6 +2,7 @@
 
 PORTNAME=	convertdate
 PORTVERSION=	2.2.0
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,11 +13,11 @@ COMMENT=	Converts between Gregorian dates and other ca
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytz>=2014.10:devel/py-pytz@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pymeeus>=0.3.6,<1:astro/py-pymeeus@${PY_FLAVOR}
+
 USES=		python
 USE_PYTHON=	autoplist distutils
-
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}pyephem>0:astro/pyephem@${PY_FLAVOR}
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR}
 
 NO_ARCH=	yes
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912150833.xBF8XmmZ081308>