summaryrefslogtreecommitdiff
path: root/setup.py
AgeCommit message (Collapse)AuthorFilesLines
2014-12-14Set repa version to 0.3Ed Bartosh1-1/+1
Change-Id: I39519a5f7f5b243fb34ce6fc0227da90e66c3013 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-12-14Code cleanupEd Bartosh1-8/+8
Fixed pylint warnings Change-Id: If091039bc80cd0b314eab7223753dc91ca8dd630 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-05-21Started to work on 0.3Ed Bartosh1-1/+1
Change-Id: I11782fa592cbc11740dfe9b2ae62520d1b810c9b Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-05-19Implement repa diffEd Bartosh1-1/+2
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-01Implement repa infoEd Bartosh1-1/+2
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-01Start to work on v0.2Ed Bartosh1-1/+1
Change-Id: I17b1b12a66bc34a0b725b0e38644ef14b6f8b55d Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2014-02-13Started to work on 0.1.1Ed Bartosh1-1/+1
Change-Id: Ic77a37096b00bb8854b7077b3256aad7b92dfa98 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/9631 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2013-12-10Created man pageEd Bartosh1-0/+1
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>
2013-11-27Add standard copyright statement to all source filesMarkus Lehtonen1-0/+18
Change-Id: Ic23c7042f6cd995db7e6f689e2b570f2139280df Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Reviewed-on: https://otctools.jf.intel.com/review/8109 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Eduard Bartosh <eduard.bartosh@intel.com>
2013-08-21Implemented repa rmgroupEd Bartosh1-1/+2
Fixes: #1194 Change-Id: Ic6a604112d9c4f30ce1904139a6332a95c78d517 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/6038 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Hasan Wan <hasan.wan@intel.com>
2013-08-19Added target project to the group project nameEd Bartosh1-0/+0
For other pieces of the workflow and for the sake of consistency it's better to have the same naming scheme for projects and groups. Change-Id: I86621486220c10b2c021e639508a09e8ab953401 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/5994 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com>
2013-08-19Draft implementation of repa rejectEd Bartosh1-1/+2
Rejection is done by creating SRs for all packages and immediately changing their state to 'declined'. Fixes: #1178 Change-Id: If055613bb642272a1b238f252b5a273a6062fd85 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/5955 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com>
2013-08-17Draft implementation of repa acceptEd Bartosh1-1/+2
Acceptance is done by creating SRs for all packages and immediately changing their state to 'accepted'. This change also introduces common APIs, which will be used for further implementation of repa reject command. Change-Id: I35660dd266941531dd8421b7c141c904eb350b9b Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2013-08-12Implemented config file processingEd Bartosh1-4/+6
Configuration is taken from /etc/repa.conf and ~/.repa.conf, so it's possible to specify system defaults in /etc/repa.conf and user-related configuration options in ~/.repa.conf. ~/.repa.conf has higher priority and any option from /etc/repa.conf can be reset in ~/.repa.conf Configuration processing is implemented in a way that default values for command line parameters are taken from configuration file(s). Configuration section to use can be specified in command line too. Fixes: #1141 Change-Id: I632f22674c282021983bc6a496ef1fccc0da3137 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/5839 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Hasan Wan <hasan.wan@intel.com>
2013-08-12Implemented main module and plugin systemEd Bartosh1-1/+8
2 empty command modules are included: list and group. Their implementation will be added soon. At the moment they're just printing messages to the console. Main module looks for subcommands using setup.py entry point group 'repa_commands'. This allows to develop and distribute extra repa commands independently. Change-Id: I599a040f33d137909539020027a6a35a341ea35c Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/5834 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com>
2013-08-12Packaged for rpmEd Bartosh1-0/+20
Created empty rpm package. At the moment only README file is included. It's a base for further development. This change integrates this project into OTC Tools continuous integration system, which builds and installs every change, sent for review to Gerrit. Fixes: #1140 Change-Id: Ie9875b42c5a0dad85a72a2e0c2772c5070935878 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/5833 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Hasan Wan <hasan.wan@intel.com>