svn commit: r520159 - head/devel/py-convertdate

Kubilay Kocak koobs at FreeBSD.org
Sun Dec 15 08:33:48 UTC 2019


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
 


More information about the svn-ports-all mailing list