source: projects/specs/trunk/s/system-config-printer/system-config-printer-vl.spec @ 9670

Revision 9670, 32.5 KB checked in by Takemikaduchi, 9 years ago (diff)

system-config-printer: update
freerdp: add BR: alsa-lib-devel
libssh: add pkgconfig file
remmina: change BR: vte3-devel

Line 
1%define pycups_version 1.9.66
2%define pysmbc_version 1.0.14.1
3%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
4%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
5%{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
6
7Summary: A printer administration tool
8Summary(ja): プリンタ管理ツール
9Name: system-config-printer
10Version: 1.4.8
11Release: 1%{?_dist_release}
12License: GPLv2+
13URL: http://cyberelk.net/tim/software/system-config-printer/
14Group: System Environment/Base
15
16Source0: http://cyberelk.net/tim/data/system-config-printer/1.4/system-config-printer-%{version}.tar.xz
17Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2
18Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2
19
20Source10: %{name}-1.3.2-ja.po
21
22Patch0: pycups-1.9.66-cups-server-remote-printers.patch
23Patch21: %{name}-1.3.2-ppd-translation.patch
24
25BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
26
27BuildRequires: cups-devel >= 1.2
28BuildRequires: glib2-devel
29BuildRequires: python-devel >= 2.5
30BuildRequires: gnutls-devel
31BuildRequires: libsmbclient-devel >= 3.2
32BuildRequires: desktop-file-utils >= 0.2.92
33BuildRequires: gettext
34BuildRequires: intltool
35BuildRequires: xmlto
36BuildRequires: python-tools
37BuildRequires: libusb1-devel
38BuildRequires: eudev-libudev-devel
39BuildRequires: eudev
40BuildRequires: epydoc
41
42Requires: pygtk2
43Requires: pygobject
44Requires: python-pycurl
45Requires: desktop-file-utils
46Requires: dbus-x11
47Requires: system-config-printer-libs = %{version}-%{release}
48Requires: gnome-icon-theme
49Requires: notification-daemon
50Requires: notify-python
51Requires: libxml2-python
52Requires: libgnome-keyring
53
54Obsoletes: system-config-printer-gui <= 0.6.152
55Provides: system-config-printer-gui = 0.6.152
56
57Obsoletes: desktop-printing <= 0.20-7.fc7
58Provides: desktop-printing = 0.20-7.fc7
59
60%description
61system-config-printer is a graphical user interface that allows
62the user to configure a CUPS print server.
63
64%package libs
65Summary: Libraries and shared code for printer administration tool
66Summary(ja): Libraries and shared code for printer administration tool
67Group: System Environment/Base
68Requires: python
69Requires: foomatic
70Provides: pycups = %{pycups_version}
71Provides: pysmbc = %{pysmbc_version}
72
73%description libs
74The common code used by both the graphical and non-graphical parts of
75the configuration tool.
76
77%package udev
78Summary: Rules for udev for automatic configuration of USB printers
79Group: System Environment/Base
80Requires: system-config-printer-libs = %{version}-%{release}
81Obsoletes: hal-cups-utils <= 0.6.20
82Provides: hal-cups-utils = 0.6.20
83
84%description udev
85The udev rules and helper programs for automatically configuring USB
86printers.
87
88%prep
89%setup -q -a 1 -a 2
90
91pushd pycups-%{pycups_version}
92%patch0 -p1 -b .pycups
93popd
94%patch21 -p1 -b .ppd-translation
95
96cp -f %{SOURCE10} po/ja.po
97
98%build
99export CFLAGS="$CFLAGS -Wno-implicit-function-declaration"
100%configure --with-udev-rules
101
102pushd pycups-%{pycups_version}
103make
104make doc
105popd
106
107pushd pysmbc-%{pysmbc_version}
108make
109make doc
110popd
111
112%install
113rm -rf %buildroot
114make DESTDIR=%buildroot install \
115     udevrulesdir=/lib/udev/rules.d \
116     udevhelperdir=/lib/udev
117
118pushd pycups-%{pycups_version}
119make DESTDIR=%buildroot install
120popd
121
122pushd pysmbc-%{pysmbc_version}
123make DESTDIR=%buildroot install
124popd
125
126%{__mkdir_p} %buildroot%{_localstatedir}/run/udev-configure-printer
127touch %buildroot%{_localstatedir}/run/udev-configure-printer/usb-uris
128
129%find_lang system-config-printer
130
131%clean
132rm -rf %buildroot
133
134%post
135/bin/rm -f /var/cache/foomatic/foomatic.pickle
136exit 0
137
138%files libs -f system-config-printer.lang
139%defattr(-,root,root,-)
140%doc --parents pycups-%{pycups_version}/{ChangeLog,README,NEWS,TODO,examples,html}
141%doc --parents pysmbc-%{pysmbc_version}/{ChangeLog,README,NEWS,TODO,test.py,html}
142%config(noreplace) %{_sysconfdir}/dbus-1/system.d/com.redhat.NewPrinterNotification.conf
143%config(noreplace) %{_sysconfdir}/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf
144%dir %{_sysconfdir}/cupshelpers
145%config(noreplace) %{_sysconfdir}/cupshelpers/preferreddrivers.xml
146%{python_sitearch}/cups.so
147%{python_sitearch}/_smbc.so
148%dir %{python_sitearch}/smbc
149%{python_sitearch}/smbc/*.py*
150%ifarch x86_64
151%{python_sitearch}/*.egg-info
152%endif
153%dir %{python_sitelib}/cupshelpers
154%{python_sitelib}/cupshelpers/*.py*
155%{python_sitelib}/*.egg-info
156%{_rpmconfigdir}/fileattrs/psdriver.attr
157%{_rpmconfigdir}/postscriptdriver.prov
158
159%files udev
160%defattr(-,root,root,-)
161/lib/udev/rules.d/*.rules
162/lib/udev/udev-*-printer
163%dir %{_localstatedir}/run/udev-configure-printer
164%verify(not md5 size mtime) %config(noreplace,missingok) %attr(0644,root,root) %{_localstatedir}/run/udev-configure-printer/usb-uris
165
166%files
167%defattr(-,root,root,-)
168%doc ChangeLog README
169%{_bindir}/%{name}
170%{_bindir}/%{name}-applet
171%{_bindir}/install-printerdriver
172%{_bindir}/scp-dbus-service
173%{_datadir}/dbus-1/interfaces/*.xml
174%{_datadir}/dbus-1/services/*.service
175%dir %{_datadir}/%{name}
176%{_datadir}/%{name}/*.py*
177%{_datadir}/%{name}/troubleshoot
178%{_datadir}/%{name}/icons
179%dir %{_datadir}/%{name}/xml
180%{_datadir}/%{name}/xml/*.rng
181%{_datadir}/%{name}/xml/*.py*
182%dir %{_datadir}/%{name}/ui
183%{_datadir}/%{name}/ui/*.ui
184%{_datadir}/appdata/system-config-printer.appdata.xml
185%{_datadir}/applications/system-config-printer.desktop
186%{_sysconfdir}/xdg/autostart/print-applet.desktop
187%{_mandir}/man1/*
188
189%changelog
190* Sun Jul 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.8-1
191- update to 1.4.8
192- add BuildRequires: gnutls-devel
193- remove Requires: gnome-python, gnome-python-gnomekeyrin
194- add Patch0 (pycups-1.9.66-cups-server-remote-printers.patch)
195
196* Fri Jun 27 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.4-2
197- add Requires: python-pycurl
198
199* Sun Jun 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.4-1
200- new upstream release
201  - system-config-printer-1.4.4
202  - pycups-1.9.66
203  - pysmbc-1.0.14.1
204- change BuildRequires: eudev-libudev-devel instead of libudev-devel
205- change BuildRequires: libusb1-devel instead of libusb-devel
206- remove Patch2 (system-config-printer-check-device-ids.patch)
207- remove Patch3 (system-config-printer-self.printers.patch)
208- remove Patch20 (system-config-printer-1.3.2-gettext.patch)
209
210* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.2-4
211- rebuild with python-2.7.2
212
213* Fri Apr 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.2-3
214- update patch21 and ja.po
215
216* Sun Apr 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.2-2
217- add BuildRequires: glib2-devel
218
219* Sat Apr 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.2-1
220- new upstream release
221  - system-config-printer-1.3.2
222  - pycups-1.9.55
223  - pysmbc-1.0.10
224- drop old patches (1,2,10)
225- add Patch2,3 from fedora
226  - Patch2: Improvements for check-device-ids from upstream.
227  - Patch3: Fixed traceback in newprinter.py (bug #680683).
228- update ja.po
229- Patch21: add more ppd translation dictionary
230- add BR: epydoc
231
232* Mon Feb 22 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.92-1
233- new development release (pre1.2)
234  - system-config-printer-1.1.92
235  - pycups-1.9.48
236- add Patch1,2 from fedora
237  - Patch1: build without epydoc, remove BR: epydoc
238  - Patch2: Convert MFG and MDL to lowercase before D-Bus call
239    to work around bug #566217.
240- add BR: python-tools, libudev-devel, libusb-devel
241- add R: libxml2-python
242
243* Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.1.7-2
244- rebuilt with python-2.6.4
245
246* Sat Jun 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.7-1
247- new upstream release
248  - Updated translations.
249  - Don't abort if the jobviewer couldn't show a notification.
250  - Don't use setlocale() for locale-independent case conversion.
251  - Don't assume the notification daemon can show action buttons.
252  - Use case-insensitive matching for model names.
253  - HPLIP compatibility fixes.
254  - Fixed typo in jobviewer keyring support (Ubuntu #343156).
255  - Added support for https device URIs (bug #478677).
256  - Prevent traceback in monitor when connection failed (Ubuntu #343387).
257- add Patch10: fix infinite loop on adding printer
258- add Patch11: do not probe hplip
259
260* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.6-1
261- new upstream release
262  - system-config-printer 1.1.6
263  - pycups 1.9.45
264
265* Sun Nov 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.9-1
266- initial build for Vine Linux
267
268* Tue Oct 21 2008 Tim Waugh <twaugh@redhat.com> 1.0.9-1
269- Updated to 1.0.9 for translations.
270- Updated pysmbc to 1.0.6.  No longer need pysmbc-git patch.
271
272* Fri Oct 17 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-7
273- Added patch for pysmbc changes in git to prevent getdents crashing
274  (bug #465975).
275
276* Thu Oct 16 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-6
277- Updated patch for 1.0.x changes:
278  - Fixed SMB authentication dialog's cancel button (bug #467127).
279  - Work around samba bug #5805 by sending debug output to stderr
280    instead of stdout.
281
282* Wed Oct 15 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-5
283- Updated patch for 1.0.x changes:
284  - Fixed SMB authentication (bug #464003).
285
286* Wed Oct 15 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-4
287- Updated patch for 1.0.x changes:
288  - Removed unneeded debugging output.
289  - Don't show the applet in KDE (bug #466945).
290  - Auth/error dialog improvements for SMB as for IPP (bug #465407).
291
292* Mon Oct 13 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-3
293- Added patch for 1.0.x changes since 1.0.8:
294  - Don't use a LinkButton for the 'Problems?' button (bug #465407).
295  - Don't use a separator for the server settings dialog (bug
296    #465407).
297  - Don't set non-zero page size for SpinButtons.
298  - Don't show an error dialog if an IPP operation's authentication
299    dialog is cancelled by the user, but show an error dialog if the
300    password was incorrect (bug #465407).
301  - Set Server Settings... menu entry sensitive depending on whether
302    we are connected to a server (Ubuntu #280736).
303  - Lots of translations updated.
304
305* Mon Sep 29 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-2
306- Removed patch (no longer needed).
307
308* Mon Sep 29 2008 Tim Waugh <twaugh@redhat.com> 1.0.8-1
309- 1.0.8:
310  - Use modelName from custom PPD to suggest name for new printer
311    (trac #97).
312  - Avoid display problem with installable options.
313  - Better matching for Lexmark printers.
314  - Catch exceptions from advanced server settings dialog (Ubuntu
315    #267557).
316  - Added some missing OpenPrinting query fields.
317  - Jockey support added.
318  - Lots of translations updated.
319
320* Sat Aug 30 2008 Tim Waugh <twaugh@redhat.com> 1.0.7-2
321- Handle IPP_FORBIDDEN (bug #460670).
322
323* Fri Aug 29 2008 Tim Waugh <twaugh@redhat.com> 1.0.7-1
324- 1.0.7:
325  - Efficiency improvements.
326  - Small UI improvements for the New Printer dialog.
327  - Other small fixes.
328
329* Fri Aug 29 2008 Tim Waugh <twaugh@redhat.com>
330- Updated pysmbc to 1.0.5.
331- Updated pycups to 1.9.42.
332
333* Tue Aug 26 2008 Tim Waugh <twaugh@redhat.com> 1.0.6-1
334- Requires gnome-python2-gnome (bug #460021).
335- 1.0.6:
336  - More delete-event fixes.
337  - Fixed temporary file leak.
338  - Fixed dialog leaks.
339  - Small UI improvements for the New Printer dialog.
340  - Other small fixes.
341
342* Thu Aug 14 2008 Tim Waugh <twaugh@redhat.com> 1.0.5-3
343- Include other fixes from upstream including:
344  - OpenPrinting API change (trac #74).
345  - libnotify API change for 'closed' signal.
346  - Notification for job authentication (trac #91).
347  - Glade delete-event fixes (trac #88).
348  - Pre-fill username in job authentication dialog (trac #87).
349
350* Wed Aug 13 2008 Tim Waugh <twaugh@redhat.com> 1.0.5-2
351- Handle HTTP_FORBIDDEN.
352
353* Mon Aug 11 2008 Tim Waugh <twaugh@redhat.com> 1.0.5-1
354- 1.0.5.
355- Updated pycups to 1.9.41.
356
357* Thu Jul 10 2008 Tim Waugh <twaugh@redhat.com> 1.0.4-1
358- 1.0.4.
359- Applied upstream patch for pycups to fix getPrinterAttributes when
360  requested_attributes is specified.
361
362* Tue Jul  8 2008 Tim Waugh <twaugh@redhat.com> 1.0.3-2
363- Better debugging for pysmbc.
364
365* Mon Jun 30 2008 Tim Waugh <twaugh@redhat.com> 1.0.3-1
366- Updated pycups to 1.9.40.
367- 1.0.3.
368
369* Fri Jun 20 2008 Tim Waugh <twaugh@redhat.com>
370- Updated pysmbc to 1.0.4.
371
372* Tue Jun 10 2008 Tim Waugh <twaugh@redhat.com> 1.0.2-1
373- 1.0.2.
374
375* Mon Jun  9 2008 Tim Waugh <twaugh@redhat.com> 1.0.1-1
376- Updated pysmbc to 1.0.3.
377- 1.0.1 (bug #450119).
378
379* Thu Jun  5 2008 Tim Waugh <twaugh@redhat.com>
380- Requires notify-python (bug #450139).
381
382* Thu Jun  5 2008 Tim Waugh <twaugh@redhat.com> 1.0.0-3
383- Applied patches from upstream (bug #450120).
384
385* Tue Jun  3 2008 Tim Waugh <twaugh@redhat.com> 1.0.0-2
386- Applied patches from upstream (bug #449753).
387
388* Thu May 29 2008 Tim Waugh <twaugh@redhat.com>
389- Updated pycups to 1.9.39.
390- Updated libs summary.
391
392* Tue May 27 2008 Tim Waugh <twaugh@redhat.com> 1.0.0-1
393- 1.0.0.
394
395* Fri May 23 2008 Tim Waugh <twaugh@redhat.com> 0.9.93-2
396- Fixed small UI problem in SMB browser.
397
398* Fri May 23 2008 Tim Waugh <twaugh@redhat.com> 0.9.93-1
399- 0.9.93.
400
401* Tue May 20 2008 Tim Waugh <twaugh@redhat.com> 0.9.92-1
402- 0.9.92.
403
404* Tue May 20 2008 Tim Waugh <twaugh@redhat.com> 0.9.91-3
405- Sync to trunk.
406- Updated pysmbc to 1.0.2.
407
408* Sun May 18 2008 Tim Waugh <twaugh@redhat.com> 0.9.91-2
409- Fixed icon search path.
410
411* Fri May 16 2008 Tim Waugh <twaugh@redhat.com> 0.9.91-1
412- No longer requires system-install-packages (bug #444645).
413- Added pysmbc.  Build requires libsmbclient-devel.
414- Don't install consolehelper bits any more as they are no longer needed.
415- 0.9.91:
416  - User interface overhaul, part 2.
417
418* Thu Apr  3 2008 Tim Waugh <twaugh@redhat.com> 0.9.90-1
419- Updated pycups to 1.9.38.
420- 0.9.90:
421  - User interface overhaul, part 1.
422
423* Thu Apr  3 2008 Tim Waugh <twaugh@redhat.com> 0.7.82.2-1
424- 0.7.82.2:
425  - Various bug fixes.
426  - Translation updates.
427
428* Mon Mar 17 2008 Tim Waugh <twaugh@redhat.com> 0.7.82.1-3
429- Updated pycups to 1.9.37.
430- More fixes from upstream.
431
432* Wed Mar  5 2008 Tim Waugh <twaugh@redhat.com> 0.7.82.1-2
433- Updated pycups to 1.9.36.
434- Some fixes from upstream.
435
436* Mon Mar  3 2008 Tim Waugh <twaugh@redhat.com> 0.7.82.1-1
437- Requires /usr/bin/system-install-packages not pirut (bug #435622).
438- 0.7.82.1:
439  - More trouble-shooting improvements.
440  - applet: notify user about failed jobs (bug #168370).
441
442* Tue Feb 19 2008 Tim Waugh <twaugh@redhat.com> 0.7.82-1
443- Updated to pycups-1.9.35.
444- 0.7.82:
445  - More trouble-shooting improvements.
446
447* Wed Feb 13 2008 Tim Waugh <twaugh@redhat.com> 0.7.81-1
448- 0.7.81:
449  - Trouble-shooting improvements and other minor fixes.
450
451* Mon Feb 11 2008 Tim Waugh <twaugh@redhat.com> 0.7.80-2
452- Rebuild for GCC 4.3.
453
454* Mon Feb  4 2008 Tim Waugh <twaugh@redhat.com> 0.7.80-1
455- Updated to pycups-1.9.34.
456- 0.7.80:
457  - Trouble-shooting support.
458
459* Fri Jan 25 2008 Tim Waugh <twaugh@redhat.com> 0.7.79-1
460- 0.7.79.
461
462* Wed Jan 23 2008 Tim Waugh <twaugh@redhat.com> 0.7.78-5
463- Updated to pycups-1.9.33.
464
465* Wed Jan 16 2008 Tim Waugh <twaugh@redhat.com> 0.7.78-4
466- Use config-util from new usermode (bug #428406).
467
468* Thu Dec 20 2007 Tim Waugh <twaugh@redhat.com>
469- Requires notification-daemon (Ubuntu #176929).
470- Requires gnome-python2 for theme support (Ubuntu #176929).
471- Requires gnome-icon-theme for printer icon (Ubuntu #176929).
472
473* Mon Dec 17 2007 Tim Waugh <twaugh@redhat.com> 0.7.78-3
474- Install Python egg-info file.
475- Updated pycups to 1.9.32.
476
477* Tue Nov 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.78-2
478- pycups: Applied patch from SVN to allow fetching printer attributes by URI.
479- Sync to SVN 1748.
480
481* Thu Nov 22 2007 Tim Waugh <twaugh@redhat.com> 0.7.78-1
482- pycups: Fix job-sheets-default attribute.
483- Updated pycups to 1.9.31.
484- 0.7.78.
485
486* Wed Nov 21 2007 Tim Waugh <twaugh@redhat.com>
487- Applied patch to pycups to avoid reading uninitialised
488  memory (bug #390431).
489
490* Mon Nov 19 2007 Tim Waugh <twaugh@redhat.com>
491- Updated pycups to 1.9.30.
492
493* Tue Oct 30 2007 Tim Waugh <twaugh@redhat.com> 0.7.77-1
494- 0.7.77:
495  - Tooltips for the button bar buttons (bug #335601).
496
497* Mon Oct 15 2007 Tim Waugh <twaugh@redhat.com> 0.7.76-1
498- 0.7.76.
499
500* Thu Oct  4 2007 Tim Waugh <twaugh@redhat.com> 0.7.75-1
501- 0.7.75.
502
503* Wed Oct  3 2007 Tim Waugh <twaugh@redhat.com>
504- No need to run update-desktop-database because there are no MimeKey
505  lines in the desktop files.
506- Consistent macro style.
507
508* Tue Oct  2 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.4-1
509- Changed PreReq to Requires.
510- Mark console.apps file as a config file.
511- Mark pam file as a config file (not replaceable).
512- No need to ship empty NEWS file.
513- Give cupsd.py executable permissions to satisfy rpmlint.
514- Provides system-config-printer-gui.
515- Mark D-Bus configuration file as a config file.
516- Fixed libs summary.
517- Better buildroot tag.
518- Better defattr.
519- Preserve timestamps on explicitly install files.
520- Make example pycups program non-executable.
521- 0.7.74.4:
522  - Updated translations.
523  - Several small bugs fixed.
524
525* Thu Sep 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.3-1
526- 0.7.74.3:
527  - Updated translations.
528  - Other small bug fixes.
529
530* Tue Sep 25 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.2-3
531- Pull in SVN patch from stable branch for foomatic recommended
532  drivers (bug #292021).
533
534* Fri Sep 21 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.2-2
535- Pull in SVN patch from stable branch for 'Allow printing from
536  the Internet' check-box (bug #221003).
537
538* Wed Sep 19 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.2-1
539- Updated pycups to 1.9.27.
540- 0.7.74.2:
541  - When a class is removed on the server, remove it from the UI.
542  - When deleting a printer, select the default printer again.
543  - Select newly-copied printer.
544  - Updated translation (fi).
545  - Better --help message.
546  - Use strcoll to sort manufacturer names.
547  - Avoid duplicate 'recommended' marks.
548  - Remove duplicate device URIs.
549  - Handle IPP_TAG_NOVALUE attributes (for CUPS 1.3.x).
550
551* Wed Sep 12 2007 Tim Waugh <twaugh@redhat.com>
552- Updated pycups to 1.9.26.
553- Build requires epydoc.  Ship HTML documentation.
554
555* Fri Sep  7 2007 Tim Waugh <twaugh@redhat.com> 0.7.74.1-1
556- 0.7.74.1:
557  - Updated Polish translation (bug #263001).
558  - Don't select the default printer after changes to another printer have
559    been made.
560  - Always construct URI from input fields when changing device (bug #281551).
561  - Avoid busy-cursor traceback when window is not yet displayed.
562
563* Thu Aug 30 2007 Tim Waugh <twaugh@redhat.com> 0.7.74-1
564- Updated pycups to 1.9.25.
565- 0.7.74:
566  - Fixed New Class dialog.
567  - UI fixes.
568
569* Sat Aug 25 2007 Tim Waugh <twaugh@redhat.com>
570- More specific license tag.
571
572* Fri Aug 24 2007 Tim Waugh <twaugh@redhat.com> 0.7.73-1
573- 0.7.73.
574
575* Fri Aug 10 2007 Tim Waugh <twaugh@redhat.com> 0.7.72-2
576- Ship the applet's desktop file.
577
578* Wed Aug  8 2007 Tim Waugh <twaugh@redhat.com> 0.7.72-1
579- 0.7.72:
580  - Fixed my-default-printer traceback.
581  - Improvements to New Printer wizard (Till Kamppeter).
582
583* Fri Aug  3 2007 Tim Waugh <twaugh@redhat.com> 0.7.71-1
584- 0.7.71:
585  - Don't discard make/model-matched devices when there are ID-matched
586    devices (Till Kamppeter).
587  - Fixed fallback if no text-only driver is available (Till Kamppeter).
588  - Initialise the make/model list when an ID match failed (Till Kamppeter).
589  - Better error-handling in default-print application (Ubuntu #129901).
590  - UI tweak in admin tool (Ubuntu #128263).
591  - Handle socket: URIs (Ubuntu #127074).
592
593* Mon Jul 23 2007 Tim Waugh <twaugh@redhat.com> 0.7.70-2
594- Obsoletes/provides desktop-printing.
595
596* Mon Jul  9 2007 Tim Waugh <twaugh@redhat.com> 0.7.70-1
597- Requires pirut for system-install-packages.
598- 0.7.70:
599  - Increased GetReady->NewPrinter timeout.
600  - More binary names mapped to package named.
601  - Run system-install-packages to install missing drivers (bug #246726).
602  - Less debug output.
603  - Desktop file fixes for KDE (bug #247299).
604
605* Thu Jun 28 2007 Tim Waugh <twaugh@redhat.com> 0.7.69-1
606- No longer requires PyXML (bug #233146).
607- Moved applet to main package.
608- 0.7.69:
609  - Use HardwareSettings category for my-default-printer desktop
610    file (bug #244935).
611  - Removed unused code.
612  - Filter PPDs by natural language (bug #244173).
613
614* Mon Jun 25 2007 Tim Waugh <twaugh@redhat.com>
615- The applet requires dbus-x11 (Ubuntu #119570).
616
617* Fri Jun 15 2007 Tim Waugh <twaugh@redhat.com> 0.7.68-1
618- 0.7.68:
619  - Fixed the notification bubbles.
620  - Ship my-default-printer utility.
621
622* Fri Jun  8 2007 Tim Waugh <twaugh@redhat.com> 0.7.67-1
623- Don't put TrayIcon or SystemSetup categories in the desktop file.
624- Updated pycups to 1.9.24.
625- 0.7.67:
626  - Fixed desktop files to have capital letters at the start of each
627    word in the Name field (bug #242859).
628  - Fixed crash when saving unapplied changes.
629  - Fixed Device ID parser to always split the CMD field at commas.
630  - New PPDs class means we no longer parse the foomatic XML database.
631
632* Wed May 30 2007 Tim Waugh <twaugh@redhat.com> 0.7.66-1
633- 0.7.66:
634  - Allow job-hold-until to be set (bug #239776).
635  - Implement new printer notifications.
636
637* Tue May 22 2007 Tim Waugh <twaugh@redhat.com> 0.7.65-1
638- Build requires xmlto.
639- Updated to pycups-1.9.22.
640- 0.7.65:
641  - Use urllib for quoting/unquoting (Val Henson, Ubuntu #105022).
642  - Added kn translation.
643  - Better permissions on non-scripts.
644  - Added man pages.
645  - Applet: status feedback.
646  - Applet: fixed relative time descriptions.
647  - Applet: limit refresh frequency.
648
649* Mon Apr 16 2007 Tim Waugh <twaugh@redhat.com> 0.7.63.1-1
650- 0.7.63.1:
651  - Small applet fixes.
652
653* Thu Apr  5 2007 Tim Waugh <twaugh@redhat.com> 0.7.63-1
654- 0.7.63:
655  - Translation updates.
656  - Checked in missing file.
657
658* Wed Apr  4 2007 Tim Waugh <twaugh@redhat.com>
659- Updated to pycups-1.9.20 for printer-state-reasons fix.
660
661* Mon Apr  2 2007 Tim Waugh <twaugh@redhat.com> 0.7.62-1
662- 0.7.62:
663  - Use standard icon for admin tool desktop file.
664  - Fixed env path in Python scripts.
665  - Applet: stop running when the session ends.
666  - Prevent a traceback in the SMB browser (bug #225351).
667  - 'Manage print jobs' desktop file.
668
669* Fri Mar 30 2007 Tim Waugh <twaugh@redhat.com> 0.7.61-1
670- 0.7.61:
671  - Fixed retrieval of SMB authentication details (bug #203539).
672
673* Tue Mar 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.60-1
674- Updated to pycups-1.9.19.
675- Avoid %%makeinstall.
676- 0.7.60:
677  - Handle reconnection failure.
678  - New applet name.
679
680* Mon Mar 26 2007 Tim Waugh <twaugh@redhat.com> 0.7.59-1
681- 0.7.59:
682  - Fixed a translatable string.
683  - Set a window icon (bug #233899).
684  - Handle failure to start the D-Bus service.
685  - Ellipsize the document and printer named (bug #233899).
686  - Removed the status bar (bug #233899).
687  - Added an icon pop-up menu for 'Hide' (bug #233899).
688
689* Wed Mar 21 2007 Tim Waugh <twaugh@redhat.com> 0.7.57-1
690- Added URL tag.
691- 0.7.57:
692  - Prevent traceback when removing temporary file (Ubuntu #92914).
693  - Added print applet.
694
695* Sun Mar 18 2007 Tim Waugh <twaugh@redhat.com> 0.7.56-2
696- Updated to pycups-1.9.18.
697
698* Fri Mar 16 2007 Tim Waugh <twaugh@redhat.com> 0.7.56-1
699- 0.7.56:
700  - Parse Boolean strings correctly in job options.
701  - Small command-set list/string fix (bug #230665).
702  - Handle hostname look-up failures.
703  - Updated filter-to-driver map.
704  - Don't parse printers.conf (bug #231826).
705
706* Tue Feb 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.55-1
707- 0.7.55:
708  - Use converted value for job option widgets.
709
710* Tue Feb 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.54-1
711- 0.7.54:
712  - Removed debugging code.
713
714* Tue Feb 27 2007 Tim Waugh <twaugh@redhat.com> 0.7.53-1
715- No longer requires rhpl (since 0.7.53).
716- 0.7.53:
717  - Use gettext instead of rhpl.translate.
718  - Better layout for PPD options.
719  - Added scrollbars to main printer list (bug #229453).
720  - Set maximum width of default printer label (bug #229453).
721  - Handle applying changes correctly when switching to another
722    printer (bug #229378).
723  - Don't crash when failing to fetch the PPD (bug #229406).
724  - Make the text entry boxes sensitive but not editable for remote
725    printers (bug #229381).
726  - Better job options screen layout (bug #222272).
727
728* Tue Feb 13 2007 Tim Waugh <twaugh@redhat.com> 0.7.52-1
729- 0.7.52:
730  - Sort models using cups.modelSort before scanning for a close
731    match (bug #228505).
732  - Fixed matching logic (bug #228505).
733
734* Fri Feb  9 2007 Tim Waugh <twaugh@redhat.com> 0.7.51-1
735- 0.7.51:
736  - Prevent display glitch in job options list when clicking on a printer
737    repeatedly.
738  - List conflicting PPD options, and embolden the relevant tab
739    labels (bug #226368).
740  - Fixed typo in 'set default' handling that caused a traceback (bug #227936).
741  - Handle interactive search a little better (bug #227935).
742
743* Wed Feb  7 2007 Tim Waugh <twaugh@redhat.com> 0.7.50-1
744- 0.7.50:
745  - Fixed hex digits list (bug #223770).
746  - Added bs translation.
747  - Don't put the ellipsis in the real device URI (bug #227643).
748  - Don't check for existing drivers for complex command lines (bug #225104).
749  - Allow floating point job options (bug #224651).
750  - Prevent shared/published confusion (bug #225081).
751  - Fixed PPD page size setting.
752  - Avoid os.remove exception (bug #226703).
753  - Handle unknown job options (bug #225538).
754
755* Tue Jan 16 2007 Tim Waugh <twaugh@redhat.com> 0.7.49-1
756- 0.7.49:
757  - Fixed a traceback in the driver check code.
758  - Fixed a typo in the conflicts message.
759  - Handle InputSlot/ManualFeed specially because libcups does (bug #222490).
760
761* Mon Jan 15 2007 Tim Waugh <twaugh@redhat.com> 0.7.48-1
762- 0.7.48:
763  - Updated translations.
764
765* Fri Jan 12 2007 Tim Waugh <twaugh@redhat.com> 0.7.47-1
766- 0.7.47:
767  - Fixed minor text bugs (bug #177433).
768  - Handle shell builtins in the driver check (bug #222413).
769
770* Mon Jan  8 2007 Tim Waugh <twaugh@redhat.com> 0.7.46-1
771- 0.7.46:
772  - Fixed page size problem (bug #221702).
773  - Added 'ro' to ALL_LINGUAS.
774
775* Wed Jan  3 2007 Tim Waugh <twaugh@redhat.com> 0.7.45-1
776- Updated to pycups-1.9.17.
777- 0.7.45:
778  - Fixed traceback in driver check.
779
780* Tue Jan  2 2007 Tim Waugh <twaugh@redhat.com> 0.7.44-1
781- 0.7.44:
782  - Fixed traceback in error display (bug #220136).
783  - Preserve case in model string when dumping debug output.
784
785* Thu Dec 21 2006 Tim Waugh <twaugh@redhat.com> 0.7.43-1
786- 0.7.43:
787  - Don't check against IEEE 1284 DES field at all.
788  - Merged device matching code (bug #219518).
789  - Catch non-fatal errors when auto-matching device.
790  - Fixed driver checking bug involving pipelines (bug #220347).
791  - Show PPD errors (bug #220136).
792
793* Mon Dec 11 2006 Tim Waugh <twaugh@redhat.com> 0.7.42-1
794- 0.7.42:
795  - Fixed typo in command set matching code.
796  - Case-insensitive matching when Device ID not known to database.
797
798* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.7.41-2
799- build against python 2.5
800
801* Thu Dec  7 2006 Tim Waugh <twaugh@redhat.com> 0.7.41-1
802- Updated pycups to 1.9.16.
803- 0.7.41:
804  - Reconnect smoothly after uploading new configuration.
805  - Update lpoptions when setting default printer if it conflicts with
806    the new setting (bug #217395).
807  - Fixed typo in show_HTTP_Error (bug #217537).
808  - Don't pre-select make and model when not discoverable for chosen
809    device (bug #217518).
810  - Set Forward button sensitive on Device screen in new-printer
811    dialog (bug #217515).
812  - Keep Server Settings selected after applying changes if it was selected
813    before.
814  - Set Connecting dialog transient for main window.
815  - Center Connecting dialog on parent.
816  - Optional 'reason' argument for cupshelpers.Printer.setEnabled.
817  - Describe devices that have no optional parameters.
818
819* Thu Nov 30 2006 Tim Waugh <twaugh@redhat.com>
820- Provide pycups feature.
821
822* Tue Nov 21 2006 Tim Waugh <twaugh@redhat.com> 0.7.40-1
823- 0.7.40:
824  - Removed username:password from hint string because we add that in
825    afterwards.
826  - Don't set button widths in create-printer dialog (bug #217025).
827
828* Tue Nov 21 2006 Tim Waugh <twaugh@redhat.com> 0.7.39-1
829- 0.7.39:
830  - Busy cursor while loading foomatic and PPD list (bug #215527).
831  - Make PPD NickName selectable.
832  - Added SMB hint label on device screen (bug #212759).
833
834* Tue Nov 14 2006 Tim Waugh <twaugh@redhat.com> 0.7.38-1
835- Updated pycups to 1.9.15.
836- 0.7.38:
837  - Fixed a bug in the 'ieee1284'/'ppd-device-id' parsing code.
838
839* Mon Nov 13 2006 Tim Waugh <twaugh@redhat.com> 0.7.37-1
840- 0.7.37:
841  - Allow cancellation of test pages (bug #215054).
842
843* Fri Nov 10 2006 Tim Waugh <twaugh@redhat.com> 0.7.36-1
844- 0.7.36:
845  - Match against commandset (bug #214181).
846  - Parse 'ieee1284' foomatic autodetect entries (bug #214761).
847  - Don't remove foomatic PPDs from the list (bug #197331).
848
849* Tue Nov  7 2006 Tim Waugh <twaugh@redhat.com> 0.7.35-1
850- 0.7.35.
851
852* Thu Nov  2 2006 Tim Waugh <twaugh@redhat.com>
853- Updated to pycups-1.9.14 (bug #213136).
854
855* Tue Oct 31 2006 Tim Waugh <twaugh@redhat.com>
856- Update desktop database (bug #213249).
857
858* Tue Oct 24 2006 Tim Waugh <twaugh@redhat.com>
859- Build requires Python 2.4.
860
861* Mon Oct  2 2006 Tim Waugh <twaugh@redhat.com> 0.7.32-1
862- Updated to pycups-1.9.13 for HTTP_FORBIDDEN.
863- 0.7.32:
864  - Handle HTTP errors during connection (bug #208824).
865  - Updated translations (bug #208873).
866
867* Fri Sep 29 2006 Tim Waugh <twaugh@redhat.com> 0.7.31-1
868- 0.7.31:
869  - Select recommended driver automatically (bug #208606).
870  - Better visibility of driver list (bug #203907).
871
872* Fri Sep 29 2006 Tim Waugh <twaugh@redhat.com> 0.7.30-1
873- 0.7.30:
874  - Translations fixed properly (bug #206622).
875  - Button widths corrected (bug #208556).
876
877* Tue Sep 26 2006 Tim Waugh <twaugh@redhat.com> 0.7.28-1
878- 0.7.28.  Translations fixed (bug #206622).
879
880* Wed Aug 30 2006 Tim Waugh <twaugh@redhat.com> 0.7.27-1
881- Build requires intltool.
882- 0.7.27.
883
884* Wed Aug 23 2006 Tim Waugh <twaugh@redhat.com> 0.7.26-1
885- 0.7.26.  Fixes bug # 203149.
886
887* Mon Aug 14 2006 Florian Festi <ffesti@redhat.com> 0.7.25-1
888- 0.7.25. (bug #202060)
889
890* Fri Aug 11 2006 Tim Waugh <twaugh@redhat.com>
891- Fixed description (bug #202189).
892
893* Thu Aug  3 2006 Tim Waugh <twaugh@redhat.com> 0.7.24-1
894- 0.7.24.
895
896* Mon Jul 24 2006 Tim Waugh <twaugh@redhat.com> 0.7.23-1
897- 0.7.23.  Fixes bug #197866.
898
899* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.7.22-1.1
900- rebuild
901
902* Fri Jul  7 2006 Tim Waugh <twaugh@redhat.com> 0.7.22-1
903- 0.7.22.
904
905* Wed Jul  5 2006 Tim Waugh <twaugh@redhat.com> 0.7.21-1
906- Updated to pycups-1.9.12.
907- 0.7.21.
908
909* Mon Jul  3 2006 Tim Waugh <twaugh@redhat.com> 0.7.20-1
910- 0.7.20.
911
912* Fri Jun 30 2006 Tim Waugh <twaugh@redhat.com> 0.7.19-1
913- 0.7.19.
914- Remove foomatic pickle file post-install.
915
916* Tue Jun 27 2006 Tim Waugh <twaugh@redhat.com> 0.7.18-1
917- 0.7.18.
918- Ship translations with libs subpackage.
919
920* Fri Jun 23 2006 Tim Waugh <twaugh@redhat.com> 0.7.17-1
921- 0.7.17.
922
923* Fri Jun 23 2006 Tim Waugh <twaugh@redhat.com> 0.7.16-1
924- 0.7.16, now with SMB browser.
925
926* Thu Jun 22 2006 Tim Waugh <twaugh@redhat.com> 0.7.15-1
927- 0.7.15.
928- Build requires gettext-devel.
929- Ship translations.
930
931* Tue Jun 20 2006 Tim Waugh <twaugh@redhat.com> 0.7.14-1
932- 0.7.14.
933
934* Mon Jun 19 2006 Tim Waugh <twaugh@redhat.com> 0.7.13-1
935- 0.7.13.
936
937* Fri Jun  9 2006 Tim Waugh <twaugh@redhat.com> 0.7.12-1
938- 0.7.12.
939
940* Thu Jun  1 2006 Tim Waugh <twaugh@redhat.com> 0.7.11-3
941- Fix libs dependency.
942
943* Thu Jun  1 2006 Tim Waugh <twaugh@redhat.com> 0.7.11-2
944- Moved the gtk_html2pango module to the libs package (needed by
945  foomatic.py).
946
947* Wed May 31 2006 Tim Waugh <twaugh@redhat.com> 0.7.11-1
948- Split out system-config-printer-libs.
949- Updated to system-config-printer-0.7.11.
950
951* Sat May 27 2006 Tim Waugh <twaugh@redhat.com> 0.7.10-2
952- Requires gobject2 (bug #192764).
953
954* Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 0.7.10-1
955- Require foomatic (bug #192764).
956- Updated to system-config-printer-0.7.10.
957
958* Thu May 25 2006 Tim Waugh <twaugh@redhat.com> 0.7.9-1
959- Updated to pycups-1.9.11.
960- Updated to system-config-printer-0.7.9.
961
962* Mon May 15 2006 Tim Waugh <twaugh@redhat.com> 0.7.8-1
963- Updated to pycups-1.9.10.
964- Updated to system-config-printer-0.7.8.
965
966* Fri May  5 2006 Tim Waugh <twaugh@redhat.com>
967- Fix pycups segfault.
968
969* Fri May  5 2006 Tim Waugh <twaugh@redhat.com> 0.7.7-2
970- Ship PAM and userhelper files.
971- Requires usermode.
972- Added missing options.py file.
973- Fix getClasses() in pycups.
974
975* Thu May  4 2006 Tim Waugh <twaugh@redhat.com> 0.7.7-1
976- Updated to system-config-printer-0.7.7.
977- Updated to pycups-1.9.9.
978- Desktop file.
979- Requires PyXML.
980
981* Fri Apr 28 2006 Tim Waugh <twaugh@redhat.com>
982- Make it actually run.
983
984* Fri Apr 21 2006 Tim Waugh <twaugh@redhat.com>
985- Build requires CUPS 1.2.
986
987* Thu Apr 20 2006 Tim Waugh <twaugh@redhat.com> 0.7.5-1
988- Updated to pycups-1.9.8.  No longer need threads patch.
989- Updated to system-config-printer-0.7.5.
990
991* Sat Apr 15 2006 Tim Waugh <twaugh@redhat.com>
992- Updated to pycups-1.9.7.
993
994* Thu Apr 13 2006 Tim Waugh <twaugh@redhat.com> 0.7.4-2
995- Obsoletes: system-config-printer-gui <= 0.6.152
996
997* Wed Apr 12 2006 Tim Waugh <twaugh@redhat.com> 0.7.4-1
998- Updated to system-config-printer-0.7.4.
999
1000* Fri Apr  7 2006 Tim Waugh <twaugh@redhat.com> 0.7.3-1
1001- Added threads patch from pycups CVS.
1002- Updated to system-config-printer-0.7.3.
1003
1004* Tue Apr  4 2006 Tim Waugh <twaugh@redhat.com>
1005- Updated to pycups-1.9.6.
1006
1007* Fri Mar 24 2006 Tim Waugh <twaugh@redhat.com>
1008- Updated to pycups-1.9.5.
1009
1010* Fri Mar 17 2006 Tim Waugh <twaugh@redhat.com>
1011- Package the actual system-config-printer command.
1012
1013* Thu Mar 16 2006 Tim Waugh <twaugh@redhat.com> 0.7.1-1
1014- Include s-c-printer tarball.
1015- Updated to pycups-1.9.4.
1016
1017* Wed Mar 15 2006 Tim Waugh <twaugh@redhat.com> 0.7.0-1
1018- Initial spec file.
Note: See TracBrowser for help on using the repository browser.