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 749F17A227 for ; Fri, 30 Dec 2016 16:14:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id DAF3285609; Fri, 30 Dec 2016 16:14:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 694CD85594 for ; Fri, 30 Dec 2016 16:14:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id PVKlfRwN3VwV for ; Fri, 30 Dec 2016 16:14:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B15F585593 for ; Fri, 30 Dec 2016 16:14:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC0BCFBA6; Fri, 30 Dec 2016 16:14:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483114472299840" MIME-Version: 1.0 Date: Fri, 30 Dec 2016 16:14:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/print/cups-filters To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20161230161432.AC0BCFBA6@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. --_----------=_1483114472299840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Dec 30 16:14:32 UTC 2016 Modified Files: pkgsrc/print/cups-filters: Makefile distinfo Log Message: CHANGES IN V1.13.2 - cupsfilters.drv: Corrected cupsFilter entry for the "Generic IPP Everywhere Printer". - driverless: Fixes on the man page - driverless: Do not error-exit (non-zero status) when run by CUPS as backend or PPD generator when no driverless printer is found or Avahi not running. When run from thr command line, exit status is the same as of ippfind. - imagetoraster: Removed (incomplete) PWG Raster support. For PWG Raster output we let the rastertopwg filter from CUPS do the finalization (mainly adding white pixels at the borders to get a full-page bitmap). - imagetoraster: Fixed several bugs in the calculation of the page geometry - libcupsfilters: If the IPP-polled printer has the "sides-supported" attribute, determine the need of a "Duplex" option solely whether the attribute has a "two-sided-long-edge" choice and ignore the "duplex" parameter of the ppdCreateFromIPP() function call. This lets the more precise information coming from the IPP query always be preferred against information from the Bonjour record. - driverless: When listing printers let the device ID contain "AppleRaster" (for Apple Raster printers) and "PWGRaster" (for IPP Everywhere printers) in the "CMD" field. - driverless: Added "-T 3" to the ippfind command line. This makes ippfind search the Bonjour broadcasts for up to 3 seconds when searching for IPP printers, raising the reliability in finding all of them To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.61 pkgsrc/print/cups-filters/Makefile cvs rdiff -u -r1.44 -r1.45 pkgsrc/print/cups-filters/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483114472299840 Content-Disposition: inline Content-Length: 2750 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.60 pkgsrc/print/cups-filters/Makefile:1.61 --- pkgsrc/print/cups-filters/Makefile:1.60 Mon Dec 19 08:49:00 2016 +++ pkgsrc/print/cups-filters/Makefile Fri Dec 30 16:14:32 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.60 2016/12/19 08:49:00 wiz Exp $ +# $NetBSD: Makefile,v 1.61 2016/12/30 16:14:32 adam Exp $ -DISTNAME= cups-filters-1.13.1 +DISTNAME= cups-filters-1.13.2 CATEGORIES= print MASTER_SITES= http://openprinting.org/download/cups-filters/ EXTRACT_SUFX= .tar.xz @@ -32,6 +32,10 @@ REPLACE_BASH+= filter/braille/filters/te .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +CFLAGS+= -framework IOKit +.endif + .if ${INIT_SYSTEM} == "rc.d" CONFIGURE_ARGS+= --with-rcdir=${PREFIX}/share/examples/rc.d CONFIGURE_ARGS+= --with-rclevels="" @@ -47,6 +51,9 @@ CONF_FILES+= ${PREFIX}/share/examples/c post-install: ${MV} ${DESTDIR}${PREFIX}/etc/cups/cups-browsed.conf ${DESTDIR}${PREFIX}/share/examples/cups-filters/cups-browsed.conf + # backends that need root access should not have world read and execute permissions + ${CHMOD} go-rwx ${DESTDIR}${PREFIX}/libexec/cups/backend/parallel + ${CHMOD} go-rwx ${DESTDIR}${PREFIX}/libexec/cups/backend/serial .include "../../devel/glib2/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" Index: pkgsrc/print/cups-filters/distinfo diff -u pkgsrc/print/cups-filters/distinfo:1.44 pkgsrc/print/cups-filters/distinfo:1.45 --- pkgsrc/print/cups-filters/distinfo:1.44 Wed Dec 21 22:38:07 2016 +++ pkgsrc/print/cups-filters/distinfo Fri Dec 30 16:14:32 2016 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.44 2016/12/21 22:38:07 wiz Exp $ +$NetBSD: distinfo,v 1.45 2016/12/30 16:14:32 adam Exp $ -SHA1 (cups-filters-1.13.1.tar.xz) = 5105a1f9ed467587db2942962f666325a44c3508 -RMD160 (cups-filters-1.13.1.tar.xz) = ca199d582b80c2746d4f1fd47004995c13443e65 -SHA512 (cups-filters-1.13.1.tar.xz) = 52b040e160d76532762920fdeaf0d17461acc4dd6af53a2052dc4cdaf7a873852a0d6349b98155ebc2423a7270f28107aee57093291e48cc7b41746fe1d312bc -Size (cups-filters-1.13.1.tar.xz) = 1419244 bytes +SHA1 (cups-filters-1.13.2.tar.xz) = 5fa3c3c2ac2150ab2e0e9defadb27f81e6164e4c +RMD160 (cups-filters-1.13.2.tar.xz) = 77c5c06e2e24df339bcef384a5aac2a564814ef8 +SHA512 (cups-filters-1.13.2.tar.xz) = 50b2e5d65f28bd15bd5e60bf11fc5e182c97a00155fb46ad36d058caa63ee60c504ec59cec05407068234cb1232e77c0ffb0bedd6a4c53bdc34055b60e7ed8b0 +Size (cups-filters-1.13.2.tar.xz) = 1420012 bytes SHA1 (patch-configure) = b55dc7dc22008351c396374aceb88d2be293d179 SHA1 (patch-filter_gstoraster.c) = a9fac7892972943f345c6b76529feff0ba098458 SHA1 (patch-filter_mupdftoraster.c) = 4c4f7d292163657f9541c8ce454ba57d248f7ef0 --_----------=_1483114472299840--