freebsd-ports/textproc/p5-Text-CSV-Hashify/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

10 lines
701 B
Text

Text::CSV::Hashify is designed for the case where you simply want to turn a CSV
file into a Perl hash. In particular, it is designed for the case where (a) the
CSV file's first record is a list of fields in the ancestral database table and
(b) one field (column) of which functions as a primary key, i.e., each record's
entry in that field is distinct from every other record's entry therein.
Text::CSV::Hashify turns that kind of CSV file into one big hash of hashes.
Elements of this hash are keyed on the entries in the designated primary key
field and the value for each element is a hash reference of all the data in a
particular database record (including the primary key field and its value).