From patchwork Sun Feb 2 12:11:24 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas De Schampheleire X-Patchwork-Id: 316003 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id D860C2C009B for ; Sun, 2 Feb 2014 23:12:04 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8A8B193A9C; Sun, 2 Feb 2014 12:11:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nxpgCY-i1xGJ; Sun, 2 Feb 2014 12:11:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CA1AB93B28; Sun, 2 Feb 2014 12:11:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 16A9C1BF94F for ; Sun, 2 Feb 2014 12:11:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0EDF38B158 for ; Sun, 2 Feb 2014 12:11:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rCSDdMWcBC78 for ; Sun, 2 Feb 2014 12:11:48 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0AF7C83A32 for ; Sun, 2 Feb 2014 12:11:47 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id u57so1156253wes.41 for ; Sun, 02 Feb 2014 04:11:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:content-transfer-encoding:subject :message-id:in-reply-to:references:user-agent:date:from:to; bh=nkziL+Dp6c2e92Xmpxn4z0DRmfTF2ktLCD6efQnFPlI=; b=jiA+gku8aVBJh8jAIppJ7yx0+YA+a4S+pXKs5usMkt+Bollxe4R+N2aLyZy1J2CR+6 SZRsTzFLkp1U0ZJZir4N1hB64J/1p31L/mAXqLcojar9UYrHyGe8yqVzky2xyjC7szJN h2VwyK813nvK/S8hd+4nsEtRpsOXQsdF2JjVX9vhs4yg9e5pxG3dagyQCSOidbKHgWWk 27Z81q3T2v2pxELbarx0BNvmI3bYlzlDkVLfBoaz0rbAg6ub48chAptl0IzNe8nsxAgE XQWoZtgf3eUvudplTGj7wI8jiTq6To5HtTurNHXwY2MnxSyBNnJ4D53GWBU5KKwCM6JQ ne/Q== X-Received: by 10.180.9.71 with SMTP id x7mr5160502wia.55.1391343106620; Sun, 02 Feb 2014 04:11:46 -0800 (PST) Received: from [127.0.1.1] (d54C62EEB.access.telenet.be. [84.198.46.235]) by mx.google.com with ESMTPSA id ea4sm15523490wib.7.2014.02.02.04.11.44 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 02 Feb 2014 04:11:45 -0800 (PST) MIME-Version: 1.0 X-Mercurial-Node: 8d082e3d9cb20e83f780447f251368b6f866f2e7 Message-Id: <8d082e3d9cb20e83f780.1391343084@argentina> In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.2.2 Date: Sun, 02 Feb 2014 13:11:24 +0100 From: Thomas De Schampheleire To: buildroot@busybox.net Subject: [Buildroot] [PATCH 9 of 9] supervisor: automatically select python X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Packages that have a required dependency on python should select python instead of depending on it, as this is most logical towards the user (which may not clearly realize the python dependency). Signed-off-by: Thomas De Schampheleire --- package/supervisor/Config.in | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/package/supervisor/Config.in b/package/supervisor/Config.in --- a/package/supervisor/Config.in +++ b/package/supervisor/Config.in @@ -1,12 +1,15 @@ config BR2_PACKAGE_SUPERVISOR bool "supervisor" - depends on BR2_PACKAGE_PYTHON + select BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_MELD3 + depends on BR2_USE_MMU # python + depends on BR2_USE_WCHAR # python help A client/server system that allows its users to control a number of processes on UNIX-like operating systems. http://supervisord.org/ -comment "supervisor needs the python interpreter" - depends on !BR2_PACKAGE_PYTHON +comment "supervisor needs a toolchain w/ wchar" + depends on BR2_USE_MMU + depends on !BR2_USE_WCHAR