On Sat, Nov 15, 2008 at 07:57:59PM +0100, Jan Hlodan wrote: > Yes, I didn't re-compress 'none' because I tried to publish whole > directory 'archive' into my localhost. > What I did but manifest looks pretty different than original manifest > of SUNWslim-utils package. > > Now I tried to re-compress 'none' back into 'none.bz2' > > find archive -print |cpio -o |bzip2 >none.bz2
That's going to put the directory "archive" into each path in the cpio archive, giving you te KeyError you saw. You need to "cd archive; find . -print ... > ../none.bz2" Danek > I am thinking about option with application 'mc' > It allows me to edit compressed archive directly. So I don't have to > decompress/compress archive. > But as soon as I edit archive, I can't publish this package any more. And that's somehow making the archive no longer contain the data anymore, so it goes looking in the reloc directory, and fails. It doesn't look like mc works for this purpose. Danek