system-config-printer-vl.spec 31 KB

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