summaryrefslogtreecommitdiff
path: root/repa.1
AgeCommit message (Collapse)AuthorFilesLines
2014-12-14Implement --base option for repa listEd Bartosh1-2/+12
This option shows status of submission in base project if submission is pending there. Fixes: #2268 Change-Id: Idee9fafa6f8c92c524300240729778d46441d092 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-12-14Reworked repa diffEd Bartosh1-10/+10
Now repa diff uses _service:gbs:_git-meta to get tags from compare project. It makes it much faster and reliable than previously. Fixes: #1869 Change-Id: I5b11845afe2c73b2de38cb830d050fb57742c0ed Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-06-17Implement --noaggregate command line and config optionEd Bartosh1-1/+10
After adding arm targets to Tizen:IVI and Tizen:Common it became impossible for repa to create groups as every submission contains mic-bootstrap and qemu aggregated packages. Repa doesn't allow to group submissions if they contain the same packages. This is quite ugly solution. repa group should be refactored to allow proper implementation. With this line in config: 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 it should be possible to create groups again. Fixes: #1990 Change-Id: I4d13a95e6947634df87eead2821efbd943d85822 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-06-13list: Implement --ignore command line optionEd Bartosh1-2/+11
This option gives user possibility to ignore broken state of packages. For Tizen:Common and Tizen:IVI it's must have currently as _aggregate packages are broken in prerelease projects because of OBS bug. This causes wrong status reported for all submissions. Change-Id: Iaac19a922a4b5996aff8d7cd277f20ec6868794c Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-05-19Correct man page for accept and reject subcommandsEd Bartosh1-8/+8
Fixed wrong description of accept and reject. They don't accept list of submissions and submit groups. They accept only one parameter - submission or submit group. Change-Id: Ib4add5cbe027e02638a742cd156c1c5d84aceea3 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-05-19Implement repa diffEd Bartosh1-0/+51
repa diff shows the difference between manifest of target project and another (usually base) project. It also shows latest accepted submission in another project and its status in target project. repa diff should help RE to mantain the difference between base and target projects. Change-Id: I6ef93a5eb2c5a60b3778a721caa8be47da9f5882 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-11Implemented --showurls optionEd Bartosh1-2/+13
Some users want to see urls in repa list output. It's inconvenient for them to use repa info for every submission to see the urls. Fixes: #1789 Change-Id: I7cc31bc327fc9593ab21efdd85fe4fe6accfd544 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-07Implement --colorize optionEd Bartosh1-1/+9
For now only status is colorized in repa list output. More colorized pieces will come if users request them. Fixes: #1765 Change-Id: Ic0517aaa03f443d4e661018a9638712a9afa514b Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-02Get rid of --regexp command line optionEd Bartosh1-9/+1
Dropped --regexp in favor of --project, which is much more clear and used in all modes. Fixes: #1772 Change-Id: I5347190f41f6c704fe2091909435aaeaa5452f62 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Update man regarding global optionsEd Bartosh1-2/+2
Mentioned <global options> in synopsys. Renamed section OPTIONS->GLOBAL OPTIONS Change-Id: Iac09199756ef0d1e9d24a851be0266f6a9a370b6 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Update repa version in the man pageEd Bartosh1-1/+1
Change-Id: Ie9d3aca2ca3f80fa0f24fa84b7dcb7d3896d42b8 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Mention --section in man pageEd Bartosh1-0/+6
Global command line option -s/--section was not mentioned in the man. Change-Id: I5b765258fb2d3b76e5dfcecb22aae69262806b25 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Add configuration file info to the man pageEd Bartosh1-0/+37
Fixes: #1764 Change-Id: I62d75e44aac796605c23cfc5ad9820e44b55de9d Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Make project mandatory config optionEd Bartosh1-31/+7
As --project option was mandatory in most of the subcommands let's make project mandatory config option. --project becomes non-mandatory global option. Fixes: #1763 Change-Id: Id7f94fc5d60a1d163bde614ecf0605f944448337 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Implement repa infoEd Bartosh1-4/+63
repa info shows as much information about one submission as possible. Fixes: #1195 Change-Id: I3822bae22c0f86abdaa842c067c95ade6f99d918 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Reduce amount of information in repa list outputEd Bartosh1-23/+13
Repa info will print only small part of information available. More detailed output will be implemented in repa info mode. Change-Id: I8e7ba14588f7e550515f0c03cfc84051ee2d962c Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-04-01Implement --processes options for repa listEd Bartosh1-1/+10
Repa list makes a lot of queries to OBS, which results in slow output. With --processes it queries OBS in parallel utilizing functionality of multiprocessing module. This is an experimental feature. Hopefully it will go away when repa will start using IRIS ReST API. Fixes: #1762 Change-Id: I47424e5e5c044dd75589f0d0dcb01a7bbff068e8 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-03-19Added --force option for repa groupEd Bartosh1-0/+6
By default repa now checks if binary packages exist in submission and doesn't allow grouping submissions without binary packages. --force option allows to bypass this check, i.e. allows to group failed submissions. This can be useful for grouping failed submissions to reject them as a group. Fixes: #1707 Change-Id: Ieb66718839e19b63de5039757a2bbc63d02016c6 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-03-17Update man page regarding groupingEd Bartosh1-0/+3
Added notice explaining the purpose(image testing) and details(binary aggregation) of implementation of groups. Fixes: #TINF-492 Change-Id: Id5b71891c9ffffe9b962637ed7c65442550930bc Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/10469 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2014-02-27Added obs and download urls to 'repa list' outputEd Bartosh1-15/+19
Repa gets both urls from correspondent fields in meta. If they aren't present in meta repa tries to guess them. Guessing part is temporary. It will be removed when backend provides urls. Fixes: #1674 Change-Id: I9f8f63572ae3407b08f1e9d0f7028d237f4fc1d9 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/10078 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2014-02-13Added --project command line option.Ed Bartosh1-0/+24
This parameter is used to avoid resolving submission to multiple products. It was added to group, rmgroup, accept and reject subcommands. Fixes: #1625 Change-Id: Id93af4564c370f92fad2397fda0955cb122e66ae Reviewed-on: https://otctools.jf.intel.com/review/9632 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Reviewed-by: Eduard Bartosh <eduard.bartosh@intel.com>
2014-01-31documentation: minor typo fix in man pageMarkus Lehtonen1-1/+1
Change-Id: I7526c0e84efa50b12ce67bcc913430826b87e3b8 Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Reviewed-on: https://otctools.jf.intel.com/review/9589 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Eduard Bartosh <eduard.bartosh@intel.com>
2013-12-10Created man pageEd Bartosh1-0/+237
Fixes: #1489 Change-Id: I857e63ee4e816c72eb14871a5d5dd692b156af7e Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/8383 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com>