From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6035139694 for ; Sun, 6 Aug 2017 12:41:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D667E0BE9; Sun, 6 Aug 2017 12:41:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37846E0BE9 for ; Sun, 6 Aug 2017 12:41:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FE6A3417AD for ; Sun, 6 Aug 2017 12:41:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D554C75DD for ; Sun, 6 Aug 2017 12:41:37 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1502023234.2348ec2b634435ce5d2dffeb428df6caab97e32f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-5.3.4.2.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2348ec2b634435ce5d2dffeb428df6caab97e32f X-VCS-Branch: master Date: Sun, 6 Aug 2017 12:41:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d1b2e6c-5204-4a72-b0c4-f748db7b4b51 X-Archives-Hash: 075545a1227354559faa111e21618d12 commit: 2348ec2b634435ce5d2dffeb428df6caab97e32f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 6 12:40:01 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 6 12:40:34 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2348ec2b app-office/libreoffice: Drop obsolete checks Gentoo-bug: 625372 Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-office/libreoffice/libreoffice-5.3.4.2.ebuild | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/app-office/libreoffice/libreoffice-5.3.4.2.ebuild b/app-office/libreoffice/libreoffice-5.3.4.2.ebuild index 2fca4af8309..c16e3878181 100644 --- a/app-office/libreoffice/libreoffice-5.3.4.2.ebuild +++ b/app-office/libreoffice/libreoffice-5.3.4.2.ebuild @@ -267,23 +267,6 @@ pkg_pretend() { CHECKREQS_DISK_BUILD="6G" fi check-reqs_pkg_pretend - - if ! $(tc-is-clang) && { [[ $(gcc-major-version) -lt 4 ]] || - [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 7 ]]; } then - eerror "Compilation with gcc older than 4.7 is not supported" - die "Too old gcc found." - fi - fi - - # Ensure pg version but we have to be sure the pg is installed (first - # install on clean system) - if use postgres && has_version dev-db/postgresql; then - local pgslot=$(postgresql-config show) - if [[ ${pgslot//.} -lt 90 ]] ; then - eerror "PostgreSQL slot must be set to 9.0 or higher." - eerror " postgresql-config set 9.0" - die "PostgreSQL slot is not set to 9.0 or higher." - fi fi }