commit: 0dc53bf2e8d10a09a892b5427009412ced1d65b0 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Sat Jul 8 11:59:44 2017 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Sat Jul 8 11:59:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc53bf2
dev-lang/ghc: add check for disk space requirement, bug #611866 Reported-by: Mike Limansky Bug: https://bugs.gentoo.org/611866 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-lang/ghc/ghc-8.0.2.ebuild | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/dev-lang/ghc/ghc-8.0.2.ebuild b/dev-lang/ghc/ghc-8.0.2.ebuild index 61c62ccf6fa..4ba077cf90b 100644 --- a/dev-lang/ghc/ghc-8.0.2.ebuild +++ b/dev-lang/ghc/ghc-8.0.2.ebuild @@ -16,7 +16,7 @@ fi inherit autotools bash-completion-r1 eutils flag-o-matic ghc-package inherit multilib pax-utils toolchain-funcs versionator prefix - +inherit check-reqs DESCRIPTION="The Glasgow Haskell Compiler" HOMEPAGE="http://www.haskell.org/ghc/" @@ -327,7 +327,21 @@ relocate_ghc() { rm "$gp_back" } +pkg_pretend() { + # These are pessimistic values (slightly bigger than worst-case) + # Worst case is UNREG USE=profile ia64. See bug #611866 for some + # numbers on various arches. + CHECKREQS_DISK_BUILD=8G + CHECKREQS_DISK_USR=2G + # USE=binary roughly takes + use binary && CHECKREQS_DISK_BUILD=4G + + check-reqs_pkg_pretend +} + pkg_setup() { + check-reqs_pkg_setup + # quiet portage about prebuilt binaries use binary && QA_PREBUILT="*"
