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 ADBC7139694 for ; Sun, 11 Jun 2017 16:55:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12A7321C093; Sun, 11 Jun 2017 16:55:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8F9E21C093 for ; Sun, 11 Jun 2017 16:55:56 +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 15DD1341815 for ; Sun, 11 Jun 2017 16:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A68CA747B for ; Sun, 11 Jun 2017 16:55:54 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1497200145.eafa08869f78d5c5bf1421bdde6912c01de3f15e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mpv/mpv-9999.ebuild X-VCS-Directories: media-video/mpv/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: eafa08869f78d5c5bf1421bdde6912c01de3f15e X-VCS-Branch: master Date: Sun, 11 Jun 2017 16:55:54 +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: c5dae938-8efb-4eb4-a9c6-07d806f90890 X-Archives-Hash: da34d5fbf036d8d0659536a6c478b2e9 commit: eafa08869f78d5c5bf1421bdde6912c01de3f15e Author: Ilya Tumaykin gmail com> AuthorDate: Tue May 30 16:19:19 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jun 11 16:55:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eafa0886 media-video/mpv: remove obsolete compiler check in 9999 Older GCC versions are now masked. Package-Manager: Portage-2.3.6, Repoman-2.3.2 media-video/mpv/mpv-9999.ebuild | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 273d78e0d67..feb4d5ee385 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -142,21 +142,7 @@ PATCHES=( "${FILESDIR}/${PN}-0.23.0-make-libavdevice-check-accept-libav.patch" ) -mpv_check_compiler() { - if [[ ${MERGE_TYPE} != "binary" ]]; then - if tc-is-gcc && [[ $(gcc-major-version) -lt 4 || \ - ( $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 5 ) ]]; then - die "${PN} requires GCC>=4.5." - fi - fi -} - -pkg_pretend() { - mpv_check_compiler -} - pkg_setup() { - mpv_check_compiler [[ ${MERGE_TYPE} != "binary" ]] && python_setup }