Added Lark as dependency
This commit is contained in:
parent
9811972ace
commit
33c1e0a7e8
|
|
@ -126,6 +126,9 @@ Notes:
|
|||
-  This is a Python module, not a separated tool.
|
||||
-  This is an independent tool, can be a binary or a Python script.
|
||||
|
||||
[**Lark**](https://pypi.org/project/Lark/) [](https://pypi.org/project/Lark/) [](https://pypi.org/project/Lark/) [](https://packages.debian.org/bullseye/python3-lark)
|
||||
- Mandatory
|
||||
|
||||
[**PyYAML**](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://packages.debian.org/bullseye/python3-yaml)
|
||||
- Mandatory
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ X-Python3-Version: >= 3.6
|
|||
Package: kibot
|
||||
Architecture: all
|
||||
Multi-Arch: foreign
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.6) | kicad-nightly, python3-wxgtk4.0, python3-xvfbwrapper
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.6) | kicad-nightly, python3-wxgtk4.0, python3-xvfbwrapper, python3-lark
|
||||
Recommends: kibom.inti-cmnb (>= 1.8.0), kicost (>= 1.1.8), interactivehtmlbom.inti-cmnb (>= 2.4.1), imagemagick, librsvg2-bin, python3-xlsxwriter, rar, ghostscript, python3-lxml, python3-mistune, kikit, python3-markdown2
|
||||
Suggests: pandoc, texlive-latex-base, texlive-latex-recommended, git, poppler-utils, kidiff, python3-numpy
|
||||
Description: KiCad Bot
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ __email__ = 'stropea@inti.gob.ar'
|
|||
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
|
||||
__status__ = 'stable'
|
||||
__version__ = '1.6.2'
|
||||
__pypi_deps__ = ['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'qrcodegen', 'markdown2']
|
||||
__pypi_deps__ = ['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'qrcodegen', 'markdown2', 'lark']
|
||||
|
|
|
|||
|
|
@ -95,6 +95,11 @@ Dependencies:
|
|||
url: https://www.blender.org/
|
||||
debian: blender
|
||||
arch: blender
|
||||
- name: Lark
|
||||
python_module: true
|
||||
role: mandatory
|
||||
debian: python3-lark
|
||||
arch: python-lark
|
||||
"""
|
||||
from copy import deepcopy
|
||||
import fnmatch
|
||||
|
|
|
|||
|
|
@ -805,6 +805,40 @@ deps = '{\
|
|||
"url": null,\
|
||||
"url_down": null\
|
||||
},\
|
||||
"Lark": {\
|
||||
"arch": "python-lark",\
|
||||
"command": "lark",\
|
||||
"comments": [],\
|
||||
"deb_package": "python3-lark",\
|
||||
"downloader": null,\
|
||||
"downloader_str": null,\
|
||||
"extra_arch": null,\
|
||||
"extra_deb": null,\
|
||||
"help_option": "--version",\
|
||||
"importance": 1000000,\
|
||||
"in_debian": true,\
|
||||
"is_kicad_plugin": false,\
|
||||
"is_python": true,\
|
||||
"module_name": "lark",\
|
||||
"name": "Lark",\
|
||||
"no_cmd_line_version": false,\
|
||||
"no_cmd_line_version_old": false,\
|
||||
"output": "global",\
|
||||
"plugin_dirs": null,\
|
||||
"pypi_name": "Lark",\
|
||||
"roles": [\
|
||||
{\
|
||||
"desc": null,\
|
||||
"mandatory": true,\
|
||||
"max_version": null,\
|
||||
"output": "global",\
|
||||
"version": null\
|
||||
}\
|
||||
],\
|
||||
"tests": [],\
|
||||
"url": null,\
|
||||
"url_down": null\
|
||||
},\
|
||||
"OpenSCAD": {\
|
||||
"arch": "openscad",\
|
||||
"command": "openscad",\
|
||||
|
|
|
|||
Loading…
Reference in New Issue