Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 475598 - sys-libs/libcxx-9999 fails to call subversion_src_unpack, wrong inherit order.
Summary: sys-libs/libcxx-9999 fails to call subversion_src_unpack, wrong inherit order.
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Alexis Ballier
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-03 08:58 UTC by Michael Weber (RETIRED)
Modified: 2013-07-03 18:38 UTC (History)
2 users (show)

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 Michael Weber (RETIRED) gentoo-dev 2013-07-03 08:58:15 UTC
In the current situation, base is inherited after subversion, and base_src_unpack gets called for nothing, failing to fetch/unpack the svn data.

I looked into the merge logs and revision history of base.eclass and this ebuild, I looks like this situation exists at least since January.

--- libcxx-9999.ebuild
+++ libcxx-9999.ebuild
@@ -8,7 +8,7 @@
 
 [ "${PV%9999}" != "${PV}" ] && SCM="subversion" || SCM=""
 
-inherit cmake-utils ${SCM} base flag-o-matic toolchain-funcs multilib
+inherit cmake-utils base ${SCM} flag-o-matic toolchain-funcs multilib
 
 DESCRIPTION="New implementation of the C++ standard library, targeting C++11"
 HOMEPAGE="http://libcxx.llvm.org/"
Comment 1 Alexis Ballier gentoo-dev 2013-07-03 18:38:30 UTC
it used to work and i dont know why now it deosnt but you're right, applied, thank