mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-02-01 09:18:40 +01:00
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ac583f76e1 | |||
| 17bf98cb7a | |||
| aa3e2efd84 |
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
| ac583f76e1 |
build.cmds: Move build.App.cmd_xxx() here
For every cmd_xxx() method in build.App, create a class that's instatiated for running the respective command. This has the advantage of making App.py smaller (and faster), and having smaller, more maintainable command modules adhering to a common interface. Signed-off-by: Jan Lindemann <jan@janware.com> |
|||
| 17bf98cb7a |
build.Cmd: Add module
Cmd is meant as a base class for classes representing commands currently still implemented as methods of the Project class. Signed-off-by: Jan Lindemann <jan@janware.com> |
|||
| aa3e2efd84 |
projects.py: Move bulk of code into module
Move nearly all of projects.py into src/python/jw/build/App.py. The plan is to split the script into parts and import them. Signed-off-by: Jan Lindemann <jan@janware.com> |