From patchwork Mon Jun 2 21:06:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 355061 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 7AF2D140091 for ; Tue, 3 Jun 2014 07:06:37 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 8D47F8BEB5; Mon, 2 Jun 2014 21:06:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NcUKa6aZINVO; Mon, 2 Jun 2014 21:06:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D5DA28BEE1; Mon, 2 Jun 2014 21:06:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 37BF41BF979 for ; Mon, 2 Jun 2014 21:06:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 322E93290C for ; Mon, 2 Jun 2014 21:06:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0Xo6bLge2GMf for ; Mon, 2 Jun 2014 21:06:23 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f169.google.com (mail-we0-f169.google.com [74.125.82.169]) by silver.osuosl.org (Postfix) with ESMTPS id 60B7B3085A for ; Mon, 2 Jun 2014 21:06:23 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id u56so5866403wes.28 for ; Mon, 02 Jun 2014 14:06:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=UCQOZjUIlOf33DskudydO3KBRWOl5SUZErejB5qhmbI=; b=F/qeyXQdt8QDVzpiurx/wxUPSiuiEwaEntk7uB6IIroDzKYczGrk5AR4lD+5I/kzfn 6mU+w/KhDDD+CZc2o3rIrA0iFs6ozBxg/NnQMP6m189x7AGgrrsVU9gNYFmr4Je+lFb0 rW1qBvzJy0Eouk0usKQSx3xrexABirfOGyTahgkg3Zf9T3l+YXKNWvhj3qpbvcAYV8b+ OhNAsLM/JK6ncWSDZ6P7DzVHFRyUG8mBvA1uNTi1+LILjR8zpR1LQGua2IoVAVBwVMVm hfXLb/62xDWuJ29LTl8NJD4De4RxrX7Sen68EHAGQF2WXRewjVfchCd5dwTVLwhTzgoa jhfA== X-Received: by 10.180.84.41 with SMTP id v9mr17952597wiy.1.1401743181871; Mon, 02 Jun 2014 14:06:21 -0700 (PDT) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id a1sm35602411wiy.15.2014.06.02.14.06.20 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 02 Jun 2014 14:06:21 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Mon, 2 Jun 2014 23:06:07 +0200 Message-Id: <52c352590a557d47ee11396fae0ccabcf5c3a73a.1401743146.git.yann.morin.1998@free.fr> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH 05/11] support/scripts: document args to _is_package() in gen-manual-lists 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: "Yann E. MORIN" Signed-off-by: "Yann E. MORIN" Cc: Samuel Martin Acked-by: Samuel Martin --- support/scripts/gen-manual-lists.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/scripts/gen-manual-lists.py b/support/scripts/gen-manual-lists.py index aee2299..b33fcf0 100644 --- a/support/scripts/gen-manual-lists.py +++ b/support/scripts/gen-manual-lists.py @@ -242,6 +242,8 @@ class Buildroot: """ Return True if the symbol is a package or a host package, otherwise False. + :param symbol: The symbol to check + """ if not self.re_pkg_prefix.match(symbol.get_name()): return False