svn commit: r519582 - head/textproc/py-chardet

Ruslan Makhmatkhanov rm at FreeBSD.org
Sun Dec 8 23:04:56 UTC 2019


Author: rm
Date: Sun Dec  8 23:04:55 2019
New Revision: 519582
URL: https://svnweb.freebsd.org/changeset/ports/519582

Log:
  textproc/py-chardet: drop uncoditional pytest dependency
  
  Dependency on pytest-runner is only used when setup.py is called
  with `test` target, so drop it from BUILD_DEPENDS.
  
  PR:		241767
  Submitted by:	ngie
  Reviewed by:	koobs
  MFH:		2019Q4

Modified:
  head/textproc/py-chardet/Makefile

Modified: head/textproc/py-chardet/Makefile
==============================================================================
--- head/textproc/py-chardet/Makefile	Sun Dec  8 22:55:40 2019	(r519581)
+++ head/textproc/py-chardet/Makefile	Sun Dec  8 23:04:55 2019	(r519582)
@@ -3,7 +3,7 @@
 
 PORTNAME=	chardet
 PORTVERSION=	3.0.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 MASTER_SITES=	CHEESESHOP
@@ -14,8 +14,8 @@ COMMENT=	Universal encoding detector for Python 2 and 
 LICENSE=	LGPL21
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
-TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}hypothesis>0:devel/py-hypothesis@${PY_FLAVOR}
 
 NO_ARCH=	yes


More information about the svn-ports-all mailing list