Fix in package dependency.

Missing python3-mcpy and the fact that mcpy can't be mixed with compiled
python.
This commit is contained in:
Salvador E. Tropea 2020-07-11 19:20:05 -03:00
parent 2dab2417e0
commit a23477d8c2
2 changed files with 14 additions and 1 deletions

2
debian/control vendored
View File

@ -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

13
debian/postinst vendored Executable file
View File

@ -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