Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/contrib/generate_changelog.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/contrib/generate_changelog.py')
-rwxr-xr-xbuildbot/contrib/generate_changelog.py71
1 files changed, 71 insertions, 0 deletions
diff --git a/buildbot/contrib/generate_changelog.py b/buildbot/contrib/generate_changelog.py
new file mode 100755
index 0000000..bff7389
--- /dev/null
+++ b/buildbot/contrib/generate_changelog.py
@@ -0,0 +1,71 @@
+#!/usr/bin/env python
+#
+# Copyright 2008
+# Steve 'Ashcrow' Milner <smilner+buildbot@redhat.com>
+#
+# This software may be freely redistributed under the terms of the GNU
+# general public license.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+"""
+Generates changelog information using git.
+"""
+
+__docformat__ = 'restructuredtext'
+
+
+import os
+import sys
+
+
+def print_err(msg):
+ """
+ Wrapper to make printing to stderr nicer.
+
+ :Parameters:
+ - `msg`: the message to print.
+ """
+ sys.stderr.write(msg)
+ sys.stderr.write('\n')
+
+
+def usage():
+ """
+ Prints out usage information to stderr.
+ """
+ print_err('Usage: %s git-binary since' % sys.argv[0])
+ print_err(('Example: %s /usr/bin/git f5067523dfae9c7cdefc82'
+ '8721ec593ac7be62db' % sys.argv[0]))
+
+
+def main(args):
+ """
+ Main entry point.
+
+ :Parameters:
+ - `args`: same as sys.argv[1:]
+ """
+ # Make sure we have the arguments we need, else show usage
+ try:
+ git_bin = args[0]
+ since = args[1]
+ except IndexError, ie:
+ usage()
+ return 1
+
+ if not os.access(git_bin, os.X_OK):
+ print_err('Can not access %s' % git_bin)
+ return 1
+
+ # Open a pipe and force the format
+ pipe = os.popen((git_bin + ' log --pretty="format:%ad %ae%n'
+ ' * %s" ' + since + '..'))
+ print pipe.read()
+ pipe.close()
+ return 0
+
+
+if __name__ == '__main__':
+ raise SystemExit(main(sys.argv[1:]))