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 E04D1138359 for ; Fri, 25 Sep 2020 22:24:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BB99E0801; Fri, 25 Sep 2020 22:24:33 +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 DEBC8E0801 for ; Fri, 25 Sep 2020 22:24:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C45A633FA71 for ; Fri, 25 Sep 2020 22:24:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A136318 for ; Fri, 25 Sep 2020 22:24:30 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1601072665.1ea3a0c8927324b92203e3306fe3e033f4b6124b.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/apt-cacher-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild X-VCS-Directories: net-misc/apt-cacher-ng/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 1ea3a0c8927324b92203e3306fe3e033f4b6124b X-VCS-Branch: master Date: Fri, 25 Sep 2020 22:24:30 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1c458277-5259-4113-a7e2-32f0f606b59c X-Archives-Hash: b2ccb31682baaf79852478f70e1a4781 commit: 1ea3a0c8927324b92203e3306fe3e033f4b6124b Author: Jeroen Roovers gentoo org> AuthorDate: Fri Sep 25 22:23:40 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Sep 25 22:24:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea3a0c8 net-misc/apt-cacher-ng: Drop GCC >=4.8 check Package-Manager: Portage-3.0.8, Repoman-3.0.1 Closes: https://bugs.gentoo.org/731278 Signed-off-by: Jeroen Roovers gentoo.org> net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild | 11 +---------- net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild | 11 +---------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild b/net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild index f118d28f011..4fc61df2c95 100644 --- a/net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild +++ b/net-misc/apt-cacher-ng/apt-cacher-ng-3.5_p1-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils toolchain-funcs user +inherit cmake-utils user DESCRIPTION="Yet another caching HTTP proxy for Debian/Ubuntu software packages" HOMEPAGE=" @@ -32,7 +32,6 @@ COMMON_DEPEND=" BDEPEND=" ${COMMON_DEPEND} dev-util/cmake - >sys-devel/gcc-4.8 virtual/pkgconfig " RDEPEND=" @@ -48,14 +47,6 @@ PATCHES=( ) S=${WORKDIR}/${P/_*} -pkg_pretend() { - if [[ $(gcc-major-version) -lt 4 ]]; then - die "GCC 4.8 or greater is required but you have $(gcc-major-version).$(gcc-minor-version)" - elif [[ $(gcc-major-version) = 4 ]] && [[ $(gcc-minor-version) -lt 8 ]]; then - die "GCC 4.8 or greater is required but you have $(gcc-major-version).$(gcc-minor-version)" - fi -} - pkg_setup() { # add new user & group for daemon enewgroup ${PN} diff --git a/net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild b/net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild index 6ae025935bf..6b25935a9cb 100644 --- a/net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild +++ b/net-misc/apt-cacher-ng/apt-cacher-ng-9999999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils git-r3 toolchain-funcs user +inherit cmake-utils git-r3 user DESCRIPTION="Yet another caching HTTP proxy for Debian/Ubuntu software packages" HOMEPAGE=" @@ -30,7 +30,6 @@ COMMON_DEPEND=" BDEPEND=" ${COMMON_DEPEND} dev-util/cmake - >sys-devel/gcc-4.8 virtual/pkgconfig " RDEPEND=" @@ -45,14 +44,6 @@ PATCHES=( ) S=${WORKDIR}/${P/_*} -pkg_pretend() { - if [[ $(gcc-major-version) -lt 4 ]]; then - die "GCC 4.8 or greater is required but you have $(gcc-major-version).$(gcc-minor-version)" - elif [[ $(gcc-major-version) = 4 ]] && [[ $(gcc-minor-version) -lt 8 ]]; then - die "GCC 4.8 or greater is required but you have $(gcc-major-version).$(gcc-minor-version)" - fi -} - pkg_setup() { # add new user & group for daemon enewgroup ${PN}