summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2019-01-24scripts/periupport_conv: handle multiple U: lines per commitWolfram Sang
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2019-01-23scripts/periupport_conv: preserve ':' in commentsWolfram Sang
Done by staying with ' ' as FS. Suggested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2019-01-23scripts/periupport_conv: refactor filename generation into seperate functionWolfram Sang
And don't produce useless '_' when generating filenames. Reported-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2019-01-23scripts/periupport_conv: remove superfluous newlineWolfram Sang
Reported-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2018-12-14scripts/periupport_conv: add sorting of commitsWolfram Sang
Makes it easier to find e.g. corresponding comments to commits. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2018-12-14scripts: add import tool for periupport ticket filesWolfram Sang
Usage: periupport_conv <ticket text output> <dest path> Example usage for converting the bsp370 text output file: $ scripts/periupport_conv ../periupport/out/bsp370.txt /tmp/bsp370/ Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2018-12-13scripts: add import tool for periperlist todo filesWolfram Sang
Usage: peripelist_conv <source todo> <dest path> <groupname> Example usage for converting the IO todo file: $ scripts/peripelist_conv ../peripelist/io/todo projects/linux/io/ IO Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
2018-12-07periject: YAML ValidationKieran Bingham
Utilise pykwalify to provide a YAML schema for our data files. Define an initial project schema under projects/ to define our data layout. An example task data file is provided to demonstrate how the data could be presented in text form. A validator is provided which currently simply calls pykwalify. This is just an initial demonstration of the validation process and can be expanded upon later to provide automa{t,g}ic commit title processing, and further business logic can be added with extra tools. Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>