diff -u aptoncd-0.1.98/debian/changelog aptoncd-0.1.98/debian/changelog --- aptoncd-0.1.98/debian/changelog +++ aptoncd-0.1.98/debian/changelog @@ -1,3 +1,10 @@ +aptoncd (0.1.98-0ubuntu3) intrepid; urgency=low + + * APTonCD/core/scanpkgs.py: fix creation of package index by reading + everything apt-ftparchive tells us (LP: #159721) + + -- Kjell Braden Sun, 22 Jun 2008 17:12:42 +0200 + aptoncd (0.1.98-0ubuntu2) intrepid; urgency=low * APTonCD/core/dbus_helper.py: fix dbus 1.1.20 interface requirements only in patch2: unchanged: --- aptoncd-0.1.98.orig/APTonCD/core/scanpkgs.py +++ aptoncd-0.1.98/APTonCD/core/scanpkgs.py @@ -43,12 +43,10 @@ is written to the isofile path. mkisofs is called with option -r. See the mkisofs manual for details""" args = command - process = Popen(args, 1, stdout=PIPE, stderr=PIPE, cwd = path, shell = True ) - self.retval = process.poll() inFile = open(destination,'w') + process = Popen(args, 1, stdout=inFile, stderr=PIPE, cwd = path, shell = True ) + self.retval = process.poll() while (self.retval is None): - output = process.stdout.readline() - inFile.write(output) self._set_progress(-1) self.report_progress() self.retval = process.poll()