Age | Commit message (Collapse) | Author | Files | Lines |
|
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
|
|
|
|
can handle packages having no PLIST files.
|
|
|
|
The Cache modules are designed to assist a developer in persisting
data for a specified period of time. Often these modules are used
in web applications to store data locally to save repeated and
redundant expensive calls to remote machines or databases.
The Cache interface is implemented by derived classes that store
cached data in different manners (such as as files on a filesystem,
or in memory).
To use the Cache system, a cache implementation must be chosen to
suit your needs. The most common is Cache::File, which is suitable
for sharing data between multiple invocations and even between
concurrent processes.
|