diff options
author | wiz <wiz@pkgsrc.org> | 2015-08-30 14:37:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-08-30 14:37:18 +0000 |
commit | 33a77610c9909a2c6cf744ab65f2f05e52386453 (patch) | |
tree | 735d711aff6724a3a42951ed9949fa3a44ea86ec /print | |
parent | 3060978c9c30b3e2baf0d6bbca626cb48c014654 (diff) | |
download | pkgsrc-33a77610c9909a2c6cf744ab65f2f05e52386453.tar.gz |
Update to 1.0.74:
CHANGES IN V1.0.74
- cups-browsed: Added NULL check when getting the notification of
a printer starting to process a job and checking whether this
printer is created by cups-browsed with the implicitclass:
backend (Ubuntu bug #1488524).
- backends: Include unistd.h and fcntl.h in backend-private.h for
all platforms, not only Linux, so that the backends build also
on non-Linux platforms (Bug #1308).
- cups-browsed: Do not schedule printers for update when they are
already marked as disappeared.
- cups-browsed: Added sanity checks when saving the default printer
selection in a file.
- cups-browsed, implicitclass: If remote queues disappear or
cups-browsed shuts down and a cups-browsed-generated queue still
has jobs and needs to be kept therefore, disable it and re-enable
it when cups-browsed starts again and/or the remote queue(s) re-
appear(s). This avoids repeated retries of the jobs while the
remote server is not available, causing unneeded system load and
battery consumption.
- cups-browsed: After polling info from remote CUPS servers to find
the best destination job, set the default CUPS server back to local.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-filters/Makefile | 4 | ||||
-rw-r--r-- | print/cups-filters/distinfo | 9 | ||||
-rw-r--r-- | print/cups-filters/patches/patch-backend_implicitclass.c | 15 |
3 files changed, 6 insertions, 22 deletions
diff --git a/print/cups-filters/Makefile b/print/cups-filters/Makefile index eee1e65f92c..acc18d4e238 100644 --- a/print/cups-filters/Makefile +++ b/print/cups-filters/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2015/08/26 08:36:48 wiz Exp $ +# $NetBSD: Makefile,v 1.27 2015/08/30 14:37:18 wiz Exp $ -DISTNAME= cups-filters-1.0.73 +DISTNAME= cups-filters-1.0.74 CATEGORIES= print MASTER_SITES= http://openprinting.org/download/cups-filters/ EXTRACT_SUFX= .tar.xz diff --git a/print/cups-filters/distinfo b/print/cups-filters/distinfo index 1f6fb7e1176..290a2744567 100644 --- a/print/cups-filters/distinfo +++ b/print/cups-filters/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.21 2015/08/26 08:36:48 wiz Exp $ +$NetBSD: distinfo,v 1.22 2015/08/30 14:37:18 wiz Exp $ -SHA1 (cups-filters-1.0.73.tar.xz) = 55296ba6104b11520a0490a17455c2f90dc0ad6f -RMD160 (cups-filters-1.0.73.tar.xz) = e36bae34f2fe663944d44f04c863685ae21cf88f -Size (cups-filters-1.0.73.tar.xz) = 1351652 bytes -SHA1 (patch-backend_implicitclass.c) = 20f108e1361a7d691110e9e85ec9c750ad7674b2 +SHA1 (cups-filters-1.0.74.tar.xz) = e9659ec3e77eea0666aec124c17f8cd0c278a535 +RMD160 (cups-filters-1.0.74.tar.xz) = 664f4268c9c6a21c57067e1e79a78f0a4675160f +Size (cups-filters-1.0.74.tar.xz) = 1352328 bytes diff --git a/print/cups-filters/patches/patch-backend_implicitclass.c b/print/cups-filters/patches/patch-backend_implicitclass.c deleted file mode 100644 index ff8e50ea2f2..00000000000 --- a/print/cups-filters/patches/patch-backend_implicitclass.c +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-backend_implicitclass.c,v 1.1 2015/08/26 08:36:48 wiz Exp $ - -For open() and O_RDONLY. -https://bugs.linuxfoundation.org/show_bug.cgi?id=1310 - ---- backend/implicitclass.c.orig 2015-08-18 23:28:24.000000000 +0000 -+++ backend/implicitclass.c -@@ -21,6 +21,7 @@ - #include "backend-private.h" - #include <cups/array.h> - #include <ctype.h> -+#include <fcntl.h> - - /* - * Local globals... |