From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id AFE7476536 for ; Sat, 2 Apr 2016 16:09:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u32G9212025311 for ; Sat, 2 Apr 2016 17:09:02 +0100 Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id I1lCRkTzd_Q3 for ; Sat, 2 Apr 2016 17:09:02 +0100 (BST) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u32G8v0J025295 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT) for ; Sat, 2 Apr 2016 17:08:58 +0100 Message-ID: <1459613337.7348.121.camel@linuxfoundation.org> From: Richard Purdie To: bitbake-devel Date: Sat, 02 Apr 2016 17:08:57 +0100 X-Mailer: Evolution 3.16.5-1ubuntu3.1 Mime-Version: 1.0 Subject: [PATCH] siggen: Drop misleading duplicate method X-BeenThere: bitbake-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussion that advance bitbake development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Apr 2016 16:09:05 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit The real method is a few lines later, this one is incorrect and just causing confusion. Remove it. Signed-off-by: Richard Purdie diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 43cf7b6..be0f0b5 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -49,9 +49,6 @@ class SignatureGenerator(object): """Write/update the file checksum cache onto disk""" return - def set_taskdata(self, hashes, deps, checksum): - return - def stampfile(self, stampbase, file_name, taskname, extrainfo): return ("%s.%s.%s" % (stampbase, taskname, extrainfo)).rstrip('.')