Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 466874 - app-emacs/slime-2.0_p20101103 with sys-apps/texinfo-5.1 - make: *** [slime.info] Error 1
Summary: app-emacs/slime-2.0_p20101103 with sys-apps/texinfo-5.1 - make: *** [slime.in...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Mark Wright
URL: http://common-lisp.net/project/slime/
Whiteboard:
Keywords:
Depends on:
Blocks: texinfo-5.1
  Show dependency tree
 
Reported: 2013-04-23 09:21 UTC by jamesjames
Modified: 2013-10-03 07:43 UTC (History)
3 users (show)

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


Attachments
full build log (slime_build.log,29.97 KB, text/plain)
2013-04-23 09:22 UTC, jamesjames
Details

Note You need to log in before you can comment on or make changes to this bug.
Description jamesjames 2013-04-23 09:21:14 UTC
Failed to emerge app-emacs/slime-2.0_p20101103

Reproducible: Always




Wrote /var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103/contrib/slime-typeout-frame.elc
Wrote /var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103/contrib/slime-xref-browser.elc
[A[130C [34;01m[ [32;01mok[34;01m ][0m
make -j4 -j1 -C doc slime.info 
make: Entering directory `/var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103/doc'
cat ../ChangeLog | \
sed -ne '/^[0-9]/{s/^[^ ]* *//; s/ *<.*//; p;}' | \
sort | \
uniq -c | \
sort -nr| \
sed -e 's/^[^A-Z]*//' | \
awk -f texinfo-tabulate.awk | \
sed -e "s/\o341/@'a/g" | \
        sed -e "s/\o355/@'{@dotless{i}}/g" | \
sed -e "s/\o351/@'e/g" | \
sed -e "s/\o361/@~n/g" | \
sed -e 's/\o370/@o{}/g' \
> contributors.texi
makeinfo slime.texi
slime.texi:17: warning: multiple @settitle
slime.texi:536: @itemx must follow @item
slime.texi:376: warning: node up `CVS Incantations' in menu `CVS' and in sectioning `Downloading' differ
make: *** [slime.info] Error 1
make: Leaving directory `/var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103/doc'
emake failed
 [31;01m*[0m ERROR: app-emacs/slime-2.0_p20101103 failed (compile phase):
 [31;01m*[0m   (no error message)
 [31;01m*[0m 
 [31;01m*[0m Call stack:
 [31;01m*[0m     ebuild.sh, line  93:  Called src_compile
 [31;01m*[0m   environment, line 2471:  Called die
 [31;01m*[0m The specific snippet of code:
 [31;01m*[0m       emake -j1 -C doc slime.info || die;
 [31;01m*[0m 
 [31;01m*[0m If you need support, post the output of `emerge --info '=app-emacs/slime-2.0_p20101103'`,
 [31;01m*[0m the complete build log and the output of `emerge -pqv '=app-emacs/slime-2.0_p20101103'`.
 [31;01m*[0m The complete build log is located at '/var/tmp/portage/app-emacs/slime-2.0_p20101103/temp/build.log'.
 [31;01m*[0m The ebuild environment file is located at '/var/tmp/portage/app-emacs/slime-2.0_p20101103/temp/environment'.
 [31;01m*[0m Working directory: '/var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103'
 [31;01m*[0m S: '/var/tmp/portage/app-emacs/slime-2.0_p20101103/work/slime-2.0_p20101103'
Comment 1 jamesjames 2013-04-23 09:22:08 UTC
Created attachment 346366 [details]
full build log
Comment 2 jamesjames 2013-04-23 10:21:21 UTC
Problem in sys-apps/texinfo-5.1

I add =sys-apps/texinfo-5.1 
in  /etc/portage/package.mask

The problem is solved.
Comment 3 Mark Wright gentoo-dev 2013-10-03 06:25:17 UTC
Fixed, by adding this sed:

	sed -i "s/@itemx INIT-FUNCTION/@item INIT-FUNCTION/" doc/slime.texi \
		|| die "sed doc/slime.texi failed"

as texinfo-5.1 fails with an error if @itemx is not immediately proceeded
by @item or @itemx, so change it to @item to correct this error in the
slime.texi file.