1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00

devel/py-stack-data: Add py-stack-data 0.2.0

stack_data is a library that extracts data from stack frames and tracebacks,
particularly to display more useful tracebacks than the default. It powers the
tracebacks in IPython and futurecoder.

WWW: https://github.com/alexmojaki/stack_data
This commit is contained in:
Po-Chuan Hsieh 2022-04-30 23:56:06 +08:00
parent 1443c05140
commit 5f199df4a6
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 39 additions and 0 deletions

View File

@ -5286,6 +5286,7 @@
SUBDIR += py-squint
SUBDIR += py-sre-yield
SUBDIR += py-srsly
SUBDIR += py-stack-data
SUBDIR += py-stackexchange
SUBDIR += py-statgrab
SUBDIR += py-statsd

View File

@ -0,0 +1,30 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= stack-data
PORTVERSION= 0.2.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= stack_data-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Extract data from python stack frames and tracebacks for informative displays
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=3.4.3:devel/py-setuptools_scm@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asttokens>=0:devel/py-asttokens@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}executing>=0:devel/py-executing@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pure-eval>=0:devel/py-pure-eval@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}littleutils>=0:devel/py-littleutils@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest>=0,1:devel/py-pytest@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typeguard>=0:devel/py-typeguard@${PY_FLAVOR}
USES= python:3.5+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1651316575
SHA256 (stack_data-0.2.0.tar.gz) = 45692d41bd633a9503a5195552df22b583caf16f0b27c4e58c98d88c8b648e12
SIZE (stack_data-0.2.0.tar.gz) = 36618

View File

@ -0,0 +1,5 @@
stack_data is a library that extracts data from stack frames and tracebacks,
particularly to display more useful tracebacks than the default. It powers the
tracebacks in IPython and futurecoder.
WWW: https://github.com/alexmojaki/stack_data