mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
This package provides a handful of functions you can use to print debugging
information. There are basically two things that are useful about these functions. First, they're only one or two letters each, so you can type them really quickly while debugging. Second, they append the name of the calling function to whatever you're printing, so you can easily see where each message came from (and you don't have to hunt down print statements once you finish debugging).
This commit is contained in:
parent
74e5bc53d3
commit
8bf4ecae21
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=528787
@ -4291,6 +4291,7 @@
|
||||
SUBDIR += py-ddt
|
||||
SUBDIR += py-ddtrace
|
||||
SUBDIR += py-debtcollector
|
||||
SUBDIR += py-debugtools
|
||||
SUBDIR += py-decorator
|
||||
SUBDIR += py-decoratortools
|
||||
SUBDIR += py-deepdiff
|
||||
|
21
devel/py-debugtools/Makefile
Normal file
21
devel/py-debugtools/Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= debugtools
|
||||
PORTVERSION= 0.2.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= db@FreeBSD.org
|
||||
COMMENT= Easily print useful debugging information
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
USES= python
|
||||
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/py-debugtools/distinfo
Normal file
3
devel/py-debugtools/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1584720292
|
||||
SHA256 (debugtools-0.2.0.tar.gz) = f8bed30c8e80d0d0da5af8745da07502692c36604e039ba93b25f560eb7cf5d9
|
||||
SIZE (debugtools-0.2.0.tar.gz) = 8526
|
10
devel/py-debugtools/pkg-descr
Normal file
10
devel/py-debugtools/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
This package provides a handful of functions you can use to print debugging
|
||||
information. There are basically two things that are useful about these
|
||||
functions. First, they're only one or two letters each, so you can type
|
||||
them really quickly while debugging. Second, they append the name of the
|
||||
calling function to whatever you're printing, so you can easily see where
|
||||
each message came from (and you don't have to hunt down print statements
|
||||
once you finish debugging).
|
||||
|
||||
WWW: https://github.com/kalekundert/debugtools
|
||||
WWW: https://pypi.org/projects/debugtools
|
Loading…
Reference in New Issue
Block a user