Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 555208 - >=net-libs/webkit-gtk-2.6.4 - pkg_setup checks for 18G disk space even for non-debug builds
Summary: >=net-libs/webkit-gtk-2.6.4 - pkg_setup checks for 18G disk space even for no...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-07-17 18:34 UTC by Ben Kohler
Modified: 2015-07-28 04:53 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 Ben Kohler gentoo-dev 2015-07-17 18:34:22 UTC
This appears to be a regression which first appeared in webkit-gtk-2.6.4.ebuild.  All previous versions have this test before the check-reqs_* calls in both pkg_pretend and pkg_setup:

if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then

Obviously this ensures that we only check for the massive 18GB disk requirement if the user has debug flags.  However starting with 2.6.4, the above test was reverted back to just:

if [[ ${MERGE_TYPE} != "binary" ]] ; then

So any source build claims to require 18G.  Please re-add the check for debug flags so not everyone sees this warning.

Thanks!
Comment 1 Alexandre Rostovtsev (RETIRED) gentoo-dev 2015-07-28 04:53:44 UTC
I fixed this two days ago while working on bug #555374; I didn't see that you had also noticed the same problem.