fastports

tblib 3.2.2

devel/py-tblib

Traceback serialization library

Category
devel
Maintainer
sunpoet@FreeBSD.org
WWW
https://python-tblib.readthedocs.io/en/latest/ https://github.com/ionelmc/python-tblib
License
BSD2CLAUSE
USES
python

Description

Serialization library for Exceptions and Tracebacks.

It allows you to:
- Pickle tracebacks and raise exceptions with pickled tracebacks in different
  processes. This allows better error handling when running code over multiple
  processes (imagine multiprocessing, billiard, futures, celery etc).
- Create traceback objects from strings (the from_string method). No pickling is
  used.
- Serialize tracebacks to/from plain dicts (the from_dict and to_dict methods).
  No pickling is used.
- Raise the tracebacks created from the aforementioned sources.
- Pickle an Exception together with its traceback and exception chain (raise ...
  from ...) (Python 3 only)

Again, note that using the pickle support is completely optional. You are solely
responsible for security problems should you decide to use the pickle support.

Dependencies

Commit History

may be incomplete — full history at freebsd-ports on GitHub

Commit Credits Log message
3.2.2
156b2ef401 files touched
Po-Chuan Hsieh (sunpoet)
devel/py-tblib: Update to 3.2.2
Changes:	https://github.com/ionelmc/python-tblib/blob/master/CHANGELOG.rst
		https://python-tblib.readthedocs.io/en/latest/changelog.html
3.2.1
3eacfad198 files touched
Po-Chuan Hsieh (sunpoet)
devel/py-tblib: Update to 3.2.1
Changes:	https://github.com/ionelmc/python-tblib/blob/master/CHANGELOG.rst
		https://python-tblib.readthedocs.io/en/latest/changelog.html
3.2.0
3b36d78239 files touched
Po-Chuan Hsieh (sunpoet)
devel/py-tblib: Update to 3.2.0
- Update COMMENT
- Update WWW
- Convert to USE_PYTHON=pep517
- Update pkg-descr
- Take maintainership

Changes:	https://github.com/ionelmc/python-tblib/blob/master/CHANGELOG.rst
		https://python-tblib.readthedocs.io/en/latest/changelog.html
1.7.0
e13b635dd3 files touched
Danilo G. Baio (dbaio)
devel/py-tblib: Drop maintainer'ship
1.7.0
06a08e69f3 files touched
Charlie Li (vishwin)
python: bump all USE_PYTHON=distutils consumers after RUN_DEPENDS removal
Any missed ports, feel free to bump.

Any ports that need setuptools at runtime can have the devel/py-setuptools
manually added back to RUN_DEPENDS, but understand that this practice
is deprecated; see CHANGES for details.
1.7.0
3d9a815d9c files touched
Rene Ladan (rene)
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
1.7.0
77d68471ad files touched
Dmitry Marakasov (amdmi3)
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR:			267994
Differential revision:	D37518
Approved by:		bapt
1.7.0
fb16dfecae files touched
Stefan Eßer (se)
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
1.7.0
b7f05445c0 files touched
Stefan Eßer (se)
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
1.7.0
cf118ccf87 files touched
Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday. Reported by: lwhsu
1.7.0
305f148f48 files touched
Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
1.7.0
aa7a6c429e files touched
Antoine Brodin (antoine)
Drop python 2.7 support from a few ports
With hat:	portmgr
1.7.0
7b3fd6c936 files touched
Danilo G. Baio (dbaio)
devel/py-tblib: Update to 1.7.0
Changelog:	https://github.com/ionelmc/python-tblib/blob/v1.7.0/CHANGELOG.rst
1.6.0
cf29aa9f9f files touched
Sunpoet Po-Chuan Hsieh (sunpoet)
Update to 1.6.0
Changes:	https://github.com/ionelmc/python-tblib/blob/master/CHANGELOG.rst
PR:		244415
Submitted by:	sunpoet (myself)
Approved by:	dbaio (maintainer)
1.5.0
c5b108ff32 files touched
Danilo G. Baio (dbaio)
devel/py-tblib: Update to 1.5.0
Changelog:	https://github.com/ionelmc/python-tblib/blob/v1.5.0/CHANGELOG.rst
1.4.0
55e94e69fa files touched
Danilo G. Baio (dbaio)
devel/py-tblib: Update to 1.4.0
Changelog:	https://github.com/ionelmc/python-tblib/blob/v1.4.0/CHANGELOG.rst

PR:		239710
Submitted by:	wen
1.3.2
c637402081 files touched
Dmitry Marakasov (amdmi3)
Switch all pypi.python.org WWWs to a new PyPi home pypi.org where they now redirect to anyway. All new urls checked to return 200, I've fixed a couple of them in the process.
Approved by:	portmgr blanket, mat
1.3.2
50be002ee4 files touched
Danilo G. Baio (dbaio)
Fix order of variables
Ports maintained by me in the devel category.
1.3.2
f8cc2c102f files touched
Danilo G. Baio (dbaio)
Update my email address
Approved by:	garga (mentor)
Differential Revision:	https://reviews.freebsd.org/D10648
1.3.2
da93dde3b3 files touched
Carlos J. Puga Medina (cpm)
devel/py-tblib: update to 1.3.2
Changes: https://github.com/ionelmc/python-tblib/blob/master/CHANGELOG.rst

PR:		218669
Submitted by:	Danilo G. Baio <dbaio@bsd.com.br> (maintainer)
1.3.1
2e1383cee0 files touched
Bartek Rutkowski (robak)
devel/py-tblib: update 1.3.0 -> 1.3.1
PR:		218199
Submitted by:	Danilo G. Baio <dbaio@bsd.com.br> (maintainer)
1.3.0
04cae8fb6d files touched
Kurt Jaeger (pi)
New port: devel/py-tblib
Pickle tracebacks and raise exceptions with pickled tracebacks in
different processes. This allows better error handling when running
code over multiple processes (imagine multiprocessing, billiard,
futures, celery etc).
Parse traceback strings and raise with the parsed tracebacks.

WWW: https://pypi.python.org/pypi/tblib

PR:		211051
Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>