From 739b7e2f2a822667efe0ff6040ee3d780c866437 Mon Sep 17 00:00:00 2001 From: Rasmus Villemoes Date: Fri, 18 Nov 2016 11:13:36 +0100 Subject: [PATCH] oelite/meta/cache.py: minor cleanup There were two duplicate entries; sort the list and remove those. --- lib/oelite/meta/cache.py | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/lib/oelite/meta/cache.py b/lib/oelite/meta/cache.py index e9be77c5..ba8ba115 100644 --- a/lib/oelite/meta/cache.py +++ b/lib/oelite/meta/cache.py @@ -90,38 +90,36 @@ def __iter__(self): PICKLE_ABI = None PICKLE_ABI_MODULES = [ - "oelite.meta", - "oelite.meta.meta", - "oelite.meta.dict", - "oelite.meta.cache", - "oelite.parse", - "oelite.parse.oelex", - "oelite.parse.oeparse", - "oelite.parse.confparse", - "oelite.parse.expandlex", - "oelite.parse.expandparse", - "oelite.fetch", - "oelite.fetch.fetch", - "oelite.fetch.sigfile", - "oelite.fetch.local", - "oelite.fetch.url", - "oelite.fetch.git", - "oelite.fetch.svn", "oelite", "oelite.arch", "oelite.baker", "oelite.cookbook", "oelite.dbutil", + "oelite.fetch", + "oelite.fetch.fetch", + "oelite.fetch.git", + "oelite.fetch.local", + "oelite.fetch.sigfile", + "oelite.fetch.svn", + "oelite.fetch.url", "oelite.function", "oelite.item", + "oelite.meta", + "oelite.meta.cache", + "oelite.meta.dict", + "oelite.meta.meta", "oelite.package", + "oelite.parse", + "oelite.parse.confparse", + "oelite.parse.expandlex", + "oelite.parse.expandparse", + "oelite.parse.oelex", + "oelite.parse.oeparse", "oelite.pyexec", "oelite.recipe", "oelite.runq", "oelite.task", "oelite.util", - "oelite.meta", - "oelite.meta.cache", ] def pickle_abi():