forked from Lainports/freebsd-ports
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)
16 lines
357 B
Text
16 lines
357 B
Text
The author got really tired of statements that looked like:
|
|
|
|
$heap->{job}{$job} = {
|
|
source => $source,
|
|
dest => $destination,
|
|
options => $options,
|
|
};
|
|
|
|
and later:
|
|
|
|
if ($heap->{job}{$job}{options}{wibble} eq $something_else) {
|
|
# do something...
|
|
}
|
|
|
|
This module is meant to simplify this sort of things, with
|
|
optional persistence as a bonus.
|