Skip to content

Commit d1c74d6

Browse files
committed
Fixed missing python3-distutils dependency on Debian package.
1 parent 8d5c010 commit d1c74d6

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.0-2] - 2021-02-12
11+
### Fixed
12+
- Missing python3-distutils dependency on Debian package.
13+
1014
## [0.10.0] - 2021-02-12
1115
### Added
1216
- The multipart id to references of multipart components others than part 1.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,6 +1772,7 @@ Options:
17721772
- For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom)
17731773
- 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.
17741774
- To create RAR files install the rar tool.
1775+
- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils`
17751776
17761777
### Installation on Ubuntu/Debian
17771778

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
kibot (0.10.0-2) stable; urgency=medium
2+
3+
* Added python3-distutils as dependency.
4+
Is part of the base Python standard, but in a separated package.
5+
6+
-- Salvador E. Tropea <salvador@inti.gob.ar> Fri, 12 Feb 2021 17:22:27 -0300
7+
18
kibot (0.10.0-1) stable; urgency=medium
29

310
* Most relevant:

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ X-Python3-Version: >= 3.6
1010
Package: kibot
1111
Architecture: all
1212
Multi-Arch: foreign
13-
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.6), python3-wxgtk4.0
13+
Depends: ${misc:Depends}, ${python3:Depends}, python3-distutils, python3-yaml, kicad (>= 5.1.6), python3-wxgtk4.0
1414
Recommends: kibom.inti-cmnb (>= 1.8.0), interactivehtmlbom.inti-cmnb, pcbdraw, imagemagick, librsvg2-bin, python3-xlsxwriter, rar
1515
Description: KiCad Bot
1616
KiBot is a program which helps you to automate the generation of KiCad

docs/README.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,7 @@ kibot --list
858858
- For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom)
859859
- 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.
860860
- To create RAR files install the rar tool.
861+
- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils`
861862

862863
### Installation on Ubuntu/Debian
863864

0 commit comments

Comments
 (0)