OLD | NEW |
---|---|
1 # coding=utf8 | 1 # coding=utf8 |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 """Manages a project checkout. | 5 """Manages a project checkout. |
6 | 6 |
7 Includes support for svn, git-svn and git. | 7 Includes support for svn, git-svn and git. |
8 """ | 8 """ |
9 | 9 |
10 import ConfigParser | 10 import ConfigParser |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
546 ['log', '-q', self.svn_url, '-r', '%s:%s' % (rev1, rev2)]) | 546 ['log', '-q', self.svn_url, '-r', '%s:%s' % (rev1, rev2)]) |
547 except subprocess.CalledProcessError: | 547 except subprocess.CalledProcessError: |
548 return None | 548 return None |
549 # Ignore the '----' lines. | 549 # Ignore the '----' lines. |
550 return len([l for l in out.splitlines() if l.startswith('r')]) - 1 | 550 return len([l for l in out.splitlines() if l.startswith('r')]) - 1 |
551 | 551 |
552 | 552 |
553 class GitCheckout(CheckoutBase): | 553 class GitCheckout(CheckoutBase): |
554 """Manages a git checkout.""" | 554 """Manages a git checkout.""" |
555 def __init__(self, root_dir, project_name, remote_branch, git_url, | 555 def __init__(self, root_dir, project_name, remote_branch, git_url, |
556 commit_user, post_processors=None, base_ref=None): | 556 commit_user, post_processors=None, base_ref=None, name=None, email=None): |
agable
2014/02/22 00:01:04
These should be parameters to apply_patch, not __i
| |
557 super(GitCheckout, self).__init__(root_dir, project_name, post_processors) | 557 super(GitCheckout, self).__init__(root_dir, project_name, post_processors) |
558 self.base_ref = base_ref | 558 self.base_ref = base_ref |
559 self.git_url = git_url | 559 self.git_url = git_url |
560 self.commit_user = commit_user | 560 self.commit_user = commit_user |
561 self.remote_branch = remote_branch | 561 self.remote_branch = remote_branch |
562 self.name = name | |
563 self.email = email | |
562 # The working branch where patches will be applied. It will track the | 564 # The working branch where patches will be applied. It will track the |
563 # remote branch. | 565 # remote branch. |
564 self.working_branch = 'working_branch' | 566 self.working_branch = 'working_branch' |
565 # There is no reason to not hardcode origin. | 567 # There is no reason to not hardcode origin. |
566 self.remote = 'origin' | 568 self.remote = 'origin' |
567 # There is no reason to not hardcode master. | 569 # There is no reason to not hardcode master. |
568 self.master_branch = 'master' | 570 self.master_branch = 'master' |
569 | 571 |
570 def prepare(self, revision): | 572 def prepare(self, revision): |
571 """Resets the git repository in a clean state. | 573 """Resets the git repository in a clean state. |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
700 raise PatchApplicationFailed(p, '%s%s' % (align_stdout(stdout), e)) | 702 raise PatchApplicationFailed(p, '%s%s' % (align_stdout(stdout), e)) |
701 except subprocess.CalledProcessError, e: | 703 except subprocess.CalledProcessError, e: |
702 raise PatchApplicationFailed( | 704 raise PatchApplicationFailed( |
703 p, | 705 p, |
704 'While running %s;\n%s%s' % ( | 706 'While running %s;\n%s%s' % ( |
705 ' '.join(e.cmd), | 707 ' '.join(e.cmd), |
706 align_stdout(stdout), | 708 align_stdout(stdout), |
707 align_stdout([getattr(e, 'stdout', '')]))) | 709 align_stdout([getattr(e, 'stdout', '')]))) |
708 # Once all the patches are processed and added to the index, commit the | 710 # Once all the patches are processed and added to the index, commit the |
709 # index. | 711 # index. |
710 cmd = ['commit', '-m', 'Committed patch'] | 712 author = '%s <%s>' % (self.name, self.email) |
713 cmd = ['commit', '-m', 'Committed patch', '--author', author] | |
711 if verbose: | 714 if verbose: |
712 cmd.append('--verbose') | 715 cmd.append('--verbose') |
713 self._check_call_git(cmd) | 716 self._check_call_git(cmd) |
714 if self.base_ref: | 717 if self.base_ref: |
715 base_ref = self.base_ref | 718 base_ref = self.base_ref |
716 else: | 719 else: |
717 base_ref = '%s/%s' % (self.remote, | 720 base_ref = '%s/%s' % (self.remote, |
718 self.remote_branch or self.master_branch) | 721 self.remote_branch or self.master_branch) |
719 found_files = self._check_output_git( | 722 found_files = self._check_output_git( |
720 ['diff', base_ref, | 723 ['diff', base_ref, |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
830 def revisions(self, rev1, rev2): | 833 def revisions(self, rev1, rev2): |
831 return self.checkout.revisions(rev1, rev2) | 834 return self.checkout.revisions(rev1, rev2) |
832 | 835 |
833 @property | 836 @property |
834 def project_name(self): | 837 def project_name(self): |
835 return self.checkout.project_name | 838 return self.checkout.project_name |
836 | 839 |
837 @property | 840 @property |
838 def project_path(self): | 841 def project_path(self): |
839 return self.checkout.project_path | 842 return self.checkout.project_path |
OLD | NEW |