Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 33396 - gri-2.12.5 fails during src_install
Summary: gri-2.12.5 fails during src_install
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Science Related Packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-13 08:04 UTC by Michal Januszewski (RETIRED)
Modified: 2003-11-17 23:08 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
the patch (gri-2.12.5-doc.patch,486 bytes, patch)
2003-11-13 08:05 UTC, Michal Januszewski (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Michal Januszewski (RETIRED) gentoo-dev 2003-11-13 08:04:05 UTC
In makefile in doc/ there is a line which tells gzip to compress non-existent files (matching: gri.info-[0-9][0-9]). This causes the whole install to fail. I'm attaching a small patch to fix this issue.
Comment 1 Michal Januszewski (RETIRED) gentoo-dev 2003-11-13 08:05:06 UTC
Created attachment 20694 [details, diff]
the patch
Comment 2 Patrick Kursawe (RETIRED) gentoo-dev 2003-11-17 02:03:08 UTC
I can't reproduce your problem - please attach a complete log of the failing emerge.
Comment 3 Brandy Westcott (RETIRED) gentoo-dev 2003-11-17 03:56:56 UTC
This error is reproducible with texinfo-4.6, but not with texinfo-4.5 (in fact the patch won't have the desired effects with texinfo-4.5.)

From the makeinfo-4.5 manpage:

       --split-size=NUM
              split Info files at size NUM (default 50000).

From the makeinfo-4.6 manpage:

       --split-size=NUM
              split Info files at size NUM (default 300000).

makeinfo will translate and split the gri.texi file, and it's the default size of the split files which causes our problems. makeinfo-4.5 splits the info file into 14 smaller files; makeinfo-4.6 splits the info file only into 3 smaller files.

How about we patch the doc/Makefile to use the --split-size=50000 flag instead?
Comment 4 Patrick Kursawe (RETIRED) gentoo-dev 2003-11-17 23:08:30 UTC
Replaced the -[0-9] -[0-9][0-9] stuff by -* - works fine for me with both texinfo versions.