summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog10
-rwxr-xr-xdebian/tests/utils/test-drivers4
2 files changed, 10 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index c690e61c9..8d996729a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,15 @@
-cups (2.2.6-4) unstable; urgency=medium
+cups (2.2.6-5) unstable; urgency=medium
* Bump S-V to 4.1.3 without changes needed
* Update Vcs-* fields for the move to salsa.d.o
- -- Didier Raboud <odyx@debian.org> Fri, 09 Feb 2018 17:36:16 +0100
+ -- Didier Raboud <odyx@debian.org> Sat, 10 Feb 2018 11:14:39 +0100
+
+cups (2.2.6-4) unstable; urgency=medium
+
+ * Fix CI: indexv[3,4] Braille drivers cannot print PDF
+
+ -- Didier Raboud <odyx@debian.org> Sun, 31 Dec 2017 11:35:12 +0100
cups (2.2.6-3) unstable; urgency=medium
diff --git a/debian/tests/utils/test-drivers b/debian/tests/utils/test-drivers
index 0eece9cd7..5db75c721 100755
--- a/debian/tests/utils/test-drivers
+++ b/debian/tests/utils/test-drivers
@@ -20,9 +20,9 @@ while getopts 'n:r:p:l:h' flag; do
done
if $LPINFO_RUN; then
- # textonly, gen-brf, and gen-ubrl can't print PDF
+ # textonly, gen-brf, gen-ubrl and indexv[3,4] can't print PDF
# pdftoijs is currently buggy !?
- DRIVERS_LIST=$(lpinfo -m | cut -f1 -d' ' | grep -v 'textonly' | grep -v 'brf' | grep -v 'gen-ubrl' | grep -v 'pdftoijs' | grep -v 'everywhere' | grep -E $DRIVER_REGEXP)
+ DRIVERS_LIST=$(lpinfo -m | cut -f1 -d' ' | grep -v 'textonly' | grep -v 'brf' | grep -v 'gen-ubrl' | grep -v 'pdftoijs' | grep -v 'everywhere' | grep -v 'indexv[3,4]' | grep -E $DRIVER_REGEXP)
fi
cleanup() {