To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59183
User cloph changed the following:
What |Old value |New value
================================================================================
Status|RESOLVED |REOPENED
--------------------------------------------------------------------------------
Resolution|FIXED |
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Fri Oct 13 08:43:04 -0700
2006 -------
reopen.
slackware's package tools are so crappy...
When you create the package with a version other than tar-1.13, then the tools
cannot cope with it.
When the files are included like this:
./dir/file
./dir/file2
the tools cannot extract the description, since it tries to do
"tar -zt install < packagefile"
which fails, since it would have to specify "./install" in this case
When the files are listed like this:
dir/file
dir/file2
the tools can extract the description, but it creates an invalid file-list for
removal. (since it only checks whether there is one single line in the
content-list of the file matching "^./" - if not, then it assumes that all files
are prefixed with that. It doesn't even bother to check whether any file is
prefixed with that at all. (and that with the whitty remark of
# Some dumb bunny built a package with something other than makepkg. Bad!
# Oh well. Bound to happen. Par for the course. Fix it and move on...
echo './' >> $ADM_DIR/packages/$shortname
cat $TMP/$shortname | grep -v '^./$' | cut -b3- >>
$ADM_DIR/packages/$shortname
It even has a grep-statement in the "fix broken package" part, but notice how
dumb this grep statement is? They echo it into the file only to exclue it
afterwards. - Instead of only applying the cut only to lines really starting
with ./
And of course the useless use of cat award goes to the authors as well.
But enough of the rant - I circumvented this by first creating an empty tar
(with only "./" and then appending the other entries)...
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]