From: Ross Burton Date: Fri, 14 Sep 2018 11:28:21 +0000 (+0100) Subject: python3: remove specal handling of sqite3-tests X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d21d958c5b0e153fc57d9637c8daf9fd5294c722;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3: remove specal handling of sqite3-tests This package doesn't exist anymore so the manifest tool doesn't need to handle it specially. (From OE-Core rev: 30eadb119a64d8561b946d5b8ee30244caeaf134) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3/create_manifest3.py b/meta/recipes-devtools/python/python3/create_manifest3.py index efef62af943..fddb23cdc42 100644 --- a/meta/recipes-devtools/python/python3/create_manifest3.py +++ b/meta/recipes-devtools/python/python3/create_manifest3.py @@ -214,7 +214,7 @@ for pypkg in old_manifest: # Handle special cases, we assume that when they were manually added # to the manifest we knew what we were doing. - special_packages = ['misc', 'modules', 'dev', 'tests', 'sqlite3-tests'] + special_packages = ['misc', 'modules', 'dev', 'tests'] if pypkg in special_packages or 'staticdev' in pypkg: print('Passing %s package directly' % pypkg) new_manifest[pypkg] = old_manifest[pypkg]