diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | URPM.pm | 2 | ||||
-rw-r--r-- | URPM.xs | 10 |
3 files changed, 15 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Version 1.63 - 9 May 2007, by Pascal "Pixel" Rigaux + +- add $trans->Element_fullname + Version 1.62 - 3 May 2007, by Pascal "Pixel" Rigaux - pass the virtual package name as a parameter to {callback_choices} in @@ -10,7 +10,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '1.62'; +our $VERSION = '1.63'; URPM->bootstrap($VERSION); @@ -2883,6 +2883,16 @@ Trans_Element_name(trans, index) OUTPUT: RETVAL +char * +Trans_Element_fullname(trans, index) + URPM::Transaction trans + int index + CODE: + rpmte te = rpmtsElement(trans->ts, index); + RETVAL = te ? (char *) rpmteNEVRA(te) : NULL; + OUTPUT: + RETVAL + void Trans_run(trans, data, ...) URPM::Transaction trans |