summaryrefslogtreecommitdiffstats
path: root/scripts/distro/build-recipe-list.py
diff options
context:
space:
mode:
authorTan Shen Joon <shen.joon.tan@intel.com>2017-08-10 06:57:01 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-29 08:49:43 +0000
commit32b363c2ba91fde4f10e5fe2c898b2fc2702aa85 (patch)
treec6edd26fbda1da70b3eb8572ac841d5ebc0c4777 /scripts/distro/build-recipe-list.py
parentdb59381121d564a1ba5d199a8099d120620f0527 (diff)
downloadopenembedded-core-contrib-32b363c2ba91fde4f10e5fe2c898b2fc2702aa85.tar.gz
distrodata: add a utility script to compare list of recipes
distrocompare.sh is added to compare the added list of recipes between two releases. The output of the script will share the information of the licenses required and other distributions that are using the package. If a single input is provided, it will compare the current branch with the provided branch/commit-ish package list. To run : distrocompare.sh <older hash> <newer hash> E.g. distrocompare.sh morty 92aa0e7 E.g. distrocompare.sh morty pyro E.g. distrocompare.sh morty output : The script will produce a file ending with new_recipe_list.txt preceeded by the branch name from input Signed-off-by: Tan Shen Joon <shen.joon.tan@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/distro/build-recipe-list.py')
-rwxr-xr-xscripts/distro/build-recipe-list.py117
1 files changed, 117 insertions, 0 deletions
diff --git a/scripts/distro/build-recipe-list.py b/scripts/distro/build-recipe-list.py
new file mode 100755
index 0000000000..407debaa76
--- /dev/null
+++ b/scripts/distro/build-recipe-list.py
@@ -0,0 +1,117 @@
+#!/usr/bin/env python3
+#
+# Copyright (c) 2017, Intel Corporation.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms and conditions of the GNU General Public License,
+# version 2, as published by the Free Software Foundation.
+#
+# This program is distributed in the hope it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# more details.
+#
+
+import os
+import shutil
+import csv
+import sys
+import argparse
+
+__version__ = "0.1.0"
+
+recipenames = []
+allrecipes = []
+
+def gather_recipes(rows):
+ # store the data into the array
+ for row in rows:
+ if row[0] not in recipenames:
+ recipenames.append(row[0])
+ allrecipes.append(row)
+
+def generate_recipe_list():
+ # machine list
+ machine_list = ( "qemuarm64", "qemuarm", "qemumips64", "qemumips", "qemuppc", "qemux86-64", "qemux86" )
+ # set filename format
+ fnformat = 'distrodata.%s.csv'
+
+ # store all data files in distrodata
+ datadir = 'distrodata'
+
+ # create the directory if it does not exists
+ if not os.path.exists(datadir):
+ os.mkdir(datadir)
+
+ # doing bitbake distrodata
+ for machine in machine_list:
+ os.system('MACHINE='+ machine + ' bitbake world -c distrodata')
+ shutil.copy('tmp/log/distrodata.csv', 'distrodata/' + fnformat % machine)
+
+ for machine in machine_list:
+ with open('distrodata/' + fnformat % machine) as f:
+ reader = csv.reader(f)
+ rows = reader.__iter__()
+ gather_recipes(rows)
+
+ with open('recipe-list.txt', 'w') as f:
+ for recipe in sorted(recipenames):
+ f.write("%s\n" % recipe)
+ print("file : recipe-list.txt is created with %d entries." % len(recipenames))
+
+ with open('all-recipe-list.txt', 'w') as f:
+ for recipe in sorted(allrecipes):
+ f.write("%s\n" % ','.join([str(data) for data in recipe]))
+
+
+def diff_for_new_recipes(recipe1, recipe2):
+ prev_recipe_path = recipe1 + '/'
+ curr_recipe_path = recipe2 + '/'
+ if not os.path.isfile(prev_recipe_path + 'recipe-list.txt') or not os.path.isfile(curr_recipe_path + 'recipe-list.txt'):
+ print("recipe files do not exists. please verify that the file exists.")
+ exit(1)
+
+ import csv
+
+ prev = []
+ new = []
+
+ with open(prev_recipe_path + 'recipe-list.txt') as f:
+ prev = f.readlines()
+
+ with open(curr_recipe_path + 'recipe-list.txt') as f:
+ new = f.readlines()
+
+ updates = []
+ for pn in new:
+ if not pn in prev:
+ updates.append(pn.rstrip())
+
+ allrecipe = []
+ with open(recipe1 + '_' + recipe2 + '_new_recipe_list.txt','w') as dr:
+ with open(curr_recipe_path + 'all-recipe-list.txt') as f:
+ reader = csv.reader(f, delimiter=',')
+ for row in reader:
+ if row[0] in updates:
+ dr.write("%s,%s,%s" % (row[0], row[3], row[5]))
+ if len(row[9:]) > 0:
+ dr.write(",%s" % ','.join(row[9:]))
+ dr.write("\n")
+
+def main(argv):
+ if argv[0] == "generate_recipe_list":
+ generate_recipe_list()
+ elif argv[0] == "compare_recipe":
+ diff_for_new_recipes(argv[1], argv[2])
+ else:
+ print("no such option. choose either 'generate_recipe_list' or 'compare_recipe'")
+
+ exit(0)
+
+if __name__ == "__main__":
+ try:
+ sys.exit(main(sys.argv[1:]))
+ except Exception as e:
+ print("Exception :", e)
+ sys.exit(1)
+