author | David Anderson <david.jc.anderson@gmail.com> |
Fri, 13 Mar 2009 18:14:54 +0000 | |
changeset 1834 | 0589bf1395c5 |
parent 1827 | c03995a6a88e |
child 1835 | 3f30b7b14c57 |
permissions | -rwxr-xr-x |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
1 |
#!/usr/bin/python2.5 |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
2 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
3 |
# Copyright 2009 the Melange authors. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
4 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
6 |
# you may not use this file except in compliance with the License. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
7 |
# You may obtain a copy of the License at |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
8 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
10 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
11 |
# Unless required by applicable law or agreed to in writing, software |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
14 |
# See the License for the specific language governing permissions and |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
15 |
# limitations under the License. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
16 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
17 |
from __future__ import with_statement |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
18 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
19 |
"""Google Summer of Code Melange release script. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
20 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
21 |
This script provides automation for the various tasks involved in |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
22 |
pushing a new release of Melange to the official Google Summer of Code |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
23 |
app engine instance. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
24 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
25 |
It does not provide a turnkey autopilot solution. Notably, each stage |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
26 |
of the release process must be started by a human operator, and some |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
27 |
commands will request confirmation or extra details before |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
28 |
proceeding. It is not a replacement for a cautious human |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
29 |
operator. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
30 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
31 |
Note that this script requires: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
32 |
- Python 2.5 or better (for various language features) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
33 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
34 |
- Subversion 1.5.0 or better (for working copy depth control, which |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
35 |
cuts down checkout/update times by several orders of |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
36 |
magnitude). |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
37 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
38 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
39 |
__authors__ = [ |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
40 |
# alphabetical order by last name, please |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
41 |
'"David Anderson" <dave@natulte.net>', |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
42 |
] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
43 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
44 |
import functools |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
45 |
import os |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
46 |
import re |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
47 |
import subprocess |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
48 |
import sys |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
49 |
|
1822
c6bb25fa7f7b
Create an error module containing the top-level error class.
David Anderson <david.jc.anderson@gmail.com>
parents:
1816
diff
changeset
|
50 |
import error |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
51 |
import log |
1824
c54c304e3c0e
Refactor ANSI colorization into a new utility module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1823
diff
changeset
|
52 |
import util |
1822
c6bb25fa7f7b
Create an error module containing the top-level error class.
David Anderson <david.jc.anderson@gmail.com>
parents:
1816
diff
changeset
|
53 |
|
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
54 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
55 |
# Default repository URLs for Melange and the Google release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
56 |
# repository. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
57 |
MELANGE_REPOS = 'http://soc.googlecode.com/svn' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
58 |
GOOGLE_SOC_REPOS = 'https://soc-google.googlecode.com/svn' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
59 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
60 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
61 |
# Regular expression matching an apparently well formed Melange |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
62 |
# release number. |
1823
f55d0e1d3f82
Fix the Melange version regular expression to detect patch versions.
David Anderson <david.jc.anderson@gmail.com>
parents:
1822
diff
changeset
|
63 |
MELANGE_RELEASE_RE = re.compile(r'\d-\d-\d{8}p\d+') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
64 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
65 |
|
1822
c6bb25fa7f7b
Create an error module containing the top-level error class.
David Anderson <david.jc.anderson@gmail.com>
parents:
1816
diff
changeset
|
66 |
class Error(error.Error): |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
67 |
pass |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
68 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
69 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
70 |
class AbortedByUser(Error): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
71 |
"""The operation was aborted by the user.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
72 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
73 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
74 |
class ObstructionError(Error): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
75 |
"""An operation was obstructed by existing data.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
76 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
77 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
78 |
class ExpectationFailed(Error): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
79 |
"""An unexpected state was encountered by an automated step.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
80 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
81 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
82 |
class FileAccessError(Error): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
83 |
"""An error occured while accessing a file.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
84 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
85 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
86 |
def confirm(prompt, default=False): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
87 |
"""Ask a yes/no question and return the answer. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
88 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
89 |
Will reprompt the user until one of "yes", "no", "y" or "n" is |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
90 |
entered. The input is case insensitive. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
91 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
92 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
93 |
prompt: The question to ask the user. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
94 |
default: The answer to return if the user just hits enter. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
95 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
96 |
Returns: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
97 |
True if the user answered affirmatively, False otherwise. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
98 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
99 |
if default: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
100 |
question = prompt + ' [Yn] ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
101 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
102 |
question = prompt + ' [yN] ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
103 |
while True: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
104 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
105 |
answer = raw_input(question).strip().lower() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
106 |
except EOFError: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
107 |
raise AbortedByUser('Aborted by ctrl+D') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
108 |
if not answer: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
109 |
return default |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
110 |
elif answer in ('y', 'yes'): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
111 |
return True |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
112 |
elif answer in ('n', 'no'): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
113 |
return False |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
114 |
else: |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
115 |
log.error('Please answer yes or no.') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
116 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
117 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
118 |
def getString(prompt): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
119 |
"""Prompt for and return a string.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
120 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
121 |
return raw_input(prompt + ' ').strip() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
122 |
except EOFError: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
123 |
raise AbortedByUser('Aborted by ctrl+D') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
124 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
125 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
126 |
def getNumber(prompt): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
127 |
"""Prompt for and return a number. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
128 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
129 |
Will reprompt the user until a number is entered. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
130 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
131 |
while True: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
132 |
value_str = getString(prompt) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
133 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
134 |
return int(value_str) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
135 |
except ValueError: |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
136 |
log.error('Please enter a number. You entered "%s".' % value_str) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
137 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
138 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
139 |
def getChoice(intro, prompt, choices, done=None, suggest=None): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
140 |
"""Prompt for and return a choice from a menu. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
141 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
142 |
Will reprompt the user until a valid menu entry is chosen. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
143 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
144 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
145 |
intro: Text to print verbatim before the choice menu. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
146 |
prompt: The prompt to print right before accepting input. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
147 |
choices: The list of string choices to display. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
148 |
done: If not None, the list of indices of previously |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
149 |
selected/completed choices. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
150 |
suggest: If not None, the index of the choice to highlight as |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
151 |
the suggested choice. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
152 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
153 |
Returns: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
154 |
The index in the choices list of the selection the user made. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
155 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
156 |
done = set(done or []) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
157 |
while True: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
158 |
print intro |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
159 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
160 |
for i, entry in enumerate(choices): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
161 |
done_text = ' (done)' if i in done else '' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
162 |
indent = '--> ' if i == suggest else ' ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
163 |
print '%s%2d. %s%s' % (indent, i+1, entry, done_text) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
164 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
165 |
choice = getNumber(prompt) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
166 |
if 0 < choice <= len(choices): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
167 |
return choice-1 |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
168 |
log.error('%d is not a valid choice between %d and %d' % |
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
169 |
(choice, 1, len(choices))) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
170 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
171 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
172 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
173 |
def fileToLines(path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
174 |
"""Read a file and return it as a list of lines.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
175 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
176 |
with file(path) as f: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
177 |
return f.read().split('\n') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
178 |
except (IOError, OSError), e: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
179 |
raise FileAccessError(str(e)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
180 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
181 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
182 |
def linesToFile(path, lines): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
183 |
"""Write a list of lines to a file.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
184 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
185 |
with file(path, 'w') as f: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
186 |
f.write('\n'.join(lines)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
187 |
except (IOError, OSError), e: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
188 |
raise FileAccessError(str(e)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
189 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
190 |
|
1825
a610a2df83d2
Move the Paths class to the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1824
diff
changeset
|
191 |
class Subversion(util.Paths): |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
192 |
"""Wrapper for operations on a Subversion working copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
193 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
194 |
An instance of this class is bound to a specific working copy |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
195 |
directory, and provides an API to perform various Subversion |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
196 |
operations on this working copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
197 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
198 |
Some methods take a 'depth' argument. Depth in Subversion is a |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
199 |
feature that allows the creation of arbitrarily shallow or deep |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
200 |
working copies on a per-directory basis. Possible values are |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
201 |
'none' (no files or directories), 'files' (only files in .), |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
202 |
'immediates' (files and directories in ., directories checked out |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
203 |
at depth 'none') or 'infinity' (a normal working copy with |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
204 |
everything). |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
205 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
206 |
This class also provides a few static functions that run the 'svn' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
207 |
tool against remote repositories to gather information or retrieve |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
208 |
data. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
209 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
210 |
Note that this wrapper also doubles as a Paths object, offering an |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
211 |
easy way to get or check the existence of paths in the working |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
212 |
copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
213 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
214 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
215 |
def __init__(self, wc_dir): |
1826
12de6d73a908
Followup to r2496. Fix obvious errors.
David Anderson <david.jc.anderson@gmail.com>
parents:
1825
diff
changeset
|
216 |
util.Paths.__init__(self, wc_dir) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
217 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
218 |
def _unknownAndMissing(self, path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
219 |
"""Returns lists of unknown and missing files in the working copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
220 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
221 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
222 |
path: The working copy path to scan. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
223 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
224 |
Returns: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
225 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
226 |
Two lists. The first is a list of all unknown paths |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
227 |
(subversion has no knowledge of them), the second is a list |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
228 |
of missing paths (subversion knows about them, but can't |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
229 |
find them). Paths in either list are relative to the input |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
230 |
path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
231 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
232 |
assert self.exists() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
233 |
unknown = [] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
234 |
missing = [] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
235 |
for line in self.status(path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
236 |
if not line.strip(): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
237 |
continue |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
238 |
if line[0] == '?': |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
239 |
unknown.append(line[7:]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
240 |
elif line[0] == '!': |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
241 |
missing.append(line[7:]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
242 |
return unknown, missing |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
243 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
244 |
def checkout(self, url, depth='infinity'): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
245 |
"""Check out a working copy from the given URL. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
246 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
247 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
248 |
url: The Subversion repository URL to check out. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
249 |
depth: The depth of the working copy root. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
250 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
251 |
assert not self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
252 |
util.run(['svn', 'checkout', '--depth=' + depth, url, self.path()]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
253 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
254 |
def update(self, path='', depth=None): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
255 |
"""Update a working copy path, optionally changing depth. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
256 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
257 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
258 |
path: The working copy path to update. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
259 |
depth: If set, change the depth of the path before updating. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
260 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
261 |
assert self.exists() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
262 |
if depth is None: |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
263 |
util.run(['svn', 'update', self.path(path)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
264 |
else: |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
265 |
util.run(['svn', 'update', '--set-depth=' + depth, self.path(path)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
266 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
267 |
def revert(self, path=''): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
268 |
"""Recursively revert a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
269 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
270 |
Note that this command is more zealous than the 'svn revert' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
271 |
command, as it will also delete any files which subversion |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
272 |
does not know about. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
273 |
""" |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
274 |
util.run(['svn', 'revert', '-R', self.path(path)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
275 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
276 |
unknown, missing = self._unknownAndMissing(path) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
277 |
unknown = [os.path.join(self.path(path), p) for p in unknown] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
278 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
279 |
if unknown: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
280 |
# rm -rf makes me uneasy. Verify that all paths to be deleted |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
281 |
# are within the release working copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
282 |
for p in unknown: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
283 |
assert p.startswith(self.path()) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
284 |
|
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
285 |
util.run(['rm', '-rf', '--'] + unknown) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
286 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
287 |
def ls(self, dir=''): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
288 |
"""List the contents of a working copy directory. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
289 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
290 |
Note that this returns the contents of the directory as seen |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
291 |
by the server, not constrained by the depth settings of the |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
292 |
local path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
293 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
294 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
295 |
return util.run(['svn', 'ls', self.path(dir)], capture=True) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
296 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
297 |
def copy(self, src, dest): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
298 |
"""Copy a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
299 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
300 |
The copy is only scheduled for commit, not committed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
301 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
302 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
303 |
src: The source working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
304 |
dst: The destination working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
305 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
306 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
307 |
util.run(['svn', 'cp', self.path(src), self.path(dest)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
308 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
309 |
def propget(self, prop_name, path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
310 |
"""Get the value of a property on a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
311 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
312 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
313 |
prop_name: The property name, eg. 'svn:externals'. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
314 |
path: The working copy path on which the property is set. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
315 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
316 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
317 |
return util.run(['svn', 'propget', prop_name, self.path(path)], |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
318 |
capture=True) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
319 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
320 |
def propset(self, prop_name, prop_value, path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
321 |
"""Set the value of a property on a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
322 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
323 |
The property change is only scheduled for commit, not committed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
324 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
325 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
326 |
prop_name: The property name, eg. 'svn:externals'. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
327 |
prop_value: The value that should be set. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
328 |
path: The working copy path on which to set the property. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
329 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
330 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
331 |
util.run(['svn', 'propset', prop_name, prop_value, self.path(path)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
332 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
333 |
def add(self, paths): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
334 |
"""Schedule working copy paths for addition. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
335 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
336 |
The paths are only scheduled for addition, not committed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
337 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
338 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
339 |
paths: The list of working copy paths to add. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
340 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
341 |
assert self.exists() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
342 |
paths = [self.path(p) for p in paths] |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
343 |
util.run(['svn', 'add'] + paths) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
344 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
345 |
def remove(self, paths): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
346 |
"""Schedule working copy paths for deletion. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
347 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
348 |
The paths are only scheduled for deletion, not committed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
349 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
350 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
351 |
paths: The list of working copy paths to delete. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
352 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
353 |
assert self.exists() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
354 |
paths = [self.path(p) for p in paths] |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
355 |
util.run(['svn', 'rm'] + paths) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
356 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
357 |
def status(self, path=''): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
358 |
"""Return the status of a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
359 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
360 |
The status returned is the verbatim output of 'svn status' on |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
361 |
the path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
362 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
363 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
364 |
path: The path to examine. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
365 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
366 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
367 |
return util.run(['svn', 'status', self.path(path)], capture=True) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
368 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
369 |
def addRemove(self, path=''): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
370 |
"""Perform an "addremove" operation a working copy path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
371 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
372 |
An "addremove" runs 'svn status' and schedules all the unknown |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
373 |
paths (listed as '?') for addition, and all the missing paths |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
374 |
(listed as '!') for deletion. Its main use is to synchronize |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
375 |
working copy state after applying a patch in unified diff |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
376 |
format. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
377 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
378 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
379 |
path: The path under which unknown/missing files should be |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
380 |
added/removed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
381 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
382 |
assert self.exists() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
383 |
unknown, missing = self._unknownAndMissing(path) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
384 |
if unknown: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
385 |
self.add(unknown) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
386 |
if missing: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
387 |
self.remove(missing) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
388 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
389 |
def commit(self, message, path=''): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
390 |
"""Commit scheduled changes to the source repository. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
391 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
392 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
393 |
message: The commit message to use. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
394 |
path: The path to commit. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
395 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
396 |
assert self.exists() |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
397 |
util.run(['svn', 'commit', '-m', message, self.path(path)]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
398 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
399 |
@staticmethod |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
400 |
def export(url, revision, dest_path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
401 |
"""Export the contents of a repository to a local path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
402 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
403 |
Note that while the underlying 'svn export' only requires a |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
404 |
URL, we require that both a URL and a revision be specified, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
405 |
to fully qualify the data to export. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
406 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
407 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
408 |
url: The repository URL to export. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
409 |
revision: The revision to export. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
410 |
dest_path: The destination directory for the export. Note |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
411 |
that this is an absolute path, NOT a working copy |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
412 |
relative path. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
413 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
414 |
assert os.path.isabs(dest_path) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
415 |
if os.path.exists(dest_path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
416 |
raise ObstructionError('Cannot export to obstructed path %s' % |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
417 |
dest_path) |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
418 |
util.run(['svn', 'export', '-r', str(revision), url, dest_path]) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
419 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
420 |
@staticmethod |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
421 |
def find_tag_rev(url): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
422 |
"""Return the revision at which a remote tag was created. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
423 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
424 |
Since tags are immutable by convention, usually the HEAD of a |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
425 |
tag should be the tag creation revision. However, mistakes can |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
426 |
happen, so this function will walk the history of the given |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
427 |
tag URL, stopping on the first revision that was created by |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
428 |
copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
429 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
430 |
This detection is not foolproof. For example: it will be |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
431 |
fooled by a tag that was created, deleted, and recreated by |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
432 |
copy at a different revision. It is not clear what the desired |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
433 |
behavior in these edge cases are, and no attempt is made to |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
434 |
handle them. You should request user confirmation before using |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
435 |
the result of this function. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
436 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
437 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
438 |
url: The repository URL of the tag to examine. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
439 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
440 |
try: |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
441 |
output = util.run(['svn', 'log', '-q', '--stop-on-copy', url], |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
442 |
capture=True) |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
443 |
except util.SubprocessFailed: |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
444 |
raise ExpectationFailed('No tag at URL ' + url) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
445 |
first_rev_line = output[-2] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
446 |
first_rev = int(first_rev_line.split()[0][1:]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
447 |
return first_rev |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
448 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
449 |
@staticmethod |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
450 |
def diff(url, revision): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
451 |
"""Retrieve a revision from a remote repository as a unified diff. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
452 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
453 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
454 |
url: The repository URL on which to perform the diff. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
455 |
revision: The revision to extract at the given url. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
456 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
457 |
Returns: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
458 |
A string containing the changes extracted from the remote |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
459 |
repository, in unified diff format suitable for application |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
460 |
using 'patch'. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
461 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
462 |
try: |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
463 |
return util.run(['svn', 'diff', '-c', str(revision), url], |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
464 |
capture=True, split_capture=False) |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
465 |
except util.SubprocessFailed: |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
466 |
raise ExpectationFailed('Could not get diff for r%d ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
467 |
'from remote repository' % revision) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
468 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
469 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
470 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
471 |
# Decorators for use in ReleaseEnvironment. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
472 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
473 |
def pristine_wc(f): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
474 |
"""A decorator that cleans up the release repository.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
475 |
@functools.wraps(f) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
476 |
def revert_wc(self, *args, **kwargs): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
477 |
self.wc.revert() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
478 |
return f(self, *args, **kwargs) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
479 |
return revert_wc |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
480 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
481 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
482 |
def requires_branch(f): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
483 |
"""A decorator that checks that a release branch is active.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
484 |
@functools.wraps(f) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
485 |
def check_branch(self, *args, **kwargs): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
486 |
if self.branch is None: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
487 |
raise ExpectationFailed( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
488 |
'This operation requires an active release branch') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
489 |
return f(self, *args, **kwargs) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
490 |
return check_branch |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
491 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
492 |
|
1825
a610a2df83d2
Move the Paths class to the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1824
diff
changeset
|
493 |
class ReleaseEnvironment(util.Paths): |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
494 |
"""Encapsulates the state of a Melange release rolling environment. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
495 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
496 |
This class contains the actual releasing logic, and makes use of |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
497 |
the previously defined utility classes to carry out user commands. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
498 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
499 |
Attributes: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
500 |
release_repos: The URL to the Google release repository root. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
501 |
upstream_repos: The URL to the Melange upstream repository root. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
502 |
wc: A Subversion object encapsulating a Google SoC working copy. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
503 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
504 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
505 |
BRANCH_FILE = 'BRANCH' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
506 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
507 |
def __init__(self, root, release_repos, upstream_repos): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
508 |
"""Initializer. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
509 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
510 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
511 |
root: The root of the release environment. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
512 |
release_repos: The URL to the Google release repository root. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
513 |
upstream_repos: The URL to the Melange upstream repository root. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
514 |
""" |
1826
12de6d73a908
Followup to r2496. Fix obvious errors.
David Anderson <david.jc.anderson@gmail.com>
parents:
1825
diff
changeset
|
515 |
util.Paths.__init__(self, root) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
516 |
self.wc = Subversion(self.path('google-soc')) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
517 |
self.release_repos = release_repos.strip('/') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
518 |
self.upstream_repos = upstream_repos.strip('/') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
519 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
520 |
if not self.wc.exists(): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
521 |
self._InitializeWC() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
522 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
523 |
self.wc.revert() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
524 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
525 |
if self.exists(self.BRANCH_FILE): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
526 |
branch = fileToLines(self.path(self.BRANCH_FILE))[0] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
527 |
self._switchBranch(branch) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
528 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
529 |
self._switchBranch(None) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
530 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
531 |
def _InitializeWC(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
532 |
"""Check out the initial release repository. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
533 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
534 |
Will also select the latest release branch, if any, so that |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
535 |
the end state is a fully ready to function release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
536 |
environment. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
537 |
""" |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
538 |
log.info('Checking out the release repository') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
539 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
540 |
# Check out a sparse view of the relevant repository paths. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
541 |
self.wc.checkout(self.release_repos, depth='immediates') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
542 |
self.wc.update('vendor', depth='immediates') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
543 |
self.wc.update('branches', depth='immediates') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
544 |
self.wc.update('tags', depth='immediates') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
545 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
546 |
# Locate the most recent release branch, if any, and switch |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
547 |
# the release environment to it. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
548 |
branches = self._listBranches() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
549 |
if not branches: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
550 |
self._switchBranch(None) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
551 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
552 |
self._switchBranch(branches[-1]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
553 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
554 |
def _listBranches(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
555 |
"""Return a list of available Melange release branches. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
556 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
557 |
Branches are returned in sorted order, from least recent to |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
558 |
most recent in release number ordering. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
559 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
560 |
assert self.wc.exists('branches') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
561 |
branches = self.wc.ls('branches') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
562 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
563 |
# Some early release branches used a different naming scheme |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
564 |
# that doesn't sort properly with new-style release names. We |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
565 |
# filter those out here, along with empty lines. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
566 |
branches = [b.strip('/') for b in branches |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
567 |
if MELANGE_RELEASE_RE.match(b.strip('/'))] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
568 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
569 |
return sorted(branches) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
570 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
571 |
def _switchBranch(self, release): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
572 |
"""Activate the branch matching the given release. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
573 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
574 |
Once activated, this branch is the target of future release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
575 |
operations. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
576 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
577 |
None can be passed as the release. The result is that no |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
578 |
branch is active, and all operations that require an active |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
579 |
branch will fail until a branch is activated again. This is |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
580 |
used only at initialization, when it is detected that there |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
581 |
are no available release branches to activate. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
582 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
583 |
Args: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
584 |
release: The version number of a Melange release already |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
585 |
imported in the release repository, or None to |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
586 |
activate no branch. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
587 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
588 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
589 |
if release is None: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
590 |
self.branch = None |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
591 |
self.branch_dir = None |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
592 |
log.info('No release branch available') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
593 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
594 |
self.wc.update() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
595 |
assert self.wc.exists('branches/' + release) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
596 |
linesToFile(self.path(self.BRANCH_FILE), [release]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
597 |
self.branch = release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
598 |
self.branch_dir = 'branches/' + release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
599 |
self.wc.update(self.branch_dir, depth='infinity') |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
600 |
log.info('Working on branch ' + self.branch) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
601 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
602 |
def _branchPath(self, path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
603 |
"""Return the given path with the release branch path prepended.""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
604 |
assert self.branch_dir is not None |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
605 |
return os.path.join(self.branch_dir, path) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
606 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
607 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
608 |
# Release engineering commands. See further down for their |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
609 |
# integration into a commandline interface. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
610 |
# |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
611 |
@pristine_wc |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
612 |
def update(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
613 |
"""Update and clean the release repository""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
614 |
self.wc.update() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
615 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
616 |
@pristine_wc |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
617 |
def switchToBranch(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
618 |
"""Switch to another Melange release branch""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
619 |
branches = self._listBranches() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
620 |
if not branches: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
621 |
raise ExpectationFailed( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
622 |
'No branches available. Please import one.') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
623 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
624 |
choice = getChoice('Available release branches:', |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
625 |
'Your choice?', |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
626 |
branches, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
627 |
suggest=len(branches)-1) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
628 |
self._switchBranch(branches[choice]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
629 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
630 |
def _addAppYaml(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
631 |
"""Create a Google production app.yaml configuration. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
632 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
633 |
The file is copied and modified from the upstream |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
634 |
app.yaml.template, configure for Google's Summer of Code App |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
635 |
Engine instance, and committed. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
636 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
637 |
if self.wc.exists(self._branchPath('app/app.yaml')): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
638 |
raise ObstructionError('app/app.yaml exists already') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
639 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
640 |
yaml_path = self._branchPath('app/app.yaml') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
641 |
self.wc.copy(yaml_path + '.template', yaml_path) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
642 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
643 |
yaml = fileToLines(self.wc.path(yaml_path)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
644 |
out = [] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
645 |
for i, line in enumerate(yaml): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
646 |
stripped_line = line.strip() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
647 |
if 'TODO' in stripped_line: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
648 |
continue |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
649 |
elif stripped_line == '# application: FIXME': |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
650 |
out.append('application: socghop') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
651 |
elif stripped_line.startswith('version:'): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
652 |
out.append(line.lstrip() + 'g0') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
653 |
out.append('# * initial Google fork of Melange ' + |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
654 |
self.branch) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
655 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
656 |
out.append(line) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
657 |
linesToFile(self.wc.path(yaml_path), out) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
658 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
659 |
self.wc.commit('Create app.yaml with Google patch version g0 ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
660 |
'in branch ' + self.branch) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
661 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
662 |
def _applyGooglePatches(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
663 |
"""Apply Google-specific patches to a vanilla Melange release. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
664 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
665 |
Each patch is applied and committed in turn. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
666 |
""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
667 |
# Edit the base template to point users to the Google fork |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
668 |
# of the Melange codebase instead of the vanilla release. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
669 |
tmpl_file = self.wc.path( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
670 |
self._branchPath('app/soc/templates/soc/base.html')) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
671 |
tmpl = fileToLines(tmpl_file) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
672 |
for i, line in enumerate(tmpl): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
673 |
if 'http://code.google.com/p/soc/source/browse/tags/' in line: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
674 |
tmpl[i] = line.replace('/p/soc/', '/p/soc-google/') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
675 |
break |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
676 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
677 |
raise ExpectationFailed( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
678 |
'No source code link found in base.html') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
679 |
linesToFile(tmpl_file, tmpl) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
680 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
681 |
self.wc.commit( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
682 |
'Customize the Melange release link in the sidebar menu') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
683 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
684 |
@pristine_wc |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
685 |
def importTag(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
686 |
"""Import a new Melange release""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
687 |
release = getString('Enter the Melange release to import:') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
688 |
if not release: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
689 |
AbortedByUser('No release provided, import aborted') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
690 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
691 |
branch_dir = 'branches/' + release |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
692 |
if self.wc.exists(branch_dir): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
693 |
raise ObstructionError('Release %s already imported' % release) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
694 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
695 |
tag_url = '%s/tags/%s' % (self.upstream_repos, release) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
696 |
release_rev = Subversion.find_tag_rev(tag_url) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
697 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
698 |
if confirm('Confirm import of release %s, tagged at r%d?' % |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
699 |
(release, release_rev)): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
700 |
# Add an entry to the vendor externals for the Melange |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
701 |
# release. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
702 |
externals = self.wc.propget('svn:externals', 'vendor/soc') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
703 |
externals.append('%s -r %d %s' % (release, release_rev, tag_url)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
704 |
self.wc.propset('svn:externals', '\n'.join(externals), 'vendor/soc') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
705 |
self.wc.commit('Add svn:externals entry to pull in Melange ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
706 |
'release %s at r%d.' % (release, release_rev)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
707 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
708 |
# Export the tag into the release repository's branches |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
709 |
Subversion.export(tag_url, release_rev, self.wc.path(branch_dir)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
710 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
711 |
# Add and commit the branch add (very long operation!) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
712 |
self.wc.add([branch_dir]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
713 |
self.wc.commit('Branch of Melange release %s' % release, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
714 |
branch_dir) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
715 |
self._switchBranch(release) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
716 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
717 |
# Commit the production GSoC configuration and |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
718 |
# google-specific patches. |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
719 |
self._addAppYaml() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
720 |
self._applyGooglePatches() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
721 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
722 |
# All done! |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
723 |
log.info('Melange release %s imported and googlified' % self.branch) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
724 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
725 |
@requires_branch |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
726 |
@pristine_wc |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
727 |
def cherryPickChange(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
728 |
"""Cherry-pick a change from the Melange trunk""" |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
729 |
rev = getNumber('Revision number to cherry-pick:') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
730 |
bug = getNumber('Issue fixed by this change:') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
731 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
732 |
diff = self.wc.diff(self.upstream_repos + '/trunk', rev) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
733 |
if not diff.strip(): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
734 |
raise ExpectationFailed( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
735 |
'Retrieved diff is empty. ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
736 |
'Did you accidentally cherry-pick a branch change?') |
1827
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
737 |
util.run(['patch', '-p0'], cwd=self.wc.path(self.branch_dir), |
c03995a6a88e
Move run() into the util module.
David Anderson <david.jc.anderson@gmail.com>
parents:
1826
diff
changeset
|
738 |
stdin=diff) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
739 |
self.wc.addRemove(self.branch_dir) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
740 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
741 |
yaml_path = self.wc.path(self._branchPath('app/app.yaml')) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
742 |
out = [] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
743 |
updated_patchlevel = False |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
744 |
for line in fileToLines(yaml_path): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
745 |
if line.strip().startswith('version: '): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
746 |
version = line.strip().split()[-1] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
747 |
base, patch = line.rsplit('g', 1) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
748 |
new_version = '%sg%d' % (base, int(patch) + 1) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
749 |
message = ('Cherry-picked r%d from /p/soc/ to fix issue %d' % |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
750 |
(rev, bug)) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
751 |
out.append('version: ' + new_version) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
752 |
out.append('# * ' + message) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
753 |
updated_patchlevel = True |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
754 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
755 |
out.append(line) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
756 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
757 |
if not updated_patchlevel: |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
758 |
log.error('Failed to update Google patch revision') |
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
759 |
log.error('Cherry-picking failed') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
760 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
761 |
linesToFile(yaml_path, out) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
762 |
|
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
763 |
log.info('Check the diff about to be committed with:') |
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
764 |
log.info('svn diff ' + self.wc.path(self.branch_dir)) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
765 |
if not confirm('Commit this change?'): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
766 |
raise AbortedByUser('Cherry-pick aborted') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
767 |
self.wc.commit(message) |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
768 |
log.info('Cherry-picked r%d from the Melange trunk.' % rev) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
769 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
770 |
MENU_ORDER = [ |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
771 |
update, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
772 |
switchToBranch, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
773 |
importTag, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
774 |
cherryPickChange, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
775 |
] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
776 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
777 |
MENU_STRINGS = [d.__doc__ for d in MENU_ORDER] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
778 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
779 |
MENU_SUGGESTIONS = { |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
780 |
None: update, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
781 |
update: cherryPickChange, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
782 |
switchToBranch: cherryPickChange, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
783 |
importTag: cherryPickChange, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
784 |
cherryPickChange: None, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
785 |
} |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
786 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
787 |
def interactiveMenu(self): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
788 |
done = [] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
789 |
last_choice = None |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
790 |
while True: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
791 |
# Show the user their previously completed operations and |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
792 |
# a suggested next op, to remind them where they are in |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
793 |
# the release process (useful after long operations that |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
794 |
# may have caused lunch or an extended context switch). |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
795 |
if last_choice is not None: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
796 |
last_command = self.MENU_ORDER[last_choice] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
797 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
798 |
last_command = None |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
799 |
suggested_next = self.MENU_ORDER.index( |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
800 |
self.MENU_SUGGESTIONS[last_command]) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
801 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
802 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
803 |
choice = getChoice('Main menu:', 'Your choice?', |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
804 |
self.MENU_STRINGS, done=done, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
805 |
suggest=suggested_next) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
806 |
except (KeyboardInterrupt, AbortedByUser): |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
807 |
log.info('Exiting.') |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
808 |
return |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
809 |
try: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
810 |
self.MENU_ORDER[choice](self) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
811 |
except Error, e: |
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
812 |
log.error(str(e)) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
813 |
else: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
814 |
done.append(choice) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
815 |
last_choice = choice |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
816 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
817 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
818 |
def main(argv): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
819 |
if not (1 <= len(argv) <= 3): |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
820 |
print ('Usage: gsoc-release.py [release repos root URL] ' |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
821 |
'[upstream repos root URL]') |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
822 |
sys.exit(1) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
823 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
824 |
release_repos, upstream_repos = GOOGLE_SOC_REPOS, MELANGE_REPOS |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
825 |
if len(argv) >= 2: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
826 |
release_repos = argv[1] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
827 |
if len(argv) == 3: |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
828 |
upstream_repos = argv[2] |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
829 |
|
1834
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
830 |
log.init('release.log') |
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
831 |
|
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
832 |
log.info('Release repository: ' + release_repos) |
0589bf1395c5
Add a log module to initialize and manage logging.
David Anderson <david.jc.anderson@gmail.com>
parents:
1827
diff
changeset
|
833 |
log.info('Upstream repository: ' + upstream_repos) |
1816
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
834 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
835 |
r = ReleaseEnvironment(os.path.abspath('_release_'), |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
836 |
release_repos, |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
837 |
upstream_repos) |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
838 |
r.interactiveMenu() |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
839 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
840 |
|
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
841 |
if __name__ == '__main__': |
07743b5295d3
Add the Google SoC release script to the Melange repository.
David Anderson <david.jc.anderson@gmail.com>
parents:
diff
changeset
|
842 |
main(sys.argv) |