1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
|
.TH REPA "1" "December 2013" "repa 0.2" "User Commands"
.SH NAME
.PP
repa - maintain code submissions to Tizen projects
.SH SYNOPSIS
.PP
.B repa [<global options>] <command> [<options>] <args>
.SH DESCRIPTION
.PP
\fIRepa\fR is a generic tool for maintaining code submissions to Tizen projects.
It allows to list submissions, group them into submission groups, accept or reject
them.
Submission is a code in the git tree(s) tagged with sumbit tag. Submission includes
code from one or multiple projects(so called group submission).
Submission group is a temporary group of submissions, created for testing purposes.
.PP
\fIRepa\fR commands:
.PP
.RS 2
1. \fBlist\fR - list submissions and submission groups
.RE
.RS 2
2. \fBshow\fR - show detailed info about submission or submission group
.RE
.RS 2
3. \fBaccept\fR - accept submissions
.RE
.RS 2
4. \fBreject\fR - reject submissions
.RE
.RS 2
5. \fBgroup\fR - group submissions into submission group
.RE
.RS 2
6. \fBrmgroup\fR - remove submission group
.RE
.RS 2
7. \fBdiff\fR - show the difference between projects
.RE
.RS 2
8. \fBrebuild\fR - rebuild submission
.RE
.RS 2
9. \fBlock\fR - lock submission
.RE
.RS 2
10. \fBunlock\fR - unlock submission
.RE
.RS 2
11. \fBremove\fR - remove submission
.RE
.RS 2
12. \fBupdate\fR - update submission
.RE
.\" ===========================================================================
.\" Global options
.\" ===========================================================================
.SH GLOBAL OPTIONS
.RE
.B \-\-version
.RS 2
Print \fIrepa\fR version and exit.
.RE
.PP
.B \-h, \-\-help
.RS 2
Print short help text and exit.
.RE
.PP
.B \-s, \-\-section SECTION
.RS 2
Config section to use
.RE
.PP
.B \-p, \-\-project PROJECT
.RS 2
Target OBS project.
.RE
.PP
.B \-c, \-\-colorize
.RS 2
Turn on colorized output
.RE
.\" ===========================================================================
.\" Commands descriptions
.\" ===========================================================================
.SH COMMANDS
.PP
.\"
.\" The "list" command description
.\"
.SS \fBlist\fR [\-\-help] [\-\-processes <processes>] [\-\-showurls] [\-\-ignore <regexp>] [\-\-base <project>] [\-\-showtime]
.RS 2
List submissions in the following format:
<Submission> <Target OBS Project> <status> <list of git paths>
Example of output:
submit/tizen/20140327.041126 broken source sdbd
.RS 0
submit/tizen/20140327.052722 package build failed emulator-yagl
.RS 0
submit/tizen/20140327.055105 package building libav zlib
.RS 0
submit/tizen/20140327.080733 image building bluez
.RS 0
submit/tizen/20140328.063916 ready 01:20:14 connman
.RS 0
submit/tizen/20140328.080409 ready 00:14:30 sdbd
.RS 0
.RE
.\"
.\" The "list" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "list" command and exit.
.RE
.PP
.B \-\-processes
PROCESSES
.RS 2
Use PROCESSES to specify the amount of python processes to run in parallel. Usage of this option can significantly speed up repa list.
Note, that this parameter can also be specified in \fIrepa\fR configuration file.
.RE
.PP
.B \-\-showurls
.RS 2
Show OBS and download urls in the output. It's switched off by default.
Note, that this parameter can also be specified in \fIrepa\fR configuration file.
.RE
.PP
.B \-\-ignore <regexp>
.RS 2
Ignore packaging failures for specified regexp. <regexp> is a slash-separated string <repository>/<architecture>/<package>, for example arm.*/armv7./.*_aggregate.
Note, that this parameter can also be specified in \fIrepa\fR configuration file.
.RE
.PP
.B \-\-base <project>
.RS 2
Show status of the submission in the base project.
Note, that this parameter can also be specified in \fIrepa\fR configuration file.
.RE
.PP
.B \-\-showtime
.RS 2
Show submission build time for the submissions in 'ready' status. It's switched off by default.
Note, that this parameter can also be specified in \fIrepa\fR configuration file.
.RE
.PP
.\"
.\" The "show" command description
.\"
.SS \fBshow\fR [\-\-help] \-\-project <project> <submission or group>
.RS 2
Show detailed information about submission
Download Url: url of prerelease directory on download server
OBS Url: url of prerelease OBS project
Images: list of image names and their build statuses
Package build failures: list of failed package builds
.PP
Example of output:
.RS 0
Submission: submit/tizen/20140328.213722
.RS 0
Download Url: http://download.tizen.org/prerelease/tizen/ivi/ivi/tizen_20140328.8/tizen_20140328.8.20140328.213722/
.RS 0
OBS Url: https://build.tizen.org/project/show?project=home:prerelease:Tizen:IVI:submit:tizen:20140328.213722
.RS 0
Images:
ivi-min-mbr-i586 success
ivi-min-efi-i586 success
ivi-mbr-i586-emul success
ivi-mbr-i586 success
ivi-efi-i586 success
ivi-mbr-i586-JJ failed
Package build failures:
wifi-direct-manager failed
.RE
.\"
.\" The "show" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
\-h, \-\-help
.RS 2
Print short help text about the "show" command and exit.
.RE
.\"
.\" The "accept" command description
.\"
.SS \fBaccept\fR [options] <submission or group>
.RS 2
Accept submission or submission group. Acceptance is done by creating
Submit Request in OBS for submission or group and immediately accepting it.
.\"
.\" The "accept" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
\-h, \-\-help
.RS 2
Print short help text about the "accept" command and exit.
.RE
.PP
\-comment COMMENT
.RS 2
Add acceptance comment for created SR.
.RE
.PP
\-j \-\-jenkins
.RS 2
Trigger Jenkins job to accept submission.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "reject" command description
.\"
.SS \fBreject\fR [options] <submission or group>
.RS 2
Reject submission or submission group. Rejection is done by creating
Submit Request in OBS for submission or group and immediately rejecting it.
.\"
.\" The "reject" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
\-h, \-\-help
.RS 2
Print short help text about the "reject" command and exit.
.RE
.PP
\-comment COMMENT
.RS 2
Add rejection comment for created SR.
.RE
.PP
\-j \-\-jenkins
.RS 2
Trigger Jenkins job to reject submission.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "group" command description
.\"
.SS \fBgroup\fR [options] <list of submissions>
.RS 2
Group submissions into submit group. Submit group is a temporary by its nature.
It's created for testing purposes. Internally submit group is an OBS project with
aggregated packages from groupped submissions. It's a way to test, accept or
or reject multiple submissions at once.
Note! No package builds are performed in group projects. The grouping function
aggregates binaries only and is intended only for image testing.
.\"
.\" The "group" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
\-h, \-\-help
.RS 2
Print short help text about the "group" command and exit.
.RE
.PP
\-comment COMMENT
.RS 2
Add comment to created submit group. It will be shown by list command.
.RE
.PP
\--noaggregate <regexp>
.RS 2
Do not aggregate binary packages matching regexp. This is useful to skip aggregates, propagated by OBS from target project to prerlease projects, e.g. qemu-accel-*, mic-bootstrap, etc.
.RE
.\"
.\" The "rmgroup" command description
.\"
.SS \fBrmgroup\fR [options] <submit group>
.RS 2
Remove submit group.
.\"
.\" The "rmgroup" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
\-h, \-\-help
.RS 2
Print short help text about the "rmgroup" command and exit.
.RE
.PP
.\"
.\" The "diff" command description
.\"
.SS \fBdiff\fR [\-\-help] <project to compare> <manifest to compare> <manifest of target project>
.RS 2
Show the difference between manifest of target project and manifest of <project to compare> in the following format:
<Git path> <Revision in project to compare> <Revision in the target OBS Project> <Tag, accepted into project to compare>
.RS 0
Example of output:
$ repa -p Tizen:IVI diff Tizen:Common ivi_0140508.2_ia32.xml common_20140507.5_ia32.xml
platform/core/appfw/aul-1 3644ad5459 e4f2b22012 submit/tizen/20140502.084937
.RS 0
platform/core/appfw/shortcut 502c7807b3 27bbf892e0 submit/tizen/20140430.020549
.RS 0
platform/core/connectivity/nfc-manager-neard ea952dc454 88793ab1ff None
.RS 0
platform/core/connectivity/smartcard-service e45ae0bdfb 7d5da70551 submit/tizen/20140506.101200
.RS 0
platform/core/messaging/msg-service c988cc8b55 a9eed6a734 submit/tizen/20140502.105814
.RS 0
platform/core/system/tlm 3ddbc6bc14 None submit/tizen/20140430.130050
.RS 0
platform/framework/web/crosswalk 42dcc1327b 4280e52757 submit/tizen/20140506.123703
.RS 0
Status 'pending' means that submission is pending for the target project. In colorized mode pending submissions are colorized and 'pending' status is not shown.
.RE
.\"
.\" The "diff" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "diff" command and exit.
.RE
.\"
.\" The "rebuild" command description
.\"
.SS \fBrebuild\fR [options] <submision>
.RS 2
Rebuild submission by triggering 're' Jenkins job. 're' job triggering rebuild by re-exports packages in submission. By default it re-exports all packages. It's also possible to re-export only one package using --package command line option.
.\"
.\" The "rebuild" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "rebuild" command and exit.
.RE
.PP
.B \-c \-\-comment COMMENT
.RS 2
Provide a comment with the explanation of a reason for rebuild. Mandatory option.
.RE
.PP
.B \-p \-\-package <package name>
.RS 2
Rebuild only one package.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "lock" command description
.\"
.SS \fBlock\fR [options] <submision>
.RS 2
Lock submission by triggering 're' Jenkins job. 're' job locks submission by disabling build in prerelease OBS project.
.\"
.\" The "lock" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "lock" command and exit.
.RE
.PP
.B \-c \-\-comment COMMENT
.RS 2
Provide a comment with the explanation of a reason for lock. Mandatory option.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "unlock" command description
.\"
.SS \fBunlock\fR [options] <submision>
.RS 2
Unlock submission by triggering 're' Jenkins job. 're' job unlocks submission by re-enabling build in prerelease OBS project.
.\"
.\" The "unlock" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "unlock" command and exit.
.RE
.PP
.B \-c \-\-comment COMMENT
.RS 2
Provide a comment with the explanation of a reason for unlock.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "remove" command description
.\"
.SS \fBremove\fR [options] <submision>
.RS 2
Remove submission by triggering 're' Jenkins job. 're' job remove prerelease OBS project.
.\"
.\" The "remove" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "remove" command and exit.
.RE
.PP
.B \-c \-\-comment COMMENT
.RS 2
Provide a comment with the explanation of a reason for remove. This is mandatory option.
.RE
.PP
\-e \-\-edit
.RS 2
Run editor to edit comment. Editor is taken from EDITOR environment variable.
.RE
.\"
.\" The "update" command description
.\"
.SS \fBupdate\fR <submission> [options]
.RS 2
Update submission
.\"
.\" The "remove" command's options
.\"
.RS 2
\fBOPTIONS\fR
.RS 2
.B \-h, \-\-help
.RS 2
Print short help text about the "update" command and exit.
.RE
.PP
.B \-r \-\-refprj COMMENT
.RS 2
Provide a update with the reference project. This is mandatory option.
.RE
.SH CONFIGURATION FILE
.RS 2
Configuration file has an INI-file syntax. \fIrepa\fR looks for config files in two locations: global /etc/repa.conf and local ~/.repa.conf. Values from global configuration file are overwritten by values from local configuration file. Command line options have highest priority and overwrite options from configuration files.
.RE
.RS 2
Example:
.RE
.RS 2
[general]
.RE
.RS 2
apiurl = https://build.tizen.org
.RE
.RS 2
apiuser = your_user_name
.RE
.RS 2
apipasswd = your_password
.RE
.RS 2
jenkins_url = https://robot.tizen.org
.RE
.RS 2
jenkins_user = your_jenkins_user_name
.RE
.RS 2
jenkins_passwd = your_jenkins_password
.RE
.RS 2
processes = 20
.RE
.RS 2
project = Tizen:IVI
.RE
.RS 2
base = Tizen:Common
.RE
.RS 2
color = off
.RE
.RS 2
showurls = off
.RE
.RS 2
ignore = arm-.*/armv7./.*_aggregate$
.RE
.RS 2
noaggregate = mic-bootstrap-x86-arm.rpm|mic-bootstrap.rpm|mic-bootstrap-debugsource.rpm|qemu-accel-armv7l.rpm|qemu-accel-armv7l-cross-arm.rpm|qemu-linux-user-cross-arm.rpm
.RE
.RS 2
showtime = off
.RE
.RS 2
accept_comment = default comment
for accept
command
.RE
.RS 2
reject_comment = default comment
for reject
command
.RE
.RS 2
rebuild_comment = default comment
for rebuild
command
.RE
.RS 2
lock_comment = default comment
for lock
command
.RE
.RS 2
unlock_comment = default comment
for unlock
command
.RE
.RS 2
remove_comment = default comment
for remove
command
.RE
.RS 2
Mandatory options: apiurl, apiuser, apipasswd, jenkins_url, jenkins_user, jenkins_passwd and project
.RE
.RS 2
Some options (project, processes, colorize, showurls, ignore, noaggregate, base, showtime) can be overridden by commandline options (--project, --processes, --colorize, --showurls, --ignore, --noaggregate, --base, --showtime)
.RE
.SH BUGS
Please, report bugs to Ed Bartosh <eduard.bartosh@intel.com>.
.SH COPYRIGHT
Copyright (C) Intel Corporation 2013
.SH LICENCE
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
.SH AUTHORS
Repa is developed and maintained by Ed Bartosh <eduard.bartosh@intel.com>.
|