[oe-commits] Cliff Brake : weekly-changelog-report.py: remove "Merge Branch" entries, add TODO list

GIT User account git at amethyst.openembedded.net
Mon Oct 20 15:04:12 UTC 2008


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 059a65f61cdf1e5201e102ac7436be70fe3678c0
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=059a65f61cdf1e5201e102ac7436be70fe3678c0

Author: Cliff Brake <cbrake at bec-systems.com>
Date:   Mon Oct 20 11:02:29 2008 -0400

weekly-changelog-report.py: remove "Merge Branch" entries, add TODO list

---

 contrib/weekly-changelog-report.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/contrib/weekly-changelog-report.py b/contrib/weekly-changelog-report.py
index 2898c2f..b5e70cb 100755
--- a/contrib/weekly-changelog-report.py
+++ b/contrib/weekly-changelog-report.py
@@ -4,6 +4,10 @@
 # generates an OE changelog for last weeks activity (Mon-Sun) assuming it is run on
 # any day of the following week
 
+# TODO
+# - remove patch count as it does not match after we remove "Merge branch" statements
+# - add bugzilla info
+
 import datetime
 import os
 
@@ -19,6 +23,6 @@ start_day = end_day - datetime.timedelta(7)
 
 print "OE weekly changelog %s to %s\n" % (start_day.isoformat(), end_day.isoformat())
 
-os.system("git-shortlog --since=%s --until=%s" % (start_day.isoformat(), end_day.isoformat()))
+os.system("git-shortlog --since=%s --until=%s | grep -v \"Merge branch\"" % (start_day.isoformat(), end_day.isoformat()))
 
 





More information about the Openembedded-commits mailing list