Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id E90BA7A209 for ; Mon, 18 Jul 2016 07:08:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9308285E91; Mon, 18 Jul 2016 07:08:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 24DA185E75 for ; Mon, 18 Jul 2016 07:08:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 8kB9Iv4_fJqw for ; Mon, 18 Jul 2016 07:08:12 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6D24485E6F for ; Mon, 18 Jul 2016 07:08:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 68466FBB5; Mon, 18 Jul 2016 07:08:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146882569290050" MIME-Version: 1.0 Date: Mon, 18 Jul 2016 07:08:12 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/print/cups-filters To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20160718070812.68466FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146882569290050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Mon Jul 18 07:08:12 UTC 2016 Modified Files: pkgsrc/print/cups-filters: Makefile PLIST distinfo Log Message: Update print/cups-filters to 1.10.0 Changes: CHANGES IN V1.10.0 - texttotext: Added new filter for text-only printers written in C, to use the CUPS library to access the print queue's PPD file, with a lot of options to fit practically all printer models amd paper sizes, support for CUPS' page management options, and support for configuring the print queue and controlling the options by the PPD file. The PPD is now generated on-the-fly by cupsfilters.drv. - textonly: Removed the old script-based filter and its PPD for text-only printers. - rastertops: Added new filter to turn PWG Raster into PostScript, in preparation for MuPDF support. Thanks to Pranjal Bhor for contributing this as part of his Google Summer of Code project. - gstoraster, gstopxl, gstopdf, pstopdf: Integrated functionality of script-based filters pstopdf and gstopxl into gstoraster filter as script-based filters cannot access the print queue's PPD file with current CUPS due to change of PPD file permissions. To make gstoraster always produce the correct output format (CUPS/PWG Raster, PDF, PCL-XL) it is called via new wrapper scripts (gstopdf, gstopxl) which set an environment variable telling the format. The old filter scripts got removed. - imagetops, texttops: Do not use $0 in the wrapper scripts, when CUPS calls filters, it passes the queue name as $0, not path and name of the called filter. - cups-browsed: When creating local queues for discovered IPP network printers always create PPD files and if the information supplied by the printer via IPP is insufficient use information from the DNS-SD entry or default values suitable for most printers. Use System V interface scripts only on explicit request in cups-browsed.conf. This change is to address the fact that System V interface script support is removed from CUPS 2.2.x and later for security reasons. - pstopdf: Make the filter only get installed if Ghostscript is present and also moved its conversion rules into the cupsfilters-ghostscript.convs file. - cups-browsed: Fixed crash when trying to get debugg logging both to the terminal and into a file. - libcupsfilters: Fixed crash of pdftoraster when the color space is an RGB space (3 colors) with 1 bit color depth. Here we need to add one bit to the pixels (to get 4 bits per pixel) to align the pixels with the bytes. - cups-browsed: From cups-browsed.service removed the unneeded "Wants=cups.service" as we have "Requires=cups.service" (Debian bug #827455, #827457). - foomatic-rip: Updated man page for removed page logging facility. - pdftops: Also added Dell to the list of manufacturers whose printers need Poppler's PostScript to work around their PostScript interpreter bugs (Debian bug #827040). To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/print/cups-filters/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/print/cups-filters/PLIST cvs rdiff -u -r1.34 -r1.35 pkgsrc/print/cups-filters/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146882569290050 Content-Disposition: inline Content-Length: 3332 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/cups-filters/Makefile diff -u pkgsrc/print/cups-filters/Makefile:1.47 pkgsrc/print/cups-filters/Makefile:1.48 --- pkgsrc/print/cups-filters/Makefile:1.47 Sun Jun 12 09:31:56 2016 +++ pkgsrc/print/cups-filters/Makefile Mon Jul 18 07:08:12 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.47 2016/06/12 09:31:56 leot Exp $ +# $NetBSD: Makefile,v 1.48 2016/07/18 07:08:12 leot Exp $ -DISTNAME= cups-filters-1.9.0 +DISTNAME= cups-filters-1.10.0 CATEGORIES= print MASTER_SITES= http://openprinting.org/download/cups-filters/ EXTRACT_SUFX= .tar.xz Index: pkgsrc/print/cups-filters/PLIST diff -u pkgsrc/print/cups-filters/PLIST:1.11 pkgsrc/print/cups-filters/PLIST:1.12 --- pkgsrc/print/cups-filters/PLIST:1.11 Sun Apr 10 09:41:58 2016 +++ pkgsrc/print/cups-filters/PLIST Mon Jul 18 07:08:12 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2016/04/10 09:41:58 leot Exp $ +@comment $NetBSD: PLIST,v 1.12 2016/07/18 07:08:12 leot Exp $ bin/foomatic-rip bin/ttfread include/cupsfilters/colord.h @@ -24,6 +24,7 @@ libexec/cups/filter/brftoembosser libexec/cups/filter/commandtoescpx libexec/cups/filter/commandtopclx libexec/cups/filter/foomatic-rip +libexec/cups/filter/gstopdf libexec/cups/filter/gstopxl libexec/cups/filter/gstoraster libexec/cups/filter/imagetobrf @@ -38,17 +39,17 @@ libexec/cups/filter/pdftoopvp libexec/cups/filter/pdftopdf libexec/cups/filter/pdftops libexec/cups/filter/pdftoraster -libexec/cups/filter/pstopdf libexec/cups/filter/rastertoescpx libexec/cups/filter/rastertopclx libexec/cups/filter/rastertopdf +libexec/cups/filter/rastertops libexec/cups/filter/sys5ippprinter libexec/cups/filter/textbrftoindexv3 libexec/cups/filter/textbrftoindexv4 -libexec/cups/filter/textonly libexec/cups/filter/texttobrf libexec/cups/filter/texttopdf libexec/cups/filter/texttops +libexec/cups/filter/texttotext libexec/cups/filter/urftopdf man/man1/foomatic-rip.1 man/man5/cups-browsed.conf.5 @@ -117,4 +118,3 @@ share/ppd/cupsfilters/HP-PhotoSmart_Pro_ share/ppd/cupsfilters/Ricoh-PDF_Printer-PDF.ppd share/ppd/cupsfilters/pxlcolor.ppd share/ppd/cupsfilters/pxlmono.ppd -share/ppd/cupsfilters/textonly.ppd Index: pkgsrc/print/cups-filters/distinfo diff -u pkgsrc/print/cups-filters/distinfo:1.34 pkgsrc/print/cups-filters/distinfo:1.35 --- pkgsrc/print/cups-filters/distinfo:1.34 Sun Jun 12 09:31:56 2016 +++ pkgsrc/print/cups-filters/distinfo Mon Jul 18 07:08:12 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.34 2016/06/12 09:31:56 leot Exp $ +$NetBSD: distinfo,v 1.35 2016/07/18 07:08:12 leot Exp $ -SHA1 (cups-filters-1.9.0.tar.xz) = 6f402a6af0cf72b787b1574cfeb87ce221f5b101 -RMD160 (cups-filters-1.9.0.tar.xz) = 2f36b743693adc823f088f1fa1b39aa1f3767adf -SHA512 (cups-filters-1.9.0.tar.xz) = e92da46e03686bc9c94b57bb7d1b8cea99a02ebc6ab39575f6842b4a69679af7771199fef76eafd7b6d6298a28f3175edfb8aaeeca0416cf5b8b747922849d76 -Size (cups-filters-1.9.0.tar.xz) = 1387668 bytes +SHA1 (cups-filters-1.10.0.tar.xz) = 7979549c8beb0a838bb5669f5aacfea47866932e +RMD160 (cups-filters-1.10.0.tar.xz) = e437bd5955d2af95d6d8cc5752b2c78b1bcaf82a +SHA512 (cups-filters-1.10.0.tar.xz) = 93517fe81552cac0f1414b04876db54bf94475d3ceb443c4e104e381ea5141296237576f543db0184794ade952a892a4fa6f312c4c8a4e5769827567eb181e2a +Size (cups-filters-1.10.0.tar.xz) = 1399652 bytes --_----------=_146882569290050--