Script to list patches that changed api files. 18/10218/2
authorDave Wallace <[email protected]>
Wed, 24 Jan 2018 05:51:22 +0000 (00:51 -0500)
committerDave Wallace <[email protected]>
Wed, 24 Jan 2018 06:08:57 +0000 (06:08 +0000)
- Add Ole Troan's script from vpp-dev email:
  https://lists.fd.io/pipermail/vpp-dev/2017-October/007037.html

Change-Id: I0cbf5118169dc25f0edd659a5a9f5cde8619f780
Signed-off-by: Dave Wallace <[email protected]>
extras/scripts/list_api_changes.py [new file with mode: 0755]

diff --git a/extras/scripts/list_api_changes.py b/extras/scripts/list_api_changes.py
new file mode 100755 (executable)
index 0000000..9e80925
--- /dev/null
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os, fnmatch, subprocess
+starttag = 'v18.01-rc0'
+endtag = 'v18.01-rc2'
+apifiles = []
+for root, dirnames, filenames in os.walk('.'):
+    for filename in fnmatch.filter(filenames, '*.api'):
+        apifiles.append(os.path.join(root, filename))
+for f in apifiles:
+    commits = subprocess.check_output(['git', 'log',
+                                       '--oneline', starttag + '..' + endtag,
+                                       f])
+    if commits:
+        print f
+        print commits