Hello community,

here is the log from the commit of package system-config-printer for 
openSUSE:Factory checked in at 2015-03-18 13:02:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/system-config-printer (Old)
 and      /work/SRC/openSUSE:Factory/.system-config-printer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "system-config-printer"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/system-config-printer/system-config-printer.changes  
    2015-01-24 22:19:52.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.system-config-printer.new/system-config-printer.changes
 2015-03-18 13:02:20.000000000 +0100
@@ -1,0 +2,19 @@
+Thu Mar 12 14:37:00 UTC 2015 - [email protected]
+
+- Update to version 1.5.5:
+  + Bugs fixed: lp#1176443, lp#1186475, lp#1181043, lp#1179590,
+    lp#1171469, lp#1397750, lp#1167978, lp#1167978, lp#1167978.
+  + Updated translations.
+- Add keyring and .sig file for gpg validation.
+
+-------------------------------------------------------------------
+Thu Mar 12 14:26:43 UTC 2015 - [email protected]
+
+- Fix system-config-printer-no-openprinting.patch: an indent of one
+  block was lost in the last rebase.
+- Require python3-cups instead of cups directly: we require the
+  bindings and never speak to cups directly (boo#922000).
+- Add python3-pycurl and python3-requests Requires: needed
+  dependencies to start.
+
+-------------------------------------------------------------------

Old:
----
  system-config-printer-1.5.4.tar.xz

New:
----
  system-config-printer-1.5.5.tar.xz
  system-config-printer-1.5.5.tar.xz.sig
  system-config-printer.keyring

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ system-config-printer.spec ++++++
--- /var/tmp/diff_new_pack.3ZGo6m/_old  2015-03-18 13:02:21.000000000 +0100
+++ /var/tmp/diff_new_pack.3ZGo6m/_new  2015-03-18 13:02:21.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package system-config-printer
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,13 +25,15 @@
 %endif
 
 Name:           system-config-printer
-Version:        1.5.4
+Version:        1.5.5
 Release:        0
 Summary:        A printer administration tool
 License:        GPL-2.0+
 Group:          Hardware/Printing
 Url:            http://cyberelk.net/tim/software/system-config-printer/
 Source0:        
http://cyberelk.net/tim/data/system-config-printer/1.5/%{name}-%{version}.tar.xz
+Source1:        
http://cyberelk.net/tim/data/system-config-printer/1.5/%{name}-%{version}.tar.xz.sig
+Source2:        %{name}.keyring
 # PATCH-FIX-OPENSUSE system-config-printer-icon-brp-friendly.patch 
[email protected] -- brp checks don't like the printer icon name, so we have to 
use something else
 Patch13:        system-config-printer-icon-brp-friendly.patch
 # PATCH-FIX-OPENSUSE system-config-printer-no-openprinting.patch bnc#733542 
[email protected] -- Disable feature that downloads ppd from openprinting.org
@@ -62,7 +64,9 @@
 BuildRequires:  pkgconfig(libudev) >= 172
 BuildRequires:  pkgconfig(libusb-1.0)
 Requires:       %{name}-common = %{version}
-Requires:       cups
+Requires:       python3-cups
+Requires:       python3-pycurl
+Requires:       python3-requests
 # The applet is not strictly necessary, but it really makes sense
 Recommends:     %{name}-applet
 %py_requires

++++++ system-config-printer-1.5.4.tar.xz -> system-config-printer-1.5.5.tar.xz 
++++++
++++ 57597 lines of diff (skipped)

++++++ system-config-printer-no-openprinting.patch ++++++
--- /var/tmp/diff_new_pack.3ZGo6m/_old  2015-03-18 13:02:22.000000000 +0100
+++ /var/tmp/diff_new_pack.3ZGo6m/_new  2015-03-18 13:02:22.000000000 +0100
@@ -1,19 +1,19 @@
-Index: system-config-printer-1.5.4/cupshelpers/openprinting.py
+Index: system-config-printer-1.5.5/cupshelpers/openprinting.py
 ===================================================================
---- system-config-printer-1.5.4.orig/cupshelpers/openprinting.py
-+++ system-config-printer-1.5.4/cupshelpers/openprinting.py
+--- system-config-printer-1.5.5.orig/cupshelpers/openprinting.py
++++ system-config-printer-1.5.5/cupshelpers/openprinting.py
 @@ -52,6 +52,10 @@ class _QueryThread (threading.Thread):
          _debugprint ("-%s" % self)
  
      def run (self):
 +        ## Disabled on openSUSE, see discussion in 
https://bugzilla.novell.com/show_bug.cgi?id=733542
 +        if self.callback != None:
-+        self.callback (403, self.user_data, None)
++            self.callback (403, self.user_data, None)
 +        return
  
-         # Callback function for pycURL collecting the data coming from
-         # the web server
-@@ -88,6 +92,7 @@ class _QueryThread (threading.Thread):
+         # CGI script to be executed
+         query_command = "/query.cgi"
+@@ -76,6 +80,7 @@ class _QueryThread (threading.Thread):
              if status == None: status = 0
  
          _debugprint ("%s: query complete" % self)
@@ -21,11 +21,11 @@
          if self.callback != None:
              self.callback (status, self.user_data, self.result)
  
-Index: system-config-printer-1.5.4/newprinter.py
+Index: system-config-printer-1.5.5/newprinter.py
 ===================================================================
---- system-config-printer-1.5.4.orig/newprinter.py
-+++ system-config-printer-1.5.4/newprinter.py
-@@ -423,6 +423,8 @@ class NewPrinterGUI(GtkGUI):
+--- system-config-printer-1.5.5.orig/newprinter.py
++++ system-config-printer-1.5.5/newprinter.py
+@@ -412,6 +412,8 @@ class NewPrinterGUI(GtkGUI):
          # Set up OpenPrinting widgets.
          self.opreq = None
          self.opreq_handlers = None
@@ -34,7 +34,7 @@
          combobox = self.cmbNPDownloadableDriverFoundPrinters
          cell = Gtk.CellRendererText()
          combobox.pack_start (cell, True)
-@@ -1608,6 +1610,7 @@ class NewPrinterGUI(GtkGUI):
+@@ -1616,6 +1618,7 @@ class NewPrinterGUI(GtkGUI):
                  self.btnNPBack.hide()
                  self.btnNPForward.show()
                  downloadable_selected = False
@@ -42,7 +42,7 @@
                  if self.rbtnNPDownloadableDriverSearch.get_active ():
                      combobox = self.cmbNPDownloadableDriverFoundPrinters
                      iter = combobox.get_active_iter ()
-@@ -3773,6 +3776,8 @@ class NewPrinterGUI(GtkGUI):
+@@ -3828,6 +3831,8 @@ class NewPrinterGUI(GtkGUI):
              elif self.rbtnNPPPD.get_active():
                  ppd = cups.PPD(self.filechooserPPD.get_filename())
              else:

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to