mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -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)
8 lines
564 B
Text
8 lines
564 B
Text
Data::Object::Role::Proxyable provides a wrapper around the AUTOLOAD routine
|
|
which processes calls to routines which don't exist. Adding a build_proxy method
|
|
to the consuming class acts as a hook into routine dispatching, which processes
|
|
calls to routines which don't exist. The build_proxy routine is called as a
|
|
method and receives $self, $package, $method, and any arguments passed to the
|
|
method as a list of arguments, e.g. @args. The build_proxy method must return a
|
|
routine (i.e. a callback) or the undefined value which results in a "method
|
|
missing" error.
|