Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 640906 - sys-devel/llvm-5.0.1_rc2 USE=-doc tries to install man pages but SRC_URI does not offer the tarball
Summary: sys-devel/llvm-5.0.1_rc2 USE=-doc tries to install man pages but SRC_URI does...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: LLVM support project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-12-13 14:57 UTC by Helmut Jarausch
Modified: 2017-12-13 16:50 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Helmut Jarausch 2017-12-13 14:57:23 UTC
The ebuild of sys-devel/llvm-5.0.1_rc2  is broken

SRC_URI="http://prereleases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz"
#	!doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-manpages-${PV}.tar.bz2 )"

does not download llvm-manpages-${PV}.tar.bz2

while in the install part there is
	# install pre-generated manpages
	if ! use doc; then
		# (doman does not support custom paths)
		insinto "/usr/lib/llvm/${SLOT}/share/man/man1"
		doins "${WORKDIR}/llvm-manpages-${PV}/llvm"/*.1
	fi

	docompress "/usr/lib/llvm/${SLOT}/share/man"

which fails since there is no llvm-manpage-....
Comment 1 Larry the Git Cow gentoo-dev 2017-12-13 16:50:48 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8126e9875bc1c90cc78b4952eea57605b0277a0e

commit 8126e9875bc1c90cc78b4952eea57605b0277a0e
Author:     Michał Górny <mgorny@gentoo.org>
AuthorDate: 2017-12-13 16:38:11 +0000
Commit:     Michał Górny <mgorny@gentoo.org>
CommitDate: 2017-12-13 16:50:38 +0000

    sys-devel/llvm: Comment out manpage install for RCs
    
    Closes: https://bugs.gentoo.org/640906

 sys-devel/llvm/llvm-5.0.1_rc2.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)