From d1c74d681ba72af1230ad4fe6703df966128b03b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 12 Feb 2021 17:26:36 -0300 Subject: [PATCH] Fixed missing python3-distutils dependency on Debian package. --- CHANGELOG.md | 4 ++++ README.md | 1 + debian/changelog | 7 +++++++ debian/control | 2 +- docs/README.in | 1 + 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e8f5a0..02dce30b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0-2] - 2021-02-12 +### Fixed +- Missing python3-distutils dependency on Debian package. + ## [0.10.0] - 2021-02-12 ### Added - The multipart id to references of multipart components others than part 1. diff --git a/README.md b/README.md index 041c368b..033d7c8d 100644 --- a/README.md +++ b/README.md @@ -1772,6 +1772,7 @@ Options: - For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom) - For SVG/PNG/JPG beauty PCB render [PcbDraw](https://github.com/INTI-CMNB/PcbDraw). Also install the convert (from imagemagick) and rsvg-convert (from librsvg2-bin) tools. - To create RAR files install the rar tool. +- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils` ### Installation on Ubuntu/Debian diff --git a/debian/changelog b/debian/changelog index affdd2e8..c75e147b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +kibot (0.10.0-2) stable; urgency=medium + + * Added python3-distutils as dependency. + Is part of the base Python standard, but in a separated package. + + -- Salvador E. Tropea Fri, 12 Feb 2021 17:22:27 -0300 + kibot (0.10.0-1) stable; urgency=medium * Most relevant: diff --git a/debian/control b/debian/control index 91f151b2..ed525af4 100644 --- a/debian/control +++ b/debian/control @@ -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), python3-wxgtk4.0 +Depends: ${misc:Depends}, ${python3:Depends}, python3-distutils, python3-yaml, kicad (>= 5.1.6), python3-wxgtk4.0 Recommends: kibom.inti-cmnb (>= 1.8.0), interactivehtmlbom.inti-cmnb, pcbdraw, imagemagick, librsvg2-bin, python3-xlsxwriter, rar Description: KiCad Bot KiBot is a program which helps you to automate the generation of KiCad diff --git a/docs/README.in b/docs/README.in index 7a673189..ff0e5de4 100644 --- a/docs/README.in +++ b/docs/README.in @@ -858,6 +858,7 @@ kibot --list - For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom) - For SVG/PNG/JPG beauty PCB render [PcbDraw](https://github.com/INTI-CMNB/PcbDraw). Also install the convert (from imagemagick) and rsvg-convert (from librsvg2-bin) tools. - To create RAR files install the rar tool. +- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils` ### Installation on Ubuntu/Debian