[oe-commits] Cliff Brake : weekly-changelog-report.py: add staging-branch

git version control git at git.openembedded.org
Thu Feb 25 12:22:08 UTC 2010


Module: openembedded.git
Branch: shr/testing2010
Commit: 2d8dc03f6f7e5670890257cbb1ece8eeed7e1aa0
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=2d8dc03f6f7e5670890257cbb1ece8eeed7e1aa0

Author: Cliff Brake <cbrake at bec-systems.com>
Date:   Tue Feb 23 12:01:36 2010 -0500

weekly-changelog-report.py: add staging-branch

---

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

diff --git a/contrib/weekly-changelog-report.py b/contrib/weekly-changelog-report.py
index 902089b..b477c79 100755
--- a/contrib/weekly-changelog-report.py
+++ b/contrib/weekly-changelog-report.py
@@ -21,14 +21,20 @@ end_day = today - datetime.timedelta(today_weekday)
 
 start_day = end_day - datetime.timedelta(7)
 
+print "====================================================="
 print "OE weekly changelog %s to %s\n" % (start_day.isoformat(), end_day.isoformat())
 
 os.system("git shortlog --since=%s --until=%s | grep -v 'Merge branch' | grep -v 'Merge commit'|sed -e 's/^    //g'|cut -b -78 " % (start_day.isoformat(), end_day.isoformat()))
 
+print "====================================================="
+print "Staging branch (holger/staging-branch) weekly changelog %s to %s\n" % (start_day.isoformat(), end_day.isoformat())
+os.system("git shortlog --since=%s --until=%s origin/holger/staging-branch | grep -v 'Merge branch' | grep -v 'Merge commit'|sed -e 's/^    //g'|cut -b -78 " % (start_day.isoformat(), end_day.isoformat()))
+
 os.system("wget 'http://bugs.openembedded.net/buglist.cgi?bug_file_loc=&bug_file_loc_type=allwordssubstr&bug_id=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&bugidtype=include&chfieldfrom=7d&chfieldto=Now&chfieldvalue=&email1=&email2=&emailassigned_to1=1&emailassigned_to2=1&emailcc2=1&emailqa_contact2=1&emailreporter2=1&emailtype1=substring&emailtype2=substring&field-1-0-0=bug_status&field0-0-0=noop&known_name=1WFixed&long_desc=&long_desc_type=substring&query_format=advanced&remaction=&short_desc=&short_desc_type=allwordssubstr&type-1-0-0=anyexact&type0-0-0=noop&value-1-0-0=RESOLVED%2CVERIFIED%2CCLOSED&value0-0-0=&ctype=csv' -O resolved-bugs.csv >& /dev/null")
 os.system("wget 'http://bugs.openembedded.net/buglist.cgi?bug_file_loc=&bug_file_loc_type=allwordssubstr&bug_id=&bug_status=NEW&bugidtype=include&chfield=%5BBug%20creation%5D&chfieldfrom=7d&chfieldto=Now&chfieldvalue=&email1=&email2=&emailassigned_to1=1&emailassigned_to2=1&emailcc2=1&emailqa_contact2=1&emailreporter2=1&emailtype1=substring&emailtype2=substring&field-1-0-0=bug_status&field0-0-0=noop&long_desc=&long_desc_type=substring&query_format=advanced&remaction=&short_desc=&short_desc_type=allwordssubstr&type-1-0-0=anyexact&type0-0-0=noop&value-1-0-0=NEW&value0-0-0=&ctype=csv' -O new-bugs.csv &> /dev/null")
 
 
+print "====================================================="
 print "Bugs fixed:\n"
 
 os.system("cat resolved-bugs.csv | awk -F, '{print $1 \" \" $7 \"\t \" $8}' | sed s:\\\"::g")





More information about the Openembedded-commits mailing list