d69e468d6f
Twiggy is a Pythonic logger. As near as I can tell, Twiggy is the first totally new design for a logger since log4j was developed in 1996. Let me say that again: Twiggy is the first new logger in 15 years. Twiggy: * Uses new-style format strings by default. Way nicer than % (printf). * Includes easy support for structured logging * Loosely couples loggers and outputs for configuration * Supports asynchronous logging using the multiprocessing module * Solves Your Problems. Pets Your Puppy. WWW: http://twiggy.wearpants.org
24 lines
514 B
Makefile
24 lines
514 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twiggy
|
|
PORTVERSION= 0.4.7
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Twiggy-${PORTVERSION}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Pythonic logger
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} TWIGGY_UNDER_TEST=1 \
|
|
${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|