From 33fba174145fb9dd70fa1388a92a5b62007a8bf2 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 31 Oct 2018 16:38:10 +1300 Subject: [PATCH] update_classic_status: set category for KDE packages Signed-off-by: Paul Eggleton --- layerindex/tools/update_classic_status.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layerindex/tools/update_classic_status.py b/layerindex/tools/update_classic_status.py index 020085e..335fde3 100755 --- a/layerindex/tools/update_classic_status.py +++ b/layerindex/tools/update_classic_status.py @@ -182,6 +182,10 @@ def main(): recipe.classic_category = 'perl' recipe.save() updated = True + elif 'kde.org' in source0.url or 'github.com/KDE' in source0.url: + recipe.classic_category = 'kde' + recipe.save() + updated = True if not found: if recipe.pn.startswith('R-'): recipe.classic_category = 'R'