[system-config-printer/f15] 1.3.3

Jiří Popelka jpopelka at fedoraproject.org
Fri Jun 3 10:51:10 UTC 2011


commit 0dfdb535aa67dbb421bd30283ec0b0fe62aed8c7
Author: Jiri Popelka <jpopelka at redhat.com>
Date:   Fri Jun 3 12:31:13 2011 +0200

    1.3.3
    
    Set translation domain for ServerSettingsDialog (Ubuntu #777188).
    scp-dbus-service: Ignore setlocale() errors (Ubuntu #748964).
    Renamed ui/*.glade to ui/*.ui again (Ubuntu #759811).
    Allow % character in SMB URI (Ubuntu #747400).
    More error handling (Ubuntu #744783).
    Avoid traceback if printer duplication fails (bug #694629).
    Fixed off-by-one error in monitor.
    Fixed printer renaming (Ubuntu #726954).
    Added PrinterModified D-Bus signal to printer properties interface.
    More robustness for printer properties dialog when printer removed (Ubuntu #741987).
    Fixed PPDs loader when using CUPS remotely or when DBus not available (bug #693515).
    Handle failure to load PPDs more gracefully (Ubuntu #742409).
    Avoid traceback when cancelling New Printer dialog after failure.
    Make sure everything is ready before handlers might be called (bug #689336).
    Ensure consistency in jobviewer if add_job fails (bug #693055, bug #632551).
    Be defensive against CUPS returning incorrect job IDs (Ubuntu #721051).
    Job viewer's attribute window: Convert job numbers and attribute values to strings (Ubuntu bug #733088).
    udev-configure-printer: be more defensive when parsing CUPS response (Ubuntu #760661).

 .gitignore                                   |    1 +
 sources                                      |    3 +-
 system-config-printer-1.3.2.tar.xz.sig       |  Bin 65 -> 0 bytes
 system-config-printer-1.3.3.tar.xz.sig       |  Bin 0 -> 65 bytes
 system-config-printer-check-device-ids.patch |  111 --------------------------
 system-config-printer-self.printers.patch    |   48 -----------
 system-config-printer.spec                   |   39 +++++++---
 7 files changed, 30 insertions(+), 172 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 56411df..b121e8a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -231,3 +231,4 @@ pycups-1.9.51.tar.bz2
 /system-config-printer-1.3.0.tar.xz
 /system-config-printer-1.3.1.tar.xz
 /system-config-printer-1.3.2.tar.xz
+/system-config-printer-1.3.3.tar.xz
diff --git a/sources b/sources
index 0ffd79d..fa17fdf 100644
--- a/sources
+++ b/sources
@@ -1,2 +1 @@
-37ff34b1c43d951963ccd831f9d176d4  system-config-printer-1.3.1.tar.xz
-34a0ce9a11be5695b3b4065e4f17b009  system-config-printer-1.3.2.tar.xz
+658516848c6ced2b1acc6d3525d27204  system-config-printer-1.3.3.tar.xz
diff --git a/system-config-printer-1.3.3.tar.xz.sig b/system-config-printer-1.3.3.tar.xz.sig
new file mode 100644
index 0000000..47e2569
Binary files /dev/null and b/system-config-printer-1.3.3.tar.xz.sig differ
diff --git a/system-config-printer.spec b/system-config-printer.spec
index 9c3f1e3..807adc2 100644
--- a/system-config-printer.spec
+++ b/system-config-printer.spec
@@ -4,15 +4,13 @@
 
 Summary: A printer administration tool
 Name: system-config-printer
-Version: 1.3.2
-Release: 2%{?dist}
+Version: 1.3.3
+Release: 1%{?dist}
 License: GPLv2+
 URL: http://cyberelk.net/tim/software/system-config-printer/
 Group: System Environment/Base
 Source0: http://cyberelk.net/tim/data/system-config-printer/1.2/%{name}-%{version}.tar.xz
 Patch1: system-config-printer-no-applet-in-gnome.patch
-Patch2: system-config-printer-check-device-ids.patch
-Patch3: system-config-printer-self.printers.patch
 BuildRequires: cups-devel >= 1.2
 BuildRequires: desktop-file-utils >= 0.2.92
 BuildRequires: gettext-devel
@@ -73,12 +71,6 @@ printers.
 # Don't start the applet in GNOME.
 %patch1 -p1 -b .no-applet-in-gnome
 
-# Improvements for check-device-ids from upstream.
-%patch2 -p1 -b .check-device-ids
-
-# Fixed traceback in newprinter.py (bug #680683).
-%patch3 -p1 -b .self.printers
-
 %build
 %configure --with-udev-rules
 
@@ -177,7 +169,7 @@ rm -rf %buildroot
 %{_datadir}/%{name}/xml/*.rng
 %{_datadir}/%{name}/xml/validate.py*
 %dir %{_datadir}/%{name}/ui
-%{_datadir}/%{name}/ui/*.glade
+%{_datadir}/%{name}/ui/*.ui
 %{_datadir}/applications/system-config-printer.desktop
 %{_sysconfdir}/xdg/autostart/print-applet.desktop
 %{_mandir}/man1/*
@@ -187,6 +179,31 @@ rm -rf %buildroot
 exit 0
 
 %changelog
+* Fri Jun 03 2011 Jiri Popelka <jpopelka at redhat.com> 1.3.3-1
+- 1.3.3:
+  - Set translation domain for ServerSettingsDialog (Ubuntu #777188).
+  - scp-dbus-service: Ignore setlocale() errors (Ubuntu #748964).
+  - Renamed ui/*.glade to ui/*.ui again (Ubuntu #759811).
+  - Allow % character in SMB URI (Ubuntu #747400).
+  - More error handling (Ubuntu #744783).
+  - Avoid traceback if printer duplication fails (bug #694629).
+  - Fixed off-by-one error in monitor.
+  - Fixed printer renaming (Ubuntu #726954).
+  - Added PrinterModified D-Bus signal to printer properties interface.
+  - More robustness for printer properties dialog
+    when printer removed (Ubuntu #741987).
+  - Fixed PPDs loader when using CUPS remotely or
+    when DBus not available (bug #693515).
+  - Handle failure to load PPDs more gracefully (Ubuntu #742409).
+  - Avoid traceback when cancelling New Printer dialog after failure.
+  - Make sure everything is ready before handlers might be called (bug #689336).
+  - Ensure consistency in jobviewer if add_job fails (bug #693055, bug #632551).
+  - Be defensive against CUPS returning incorrect job IDs (Ubuntu #721051).
+  - Job viewer's attribute window: Convert job numbers and
+    attribute values to strings (Ubuntu bug #733088).
+  - udev-configure-printer: be more defensive when
+    parsing CUPS response (Ubuntu #760661).
+
 * Tue Mar 22 2011 Tim Waugh <twaugh at redhat.com> 1.3.2-2
 - Fixed traceback in newprinter.py (bug #680683).
 - Improvements for check-device-ids from upstream.


More information about the scm-commits mailing list