|
a/Allura/push_re.py |
|
b/Allura/push_re.py |
|
... |
|
... |
12 |
def main():
|
12 |
def main():
|
13 |
CP.read(os.path.join(os.environ['HOME'], '.forgepushrc'))
|
13 |
CP.read(os.path.join(os.environ['HOME'], '.forgepushrc'))
|
14 |
engineer = option('re', 'engineer', 'Name of engineer pushing: ')
|
14 |
engineer = option('re', 'engineer', 'Name of engineer pushing: ')
|
15 |
text, tag = make_ticket_text(engineer)
|
15 |
text, tag = make_ticket_text(engineer)
|
16 |
print '*** Create a ticket on SourceForge (https://sourceforge.net/p/allura/tickets/new/) with the following contents:'
|
16 |
print '*** Create a ticket on SourceForge (https://sourceforge.net/p/allura/tickets/new/) with the following contents:'
|
17 |
print '*** Summary: Production Push (R:%s, D:%s)' % (
|
17 |
print '*** Summary: Production Push (R:%s, D:%s) - allura' % (
|
18 |
tag, date.today().strftime('%Y%m%d'))
|
18 |
tag, date.today().strftime('%Y%m%d'))
|
19 |
print '---BEGIN---'
|
19 |
print '---BEGIN---'
|
20 |
print text
|
20 |
print text
|
21 |
print '---END---'
|
21 |
print '---END---'
|
22 |
raw_input("Verify that there are no new dependencies, or RPM's are build for all deps...")
|
22 |
raw_input("Verify that there are no new dependencies, or RPM's are build for all deps...")
|