From 8210d0b43f2f603e048d9096fd48bb7de722dfd6 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Fri, 16 Jun 2017 19:08:42 -0700 Subject: [PATCH] eclass: Drop unused WIP class from 2013 Added in 0173e3f2cba17186d74382fd5939a005486c0cee. --- .../coreos-overlay/eclass/conflict.eclass | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 sdk_container/src/third_party/coreos-overlay/eclass/conflict.eclass diff --git a/sdk_container/src/third_party/coreos-overlay/eclass/conflict.eclass b/sdk_container/src/third_party/coreos-overlay/eclass/conflict.eclass deleted file mode 100644 index 516939f3c0..0000000000 --- a/sdk_container/src/third_party/coreos-overlay/eclass/conflict.eclass +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. -# Distributed under the terms of the GNU General Public License v2 - -# @ECLASS-VARIABLE: CONFLICT_LIST -# @DESCRIPTION: -# Atoms mentioned in CONFLICT_LIST need to either be unmerged or upgraded -# prior to this package being installed, but we don't want to have an explicit -# dependency on that package. So instead, we do the following: -# 1. When we are installed, ensure that the old version is not installed. -# 2. If old version is installed, ask emerge to consider upgrading it. -# This consideration is listed as PDEPEND so that we don't add an -# explicit dependency on the other package. -for atom in $CONFLICT_LIST; do - DEPEND="$DEPEND !!<=$atom" - RDEPEND="$RDEPEND !!<=$atom" - PDEPEND="$PDEPEND || ( >$atom !!<=$atom )" -done