- Create a python3 version of devel/py-coloredlogs.

This commit is contained in:
Marcelo Araujo 2017-06-02 11:01:16 +00:00
parent 6a9a91aa6a
commit 657a75f43b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=442370
2 changed files with 10 additions and 2 deletions

View file

@ -12,10 +12,10 @@ COMMENT= Colored terminal output for Python logging module
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}humanfriendly>=2.1:textproc/py-humanfriendly
RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}humanfriendly>=2.1:textproc/py-humanfriendly
NO_ARCH= yes
USES= python
USES?= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View file

@ -0,0 +1,8 @@
MASTERDIR= ${.CURDIR}/../py-coloredlogs
USES= python:3.3+
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}humanfriendly>=2.1:textproc/py3-humanfriendly
.include "${MASTERDIR}/Makefile"