diff options
-rw-r--r-- | URPM.pm | 4 | ||||
-rw-r--r-- | URPM.xs | 16 |
2 files changed, 20 insertions, 0 deletions
@@ -509,6 +509,8 @@ Writes a line of information in a synthesis file. =item $package->description() +=item $package->dirnames() + =item $package->distribution() =item $package->epoch() @@ -517,6 +519,8 @@ Writes a line of information in a synthesis file. =item $package->exclusivearchs() +=item $package->filelinktos() + =item $package->files() List of files in this rpm. @@ -2271,6 +2271,22 @@ Pkg_exclusivearchs(pkg) SPAGAIN; void +Pkg_dirnames(pkg) + URPM::Package pkg + PPCODE: + PUTBACK; + xpush_simple_list_str(pkg->h, RPMTAG_DIRNAMES); + SPAGAIN; + +void +Pkg_filelinktos(pkg) + URPM::Package pkg + PPCODE: + PUTBACK; + xpush_simple_list_str(pkg->h, RPMTAG_FILELINKTOS); + SPAGAIN; + +void Pkg_files(pkg) URPM::Package pkg PPCODE: |