| Commit History - (may be incomplete: see CVSWeb link above for full details) |
| Date | By | Description |
21 Jan 2012 17:40:15
0.06
|
eadler  |
At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.
Explicit duplication > := > = and this just moves ports one step to the left
Approved by: portmgr |
03 Jul 2011 14:59:23
0.06
|
ohauer  |
-remove MD5 |
08 Jun 2010 22:20:08
0.06
|
pgollucci  |
- Update to 0.06
PR: ports/147365
Approved by: cm@therek.net (maintainer)
Submitted by: myself (pgollucci@)
Changes: http:/search.cpan.org/dist/Class-Unload/Changes |
15 Mar 2009 17:17:33
0.05
|
miwi  |
Unloads the given class by clearing out its symbol table and removing
it from %INC.
SYNOPSIS
use Class::Unload;
use Class::Inspector;
use Some::Class;
Class::Unload->unload( 'Some::Class' );
Class::Inspector->loaded( 'Some::Class' ); # Returns false
require Some::Class; # Reloads the class
WWW: http://search.cpan.org/dist/Class-Unload/
PR: ports/132406
Submitted by: Cezary Morga <cm at therek.net> |