From 0c35b7ca6a7173745d91836c497a5cbedcda93f0 Mon Sep 17 00:00:00 2001 From: Kubilay Kocak Date: Mon, 1 Jul 2019 07:13:53 +0000 Subject: MFH: r505544 print/dot2tex: Fix incorrect Python version spec dot2tex supports Python 2 and 3. This change removes the unecessary version spec restriction to 2.7. While I'm here: - Add PKGNAMEPREFIX (unique package names per flavor) - Enable USE_PYTHON=concurrent, each package flavor installs scripts in common locations - Add TEST_DEPENDS/test target - Add python to CATEGORIES - Pet portlint (Make file sort/group order) PR: 237984 Approved by: portmgr (maintainer timeout: 1 month) Approved by: ports-secteam (blanket(s): ports (& python) compliance) --- print/dot2tex/Makefile | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/print/dot2tex/Makefile b/print/dot2tex/Makefile index 2eee0bea0235..9aec55e20db9 100644 --- a/print/dot2tex/Makefile +++ b/print/dot2tex/Makefile @@ -3,7 +3,9 @@ PORTNAME= dot2tex PORTVERSION= 2.9.0 -CATEGORIES= print +PORTREVISION= 1 +CATEGORIES= print python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= tota@FreeBSD.org COMMENT= Graphviz to LaTeX converter @@ -13,11 +15,21 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyparsing>=1.4.8:devel/py-pyparsing@${PY_FLAVOR} \ dot:graphics/graphviz +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} -NO_ARCH= yes -USES= python:2.7 -USE_PYTHON= distutils autoplist +USES= python USE_GITHUB= yes +USE_PYTHON= distutils autoplist concurrent + +# Enable this before running test target +# bsd.tex.mk doesnt support :test (only) depends +#USE_TEX= latex + GH_ACCOUNT= kjellmf +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m nose + .include -- cgit v1.2.3