Fix in package dependency.
Missing python3-mcpy and the fact that mcpy can't be mixed with compiled python.
This commit is contained in:
parent
2dab2417e0
commit
a23477d8c2
|
|
@ -10,7 +10,7 @@ X-Python3-Version: >= 3.2
|
|||
Package: kiplot.inti-cmnb
|
||||
Architecture: all
|
||||
Multi-Arch: foreign
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.0), python3-wxgtk4.0
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.0), python3-wxgtk4.0, python3-mcpy
|
||||
Recommends: kibom.inti-cmnb, kicad-automation-scripts.inti-cmnb (>= 1.1.2), interactivehtmlbom.inti-cmnb, pcbdraw
|
||||
Description: KiCad Plotter (KiPlot)
|
||||
KiPlot is a program which helps you to plot your KiCad PCBs to output
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Disabled because macros will fail.
|
||||
# Automatically added by dh_python3:
|
||||
#if which py3compile >/dev/null 2>&1; then
|
||||
# py3compile -p kiplot.inti-cmnb -V 3.2-
|
||||
#fi
|
||||
#if which pypy3compile >/dev/null 2>&1; then
|
||||
# pypy3compile -p kiplot.inti-cmnb -V 3.2- || true
|
||||
#fi
|
||||
|
||||
# End automatically added section
|
||||
Loading…
Reference in New Issue