]> code.ossystems Code Review - openembedded-core.git/commitdiff
python3: remove specal handling of sqite3-tests
authorRoss Burton <ross.burton@intel.com>
Fri, 14 Sep 2018 11:28:21 +0000 (12:28 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 21 Sep 2018 15:15:19 +0000 (08:15 -0700)
This package doesn't exist anymore so the manifest tool doesn't need to handle
it specially.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/python/python3/create_manifest3.py

index efef62af943948ada74a7be8e22dd3408ef56b2d..fddb23cdc42bf656a8eae27bd54d6d10b7790816 100644 (file)
@@ -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]