summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-22 12:55:36 +0000
committerLars Wirzenius <liw@liw.fi>2021-04-22 12:55:36 +0000
commitd0a10d6f6e4acac8f6178c53ccf8b092baf30586 (patch)
treed0831f3a474750a24bfd4e2db15bd6e81ec7ae41
parent66602d50ded863e04ae94d0c97805d80e33a98c4 (diff)
parent3698b429c140dcc9837a21479b2d72b810c34ed4 (diff)
downloadbumper-rs-d0a10d6f6e4acac8f6178c53ccf8b092baf30586.tar.gz
Merge branch 'fix' into 'main'
fix: add build-dependency on python3-distutils See merge request larswirzenius/bumper!21
-rwxr-xr-xcheck11
-rw-r--r--debian/control1
2 files changed, 11 insertions, 1 deletions
diff --git a/check b/check
index 599d9e8..a20fe4e 100755
--- a/check
+++ b/check
@@ -30,6 +30,15 @@ subplot docgen bumper.md -o bumper.pdf
subplot codegen bumper.md -o test.py
rm -f test.log
-$hideok python3 test.py --log test.log "$@"
+if $hideok python3 test.py --log test.log "$@"
+then
+ echo "test program OK"
+else
+ echo "test program FAILED, log file follows"
+ echo ==================================================================
+ cat test.log
+ echo ==================================================================
+ exit 42
+fi
echo "Everything seems to be in order."
diff --git a/debian/control b/debian/control
index 73796d0..dfad01b 100644
--- a/debian/control
+++ b/debian/control
@@ -13,6 +13,7 @@ Build-Depends:
moreutils,
pkg-config,
python3,
+ python3-distutils,
subplot,
texlive-fonts-recommended,
texlive-latex-base,