From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A104D139737 for ; Tue, 11 Aug 2015 19:57:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3773B141CD; Tue, 11 Aug 2015 19:57:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE7F4141CD for ; Tue, 11 Aug 2015 19:57:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C45573408A2 for ; Tue, 11 Aug 2015 19:57:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FF5FEE for ; Tue, 11 Aug 2015 19:57:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1439322988.5982e0a819e51c344e25c91c738d851192e188c0.mgorny@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/egencache X-VCS-Directories: bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5982e0a819e51c344e25c91c738d851192e188c0 X-VCS-Branch: master Date: Tue, 11 Aug 2015 19:57:18 +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: 3cc450be-e58c-474b-99b5-f4b3bd39df00 X-Archives-Hash: 40c06e7256b0231d711b7a2e0fd40740 commit: 5982e0a819e51c344e25c91c738d851192e188c0 Author: Michał Górny gentoo org> AuthorDate: Tue Aug 11 17:37:04 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 11 19:56:28 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5982e0a8 egencache: Always output EAPI=0 in cache entries Remove the code skipping EAPI=0 output in cache entries. There is really no reason to treat EAPI=0 specially here, and this makes the output more consistent. Reviewed-by: Zac Medico gentoo.org> Reviewed-by: Brian Dolbec gentoo.org> bin/egencache | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/egencache b/bin/egencache index 6075ccf..5c00248 100755 --- a/bin/egencache +++ b/bin/egencache @@ -297,8 +297,6 @@ class GenCache(object): # EAPI from _parse_eapi_ebuild_head, we don't write cache # entries for unsupported EAPIs. if metadata is not None and eapi_supported: - if metadata.get('EAPI') == '0': - del metadata['EAPI'] for trg_cache in self._trg_caches: self._write_cache(trg_cache, cpv, repo_path, metadata, ebuild_hash)