freebsd-ports/devel/p5-Data-Dump-Streamer/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 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)
2022-09-07 23:58:51 +02:00

11 lines
662 B
Plaintext

Converts a data structure into a sequence of perl statements sufficient for
recreating the original via eval. This module is very similar in concept to
Data::Dumper and Data::Dump, with the major differences being that this module
is designed to output to a stream instead of constructing its output in memory,
and that the traversal over the data structure is effectively breadth first
versus the depth first traversal done by the others.
In fact the data structure is scanned twice, first in breadth first mode to
perform structural analysis, and then in depth first mode to actually produce
the output, but obeying the depth relationships of the first pass.