From owner-svn-ports-head@freebsd.org Fri Dec 13 15:06:20 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A91C31D00BB; Fri, 13 Dec 2019 15:06:20 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47ZDWw42zYz47FQ; Fri, 13 Dec 2019 15:06:20 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 81A1DDF0C; Fri, 13 Dec 2019 15:06:20 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBDF6KJW009981; Fri, 13 Dec 2019 15:06:20 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBDF6KE7009979; Fri, 13 Dec 2019 15:06:20 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201912131506.xBDF6KE7009979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 13 Dec 2019 15:06:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520041 - in head/print/cups-filters: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: in head/print/cups-filters: . files X-SVN-Commit-Revision: 520041 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2019 15:06:20 -0000 Author: tijl Date: Fri Dec 13 15:06:19 2019 New Revision: 520041 URL: https://svnweb.freebsd.org/changeset/ports/520041 Log: Add a patch to let the implicitclass backend run the ipp backend. This fixes printer queues for remote printers detected by cups-browsed. PR: 242615 Submitted by: J.R. Oldroyd Added: head/print/cups-filters/files/patch-backend-implicitclass.c (contents, props changed) Modified: head/print/cups-filters/Makefile Modified: head/print/cups-filters/Makefile ============================================================================== --- head/print/cups-filters/Makefile Fri Dec 13 15:02:25 2019 (r520040) +++ head/print/cups-filters/Makefile Fri Dec 13 15:06:19 2019 (r520041) @@ -2,6 +2,7 @@ PORTNAME= cups-filters PORTVERSION= 1.25.12 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= https://www.openprinting.org/download/cups-filters/ Added: head/print/cups-filters/files/patch-backend-implicitclass.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/cups-filters/files/patch-backend-implicitclass.c Fri Dec 13 15:06:19 2019 (r520041) @@ -0,0 +1,29 @@ +--- backend/implicitclass.c.orig 2019-11-29 20:18:29 UTC ++++ backend/implicitclass.c +@@ -98,7 +98,7 @@ main(int argc, /* I - Number of command-line args + ipp_attribute_t *attr; + int bytes; /* Bytes copied */ + char uri[HTTP_MAX_URI]; +- char *argv_nt[7]; ++ char *argv_nt[8]; + int outbuflen,filefd,exit_status,dup_status; + static const char *pattrs[] = + { +@@ -350,6 +350,7 @@ main(int argc, /* I - Number of command-line args + /* We will send the filtered output of the pdftoippprinter.c to + the IPP Backend*/ + argv_nt[6] = tempfile_filter; ++ argv_nt[7] = NULL; + fprintf(stderr, "DEBUG: The filtered output of pdftoippprinter is written to file %s\n", + tempfile_filter); + +@@ -383,7 +384,8 @@ main(int argc, /* I - Number of command-line args + pid_t pid = fork(); + if ( pid == 0 ) { + fprintf(stderr, "DEBUG: Started IPP Backend with pid: %d\n",getpid()); +- execv("/usr/lib/cups/backend/ipp",argv_nt); ++ execv(CUPS_SERVERBIN "/backend/ipp",argv_nt); ++ exit(CUPS_BACKEND_FAILED); + } else { + int status; + waitpid(pid, &status, 0);