summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-06-26 14:58:03 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-06-26 14:58:03 +0200
commit2fa695915937f56a4d150b29a41859ae7e22abf1 (patch)
treefa983685bd89cb94235145e21a1580583453e7db
parentebb65d59c03b6b6ed3a4ed40a74fcc854515f510 (diff)
Document hook helper functions
-rw-r--r--man/7/caretaker.pod23
1 files changed, 23 insertions, 0 deletions
diff --git a/man/7/caretaker.pod b/man/7/caretaker.pod
index dd406d8..a856340 100644
--- a/man/7/caretaker.pod
+++ b/man/7/caretaker.pod
@@ -252,6 +252,29 @@ Sourced before a package is removed
=back
+The following helper functions can be used for data aggregation into files /
+directories. It should be noted that only the first argument is mandatory,
+they work fine with constructs like C<< collect_into_file
+${PKG_DIR}/.collected/ssh/config ${PKG_DIR}/*/provides/ssh/config(N) >>.
+
+=over
+
+=item B<collect_into_directory> I<directory> [I<files ...>]
+
+For each I<file>, create an absolute symlink pointing to it in I<directory>.
+
+Note that I<directory> must be used exclusively by this function: every time
+it runs, the directory will be wiped clean of all symlinks to make sure there
+are no broken ones (which would otherwise occur when removing a related
+package).
+
+=item B<collect_into_file> I<outfile> [I<infiles ...>]
+
+Concatenate the content of I<infiles> into I<outfile>. If no I<infiles> are
+specified, produces an empty I<outfile>.
+
+=back
+
=head1 COLLECTED PACKAGE FILES
These files reside in F<$PKG_DIR/.collected> (subject to change).