diff options
author | Necoro <> | 2008-01-14 22:14:32 +0000 |
---|---|---|
committer | Necoro <> | 2008-01-14 22:14:32 +0000 |
commit | 8c5320ff7a2be84e3260ef614059ddc6223d7f30 (patch) | |
tree | 231652506e35e01d1b4f3b451409c08bf750f838 /portato/backend/package.py | |
parent | 1f2f723d4f380055e078eb780267ad563158c65d (diff) | |
download | portato-8c5320ff7a2be84e3260ef614059ddc6223d7f30.tar.gz portato-8c5320ff7a2be84e3260ef614059ddc6223d7f30.tar.bz2 portato-8c5320ff7a2be84e3260ef614059ddc6223d7f30.zip |
Diffstat (limited to '')
-rw-r--r-- | portato/backend/package.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/portato/backend/package.py b/portato/backend/package.py index 8df7dae..4f90765 100644 --- a/portato/backend/package.py +++ b/portato/backend/package.py @@ -330,6 +330,15 @@ class Package (_Package): raise NotImplementedError + def get_files (self): + """ + Returns an iterator over the installed files of a package. + If the package is not installed, the iterator should be "empty". + + @returns: the installed files + @rtype: string<iterator> + """ + def get_package_settings(self, var, tree = None): """Returns a package specific setting, such as DESCRIPTION, SRC_URI, IUSE ... |