pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils
Module Name: pkgsrc
Committed By: adam
Date: Sun Jan 23 19:34:47 UTC 2022
Modified Files:
pkgsrc/sysutils: Makefile
Added Files:
pkgsrc/sysutils/py-stack-data: DESCR Makefile PLIST distinfo
Log Message:
py-stack-data: added version 0.1.4
This is a library that extracts data from stack frames and tracebacks,
particularly to display more useful tracebacks than the default.
To generate a diff of this commit:
cvs rdiff -u -r1.984 -r1.985 pkgsrc/sysutils/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/py-stack-data/DESCR \
pkgsrc/sysutils/py-stack-data/Makefile \
pkgsrc/sysutils/py-stack-data/PLIST \
pkgsrc/sysutils/py-stack-data/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/Makefile
diff -u pkgsrc/sysutils/Makefile:1.984 pkgsrc/sysutils/Makefile:1.985
--- pkgsrc/sysutils/Makefile:1.984 Sat Jan 22 17:52:53 2022
+++ pkgsrc/sysutils/Makefile Sun Jan 23 19:34:47 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.984 2022/01/22 17:52:53 thorpej Exp $
+# $NetBSD: Makefile,v 1.985 2022/01/23 19:34:47 adam Exp $
#
COMMENT= System utilities
@@ -564,6 +564,7 @@ SUBDIR+= py-salt-pepper
SUBDIR+= py-setconf
SUBDIR+= py-setproctitle
SUBDIR+= py-sh
+SUBDIR+= py-stack-data
SUBDIR+= py-structlog
SUBDIR+= py-supervisor
SUBDIR+= py-syslog-ng
Added files:
Index: pkgsrc/sysutils/py-stack-data/DESCR
diff -u /dev/null pkgsrc/sysutils/py-stack-data/DESCR:1.1
--- /dev/null Sun Jan 23 19:34:47 2022
+++ pkgsrc/sysutils/py-stack-data/DESCR Sun Jan 23 19:34:47 2022
@@ -0,0 +1,2 @@
+This is a library that extracts data from stack frames and tracebacks,
+particularly to display more useful tracebacks than the default.
Index: pkgsrc/sysutils/py-stack-data/Makefile
diff -u /dev/null pkgsrc/sysutils/py-stack-data/Makefile:1.1
--- /dev/null Sun Jan 23 19:34:47 2022
+++ pkgsrc/sysutils/py-stack-data/Makefile Sun Jan 23 19:34:47 2022
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1 2022/01/23 19:34:47 adam Exp $
+
+DISTNAME= stack_data-0.1.4
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
+CATEGORIES= sysutils python
+MASTER_SITES= ${MASTER_SITE_PYPI:=s/stack-data/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/alexmojaki/stack_data
+COMMENT= Extract data from Python stack frames and tracebacks
+LICENSE= mit
+
+DEPENDS+= ${PYPKGPREFIX}-asttokens>0:../../lang/py-asttokens
+DEPENDS+= ${PYPKGPREFIX}-executing>0:../../lang/py-executing
+DEPENDS+= ${PYPKGPREFIX}-pure-eval>0:../../lang/py-pure-eval
+#TEST_DEPENDS+= ${PYPKGPREFIX}-littleutils>0:../../devel/py-littleutils
+TEST_DEPENDS+= ${PYPKGPREFIX}-pygments>0:../../textproc/py-pygments
+TEST_DEPENDS+= ${PYPKGPREFIX}-test>0:../../devel/py-test
+#TEST_DEPENDS+= ${PYPKGPREFIX}-typeguard>0:../../devel/py-typeguard
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE= 27
+
+do-test:
+ cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/sysutils/py-stack-data/PLIST
diff -u /dev/null pkgsrc/sysutils/py-stack-data/PLIST:1.1
--- /dev/null Sun Jan 23 19:34:47 2022
+++ pkgsrc/sysutils/py-stack-data/PLIST Sun Jan 23 19:34:47 2022
@@ -0,0 +1,21 @@
+@comment $NetBSD: PLIST,v 1.1 2022/01/23 19:34:47 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/stack_data/__init__.py
+${PYSITELIB}/stack_data/__init__.pyc
+${PYSITELIB}/stack_data/__init__.pyo
+${PYSITELIB}/stack_data/core.py
+${PYSITELIB}/stack_data/core.pyc
+${PYSITELIB}/stack_data/core.pyo
+${PYSITELIB}/stack_data/formatting.py
+${PYSITELIB}/stack_data/formatting.pyc
+${PYSITELIB}/stack_data/formatting.pyo
+${PYSITELIB}/stack_data/utils.py
+${PYSITELIB}/stack_data/utils.pyc
+${PYSITELIB}/stack_data/utils.pyo
+${PYSITELIB}/stack_data/version.py
+${PYSITELIB}/stack_data/version.pyc
+${PYSITELIB}/stack_data/version.pyo
Index: pkgsrc/sysutils/py-stack-data/distinfo
diff -u /dev/null pkgsrc/sysutils/py-stack-data/distinfo:1.1
--- /dev/null Sun Jan 23 19:34:47 2022
+++ pkgsrc/sysutils/py-stack-data/distinfo Sun Jan 23 19:34:47 2022
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/01/23 19:34:47 adam Exp $
+
+BLAKE2s (stack_data-0.1.4.tar.gz) = 20c170d6fc758e2b0d7153789a83f64ee5b9862fc57050a98f29df7d5eac7fdf
+SHA512 (stack_data-0.1.4.tar.gz) = 0dc697513adde1f275eec96291f8ee937bd24b25ba2ee51707f973e8eb30c740159a3b0211ec8617a282ccc22c0db0bd6e75244e0778390d744d64950aaa9ba0
+Size (stack_data-0.1.4.tar.gz) = 36049 bytes
Home |
Main Index |
Thread Index |
Old Index