Source: python3-colcon-alias
Maintainer: Scott K Logan <logans@cottsay.net>
Section: python
Priority: optional
Build-Depends: python3-setuptools, python3-all, debhelper (>= 9)
Standards-Version: 3.9.1
Homepage: https://github.com/colcon/colcon-alias/
X-Python3-Version: >= 3.6

Package: python3-colcon-alias
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-colcon-core (>= 0.17.0), python3-filelock, python3-yaml
Conflicts: python3-colcon-mixin (< 0.2.2)
Description: Extension for colcon to create and modify command aliases.
 colcon-alias
 ============
 .
 An extension for `colcon-core <https://github.com/colcon/colcon-core>`_ to create and modify command aliases.
 .
 Aliases condense any number of colcon command invocations made up of a verb followed by all associated arguments down to another 'alias' verb. When invoking the alias verb, additional arguments can be appended to the original invocations.
 .
 An example alias called 'bat', short for 'build and test'::
 .
     $ colcon alias bat --command build --command test
     Registered command list for alias 'bat':
       build
       test
     $ colcon bat --packages-select colcon-alias
     Running command alias: colcon build --packages-select colcon-alias
     ...
     Running command alias: colcon test --packages-select colcon-alias
     ...
 .
 Another example, an alias for building specific packages::

