mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 19:30:46 -04:00
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)
12 lines
509 B
Text
12 lines
509 B
Text
Parsing CSV files is nasty. It seems so simple, but it usually
|
|
isn't. Thankfully Text::CSV_XS takes care of most of that nastiness
|
|
for us.
|
|
|
|
Like many modules which have to deal with all manner of nastiness and
|
|
edge cases, however, it can be clumsy to work with in the simple case.
|
|
|
|
Thus this module.
|
|
|
|
We simply provide a little wrapper around Text::CSV_XS to streamline
|
|
the common case scenario. (Or at least my common case scenario; feel
|
|
free to write your own wrapper if this one doesn't do what you want).
|