From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36797) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eD86P-0006rU-Df for guix-patches@gnu.org; Fri, 10 Nov 2017 07:08:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eD86M-0003IZ-6I for guix-patches@gnu.org; Fri, 10 Nov 2017 07:08:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52802) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eD86M-0003I3-24 for guix-patches@gnu.org; Fri, 10 Nov 2017 07:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eD86L-00060k-Sy for guix-patches@gnu.org; Fri, 10 Nov 2017 07:08:01 -0500 Subject: bug#29096: [PATCH] gnu: Add Epson escpr printer driver. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87shdyg2p7.fsf@GlaDOS.home> Date: Fri, 10 Nov 2017 13:07:13 +0100 In-Reply-To: <87shdyg2p7.fsf@GlaDOS.home> (Diego Nicola Barbato's message of "Wed, 01 Nov 2017 03:20:04 +0100") Message-ID: <87bmkamj66.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Diego Nicola Barbato Cc: 29096-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Diego Nicola Barbato skribis: >>>From 5d6449cc3cfc4154fff24abcdd54c05b44b9e471 Mon Sep 17 00:00:00 2001 > From: Diego Nicola Barbato > Date: Wed, 1 Nov 2017 02:48:14 +0100 > Subject: gnu: Add Epson escpr printer driver. > > * gnu/packages/cups.scm (escpr): New variable. Pushed with the minor changes below (notice that the license is =E2=80=98gp= l2+=E2=80=99 because headers in source code explicitly say =E2=80=9Cor any later version= =E2=80=9D.) Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 54a93fe49..bbf2699f0 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -604,7 +604,7 @@ and more. See @file{README} for details.") (package (name "escpr") (version "1.6.17") - ;; This currently works. But it will break as soon as a newer + ;; XXX: This currently works. But it will break as soon as a newer ;; version is available since the URLs for older versions are not ;; preserved. An alternative source will be added as soon as ;; available. @@ -628,6 +628,10 @@ and more. See @file{README} for details.") (assoc-ref %outputs "out") "/share/ppd")))) (inputs `(("cups" ,cups-minimal))) (synopsis "ESC/P-R printer driver") - (description "ESC/P-R driver and PPDs supporting a multitude of Epson printers.") + (description + "This package provides a filter for the Common UNIX Printing +System (CUPS). It offers high-quality printing with Seiko Epson color ink jet +printers. It can only be used with printers that support the Epson ESC/P-R +language.") (home-page "http://download.ebz.epson.net/dsc/search/01/search") (license license:gpl2+))) --=-=-=--