aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--URPM.pm6
2 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 64bf644..cb67aa0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- fix callback parameters doc
+
Version 5.20 - 16 September 2018
- restore support for rpm < 4.14.2
diff --git a/URPM.pm b/URPM.pm
index 2ad8f5f..77a5ae6 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -887,13 +887,13 @@ Recognized options are:
They roughly correspond to command-line options to rpm(1).
-'callback_open' signature is (C<$data>, C<$cb_type>, C<$pkg_id>, C<pkg_name>). It _must_ return a file handler for the asked package.
+'callback_open' signature is (C<$data>, C<$cb_type>, C<$pkg_id>). It _must_ return a file handler for the asked package.
-'callback_close' signature is (C<$data>, C<$cb_type>, C<$pkg_id>, C<pkg_name>). It is called just before URPM close the fd for the installed package.
+'callback_close' signature is (C<$data>, C<$cb_type>, C<$pkg_id>). It is called just before URPM close the fd for the installed package.
C<$cb_type> is one of 'open' or 'close'.
-Other Callbacks signature is callback(C<$data>, C<$cb_type>, C<$pkg_id>, C<$subtype>, C<$amout>, C<$total>, C<pkg_name>)
+Other Callbacks signature is callback(C<$data>, C<$cb_type>, C<$pkg_id>, C<$subtype>, C<$amout>, C<$total>)
C<$cb_type> is one of 'elem', 'error', 'inst', 'trans' or 'uninst'. C<$subtype> can be 'start', 'progress' or 'stop'.
For 'error', it can be 'cpio', 'script' or 'unpack'.