svn commit: r528787 - in head/devel: . py-debugtools
Diane Bruce
db at FreeBSD.org
Fri Mar 20 16:15:12 UTC 2020
Author: db
Date: Fri Mar 20 16:15:10 2020
New Revision: 528787
URL: https://svnweb.freebsd.org/changeset/ports/528787
Log:
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).
Added:
head/devel/py-debugtools/
head/devel/py-debugtools/Makefile (contents, props changed)
head/devel/py-debugtools/distinfo (contents, props changed)
head/devel/py-debugtools/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Mar 20 15:53:17 2020 (r528786)
+++ head/devel/Makefile Fri Mar 20 16:15:10 2020 (r528787)
@@ -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
Added: head/devel/py-debugtools/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-debugtools/Makefile Fri Mar 20 16:15:10 2020 (r528787)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME= debugtools
+PORTVERSION= 0.2.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= db at 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>
Added: head/devel/py-debugtools/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-debugtools/distinfo Fri Mar 20 16:15:10 2020 (r528787)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1584720292
+SHA256 (debugtools-0.2.0.tar.gz) = f8bed30c8e80d0d0da5af8745da07502692c36604e039ba93b25f560eb7cf5d9
+SIZE (debugtools-0.2.0.tar.gz) = 8526
Added: head/devel/py-debugtools/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-debugtools/pkg-descr Fri Mar 20 16:15:10 2020 (r528787)
@@ -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
More information about the svn-ports-all
mailing list