diff options
author | Andreas K. Huettel (dilfridge) <dilfridge@gentoo.org> | 2015-10-10 11:47:56 +0200 |
---|---|---|
committer | Andreas K. Huettel (dilfridge) <dilfridge@gentoo.org> | 2015-10-10 11:47:56 +0200 |
commit | a78890b72156c3d067fc5ec305e623db495d90b1 (patch) | |
tree | 6388d886fc6571345e7a3280cec4487076dfcb31 /app-office/libreoffice | |
parent | Merge branch 'master' of git+ssh://git.gentoo.org/repo/gentoo (diff) | |
download | gentoo-a78890b72156c3d067fc5ec305e623db495d90b1.tar.gz gentoo-a78890b72156c3d067fc5ec305e623db495d90b1.tar.bz2 gentoo-a78890b72156c3d067fc5ec305e623db495d90b1.zip |
app-office/libreoffice: dont check for disk space in binary merge
Package-Manager: portage-2.2.22
Diffstat (limited to 'app-office/libreoffice')
5 files changed, 5 insertions, 5 deletions
diff --git a/app-office/libreoffice/libreoffice-4.4.9999.ebuild b/app-office/libreoffice/libreoffice-4.4.9999.ebuild index 534142975b39..7f3f1700873a 100644 --- a/app-office/libreoffice/libreoffice-4.4.9999.ebuild +++ b/app-office/libreoffice/libreoffice-4.4.9999.ebuild @@ -271,7 +271,7 @@ REQUIRED_USE=" " CHECKREQS_MEMORY="512M" -CHECKREQS_DISK_BUILD="6G" +if [[ ${MERGE_TYPE} != binary ]] ; then CHECKREQS_DISK_BUILD="6G" ; fi pkg_pretend() { local pgslot diff --git a/app-office/libreoffice/libreoffice-5.0.1.2.ebuild b/app-office/libreoffice/libreoffice-5.0.1.2.ebuild index 47bf9d130a94..a8bb49b2e41e 100644 --- a/app-office/libreoffice/libreoffice-5.0.1.2.ebuild +++ b/app-office/libreoffice/libreoffice-5.0.1.2.ebuild @@ -260,7 +260,7 @@ REQUIRED_USE=" " CHECKREQS_MEMORY="512M" -CHECKREQS_DISK_BUILD="6G" +if [[ ${MERGE_TYPE} != binary ]] ; then CHECKREQS_DISK_BUILD="6G" ; fi pkg_pretend() { local pgslot diff --git a/app-office/libreoffice/libreoffice-5.0.2.2.ebuild b/app-office/libreoffice/libreoffice-5.0.2.2.ebuild index c361e86486a4..beabdc77e951 100644 --- a/app-office/libreoffice/libreoffice-5.0.2.2.ebuild +++ b/app-office/libreoffice/libreoffice-5.0.2.2.ebuild @@ -260,7 +260,7 @@ REQUIRED_USE=" " CHECKREQS_MEMORY="512M" -CHECKREQS_DISK_BUILD="6G" +if [[ ${MERGE_TYPE} != binary ]] ; then CHECKREQS_DISK_BUILD="6G" ; fi pkg_pretend() { local pgslot diff --git a/app-office/libreoffice/libreoffice-5.0.9999.ebuild b/app-office/libreoffice/libreoffice-5.0.9999.ebuild index 626b19c87a3d..8ddf6c31ffc7 100644 --- a/app-office/libreoffice/libreoffice-5.0.9999.ebuild +++ b/app-office/libreoffice/libreoffice-5.0.9999.ebuild @@ -261,7 +261,7 @@ REQUIRED_USE=" " CHECKREQS_MEMORY="512M" -CHECKREQS_DISK_BUILD="6G" +if [[ ${MERGE_TYPE} != binary ]] ; then CHECKREQS_DISK_BUILD="6G" ; fi pkg_pretend() { local pgslot diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index 35ca08e2aaa1..0f66fbaa22b7 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -265,7 +265,7 @@ REQUIRED_USE=" " CHECKREQS_MEMORY="512M" -CHECKREQS_DISK_BUILD="6G" +if [[ ${MERGE_TYPE} != binary ]] ; then CHECKREQS_DISK_BUILD="6G" ; fi pkg_pretend() { local pgslot |