diff --git a/0001-postscriptdriver.prov-ignore-driverless-utilities.patch b/0001-postscriptdriver.prov-ignore-driverless-utilities.patch new file mode 100644 index 0000000000000000000000000000000000000000..af1bbfe087c7781ba48ca6e673f7749bae02ffc5 --- /dev/null +++ b/0001-postscriptdriver.prov-ignore-driverless-utilities.patch @@ -0,0 +1,28 @@ +From 845c65358e3ba6e5972df1dd37756be97130cc90 Mon Sep 17 00:00:00 2001 +From: zdohnal +Date: Fri, 28 Aug 2020 08:23:24 +0200 +Subject: [PATCH] postscriptdriver.prov: ignore driverless utilities + +Driverless utilities are generic tools for driverless support, which generate 'drivers' based on communication with a device, so it is not usable to try to generate rpm tags for specific models. +Creating generic ```postscriptdriver(driverless)``` doesn't make sense too, because utilities are shipped within core printing packages (CUPS/cups-filters), so just ignore postscriptdriver tag creation for them. +--- + postscriptdriver.prov | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/postscriptdriver.prov b/postscriptdriver.prov +index 7447def..c9e3cee 100755 +--- a/postscriptdriver.prov ++++ b/postscriptdriver.prov +@@ -243,7 +243,8 @@ class TagBuilder: + self.ids = DeviceIDs () + + for path in paths: +- if path.find ("/usr/lib/cups/driver/") != -1: ++ if path.find ("/usr/lib/cups/driver/") != -1 and \ ++ path.find("driverless") == -1: + try: + self.ids += DynamicDriver (path).list () + except TimedOut: +-- +2.40.0.windows.1 + diff --git a/python-cups.spec b/python-cups.spec index bd8441c21f53fc0d1aca3fe0962191ee3ffcfd84..f1913640ae0a075b42396021ef7f7e4345764c73 100644 --- a/python-cups.spec +++ b/python-cups.spec @@ -1,11 +1,11 @@ Name: python-cups Version: 2.0.1 -Release: 1 +Release: 2 Summary: Python bindings for CUPS License: GPLv2+ URL: http://cyberelk.net/tim/software/pycups/ Source0: https://github.com/OpenPrinting/pycups/archive/refs/tags/v2.0.1.tar.gz - +Patch0: 0001-postscriptdriver.prov-ignore-driverless-utilities.patch BuildRequires: cups-devel python3-devel gcc %description @@ -51,6 +51,9 @@ mv cups.html html %doc examples html %changelog +* Mon Apr 24 2023 lixinhong - 2.0.1-2 +- postscriptdriver.prov: ignore driverless utilities + * Fri Jun 17 2022 houyingchao - 2.0.1-1 - Upgrade to version 2.0.1