X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fbinary.py;h=bd7f1cc194a854207a3d858eff4095db0ab5beb5;hb=695092c7d82bde88177882cbc8231937492a0540;hp=29c5c2ad5029c69e35d0e92013b2a345b7209abe;hpb=b58774e49de73e6ec962720cc2d86c0002036929;p=dak.git diff --git a/daklib/binary.py b/daklib/binary.py index 29c5c2ad..bd7f1cc1 100755 --- a/daklib/binary.py +++ b/daklib/binary.py @@ -56,10 +56,10 @@ import utils class Binary(object): def __init__(self, filename, reject=None): """ - @ptype filename: string + @type filename: string @param filename: path of a .deb - @ptype reject: function + @type reject: function @param reject: a function to log reject messages to """ self.filename = filename @@ -138,11 +138,11 @@ class Binary(object): self.__scan_ar() rejected = not self.chunks if relaxed: - if en(self.chunks) < 3: + if len(self.chunks) < 3: rejected = True self.reject("%s: found %d chunks, expected at least 3." % (self.filename, len(self.chunks))) else: - if en(self.chunks) != 3: + if len(self.chunks) != 3: rejected = True self.reject("%s: found %d chunks, expected 3." % (self.filename, len(self.chunks))) if self.chunks[0] != "debian-binary": @@ -165,12 +165,12 @@ class Binary(object): the hopefully near future, it should also include gathering info from the control file. - @ptype bootstrap_id: int + @type bootstrap_id: int @param bootstrap_id: the id of the binary these packages should be associated or zero meaning we are not bootstrapping so insert into a temporary table - @return True if the deb is valid and contents were imported + @return: True if the deb is valid and contents were imported """ result = False rejected = not self.valid_deb(relaxed) @@ -212,12 +212,11 @@ class Binary(object): the hopefully near future, it should also include gathering info from the control file. - @ptype bootstrap_id: int - @param bootstrap_id: the id of the binary these packages - should be associated or zero meaning we are not bootstrapping - so insert into a temporary table + @type package: string + @param package: the name of the package to be checked - @return True if the deb is valid and contents were imported + @rtype: boolean + @return: True if the deb is valid and contents were imported """ rejected = not self.valid_deb(True) self.__unpack()