Sha256: 205fbc7bb6f40833e8db38038b426048c480a5981619230bb996abcaa7b7b385

Contents?: true

Size: 1.54 KB

Versions: 50

Compression:

Stored size: 1.54 KB

Contents

#!/usr/bin/env python
# Copyright (c) 2010 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Display log of checkins of one particular developer since a particular
date. Only works on git dependencies at the moment."""

import gclient_utils
import optparse
import os
import re
import subprocess
import sys


def show_log(path, authors, since='1 week ago'):
  """Display log in a single git repo."""

  author_option = ' '.join(['--author=' + author for author in authors])
  command = ' '.join(['git log', author_option, '--since="%s"' % since,
                      'origin/master', '| git shortlog'])
  status = subprocess.Popen(['sh', '-c', command],
                            cwd=path,
                            stdout=subprocess.PIPE).communicate()[0].rstrip()

  if len(status.splitlines()) > 0:
    print '---------- %s ----------' % path
    print status


def main():
  """Take no arguments."""

  option_parser = optparse.OptionParser()
  option_parser.add_option("-a", "--author", action="append", default=[])
  option_parser.add_option("-s", "--since", default="1 week ago")
  options, args = option_parser.parse_args()

  root, entries = gclient_utils.GetGClientRootAndEntries()

  # which entries map to a git repos?
  paths = [k for k, v in entries.items() if not re.search('svn', v)]
  paths.sort()

  for path in paths:
    dir = os.path.normpath(os.path.join(root, path))
    show_log(dir, options.author, options.since)


if __name__ == '__main__':
  main()

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
libv8-7.8.279.23.0beta1 vendor/depot_tools/weekly
libv8-7.3.492.27.3beta1 vendor/depot_tools/weekly
libv8-7.3.492.27.1 vendor/depot_tools/weekly
libv8-7.3.492.27.0 vendor/depot_tools/weekly
libv8-7.3.492.27.0beta1 vendor/depot_tools/weekly
libv8-6.7.288.46.1 vendor/depot_tools/weekly
libv8-6.7.288.46.0 vendor/depot_tools/weekly
libv8-6.7.288.46.1beta0 vendor/depot_tools/weekly
libv8-6.3.292.48.1 vendor/depot_tools/weekly
libv8-6.3.292.48.0 vendor/depot_tools/weekly
libv8-6.3.292.48.0beta2 vendor/depot_tools/weekly
libv8-6.3.292.48.0beta1 vendor/depot_tools/weekly
libv8-6.2.414.42.1 vendor/depot_tools/weekly
libv8-6.2.414.42.0 vendor/depot_tools/weekly
libv8-6.2.414.42.0beta1 vendor/depot_tools/weekly
libv8-6.0.286.54.3 vendor/depot_tools/weekly
libv8-6.0.286.54.2 vendor/depot_tools/weekly
libv8-6.0.286.54.1 vendor/depot_tools/weekly
libv8-6.0.286.54.0 vendor/depot_tools/weekly
libv8-6.0.286.54.0beta2 vendor/depot_tools/weekly