From nobody Thu Mar 28 19:05:21 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of ovirt.org designates 66.187.230.42 as permitted sender) client-ip=66.187.230.42; envelope-from=kimchi-devel-bounces@ovirt.org; helo=lists.ovirt.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of ovirt.org designates 66.187.230.42 as permitted sender) smtp.mailfrom=kimchi-devel-bounces@ovirt.org; Return-Path: Received: from lists.ovirt.org (lists.phx.ovirt.org [66.187.230.42]) by mx.zohomail.com with SMTPS id 1486138855342360.3120405685221; Fri, 3 Feb 2017 08:20:55 -0800 (PST) Received: from lists.phx.ovirt.org (localhost [127.0.0.1]) by lists.ovirt.org (Postfix) with ESMTP id 42DBA8204DC; Fri, 3 Feb 2017 16:20:53 +0000 (UTC) Received: from mail-qk0-f194.google.com (mail-qk0-f194.google.com [209.85.220.194]) by lists.ovirt.org (Postfix) with ESMTPS id 7E3428204CC for ; Fri, 3 Feb 2017 16:20:43 +0000 (UTC) Received: by mail-qk0-f194.google.com with SMTP id u25so370800qki.2 for ; Fri, 03 Feb 2017 08:20:43 -0800 (PST) Received: from arthas.ltc.br.ibm.com ([177.99.121.66]) by smtp.gmail.com with ESMTPSA id l20sm24791727qtc.5.2017.02.03.08.20.40 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Feb 2017 08:20:41 -0800 (PST) X-Original-To: kimchi-devel@ovirt.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=fOWo7dKKMGOTQFAw6Iu0LH8awtME7DJm7MKq4jIGQR4=; b=liC+e/z/tqWQCchmIXqAkshw17DmGjAZwSI2ym7Y2LhzJ2NULywHSTQGRQr1QwH/t3 tcedQzRKcOohIs4LxHcqrXTbecsVcKQiIOJl2uxoxHyiEPsiKW1Vnhw8R6ZQhJyjBpmM tOD+c9M+dj+huOjIOLPeZA5l2YPTQB8U5Ys20hZq/Jd+hWzbLVmwGXQax/dQi1yKHiHk TCx2X+XBaAGVhv5fcdB/b+jxpmYG89vmpk/xDClyEfD+X/jyoBoJalqmhsDJa2SSsLxg nyxlRTwZ4J3zAV8b9ZIo0nTY+aRWu/A/PrDSdyqwjCD+fQJER+s72hmfzIwysSs7V1Qv piFQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=fOWo7dKKMGOTQFAw6Iu0LH8awtME7DJm7MKq4jIGQR4=; b=qghs7rmOR2yHGCHGRUb6fmDfXZ06lPt9QIBg+dyh1NCacvXO1Os5CKLC3rE8zu9TIP j9EDrYK0dqs3rz6OepesXEEycF6WZSGYWkqUnlW8H9sddGFJ1E0EKbKY/LpfbD9lWelG T4/rYmkFwEh9Kk/savWK+F8r65HyD87gNCRd0YEElmzs1dFVZ4eC95PQHWYmtz8r+HtI pR/8U+mdKG21hOulH2qYJi3XOW+5ZPw+xjAw8up1wxFyTrMegD2zbkwuOQbMcuRrj+MB eR1L8ajfNAlFm0QADDQaAmGU4abZ3c47GEZS4h/6Ai6Pja+05sa+28r6z2gxDXRT0Rbt pH/A== X-Gm-Message-State: AMke39k3hSXpZoQ2QuP6+CBJiGnmHkqr7n0UCeCrw0MIkp86myj3GjFlt99AwJDQvIJ00A== X-Received: by 10.55.221.150 with SMTP id u22mr13855378qku.43.1486138842491; Fri, 03 Feb 2017 08:20:42 -0800 (PST) From: To: Kimchi Devel Date: Fri, 3 Feb 2017 14:20:22 -0200 Message-Id: <20170203162022.11249-1-dhbarboza82@gmail.com> X-Mailer: git-send-email 2.9.3 Subject: [Kimchi-devel] [PATCH] [Kimchi] Adding 'self.depends' option in root.py X-BeenThere: kimchi-devel@ovirt.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: kimchi-devel-bounces@ovirt.org Errors-To: kimchi-devel-bounces@ovirt.org X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Daniel Henrique Barboza This option will be used by WoK to determine the dependencies of the plug-ins. The change made is harmless - the patch does not need the WoK changes to be upstream beforehand. Signed-off-by: Daniel Henrique Barboza Reviewed-By: Lucio Correia --- root.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/root.py b/root.py index faa9eb9..5fa1690 100644 --- a/root.py +++ b/root.py @@ -73,6 +73,8 @@ class Kimchi(WokRoot): } } =20 + self.depends =3D ['gingerbase'] + # Some paths or URI's present in the objectstore have changed after # Kimchi 2.0.0 release. Check here if an upgrade in the schema and= data # are necessary. --=20 2.9.3 _______________________________________________ Kimchi-devel mailing list Kimchi-devel@ovirt.org http://lists.ovirt.org/mailman/listinfo/kimchi-devel