Lines Matching refs:unpack
197 def unpack(self, archive, output=None, package=None):
206 """Unpack archives by calling a Unix utility"""
210 def unpack(self, archive, output=None, package=None):
213 return "unpack command failed"
216 """Unpack tarfiles using the builtin tarfile module"""
220 def unpack(self, archive, output=None, package=None):
705 """Unpack a downloaded package archive."""
716 rv = unpacker.unpack(self.archiveFilename, output=output)
726 """Download, unpack and install a single package.
739 return "%s: unpack: %s" % (self.fullname(), msg)
794 """We don't unpack binary packages until installing"""
833 rv = unpacker.unpack(self.archiveFilename, output=output, package=self)
850 """Unpack a source package and check that setup.py exists"""
856 return "no setup.py found after unpack of archive"
910 """We don't unpack dmg packages until installing"""