system-config-date-vl.spec 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. Summary: A graphical interface for modifying system date and time
  2. Summary(ja): システムの時刻と日付を設定するグラフィカルインタフェース
  3. Name: system-config-date
  4. Group: admin-tools
  5. Version: 1.9.61
  6. Release: 3%{?_dist_release}
  7. URL: http://fedora.redhat.com/projects/config-tools/
  8. License: GPL
  9. Source0: %{name}-%{version}.tar.bz2
  10. Patch100: system-config-date-vine.patch
  11. BuildArch: noarch
  12. ExclusiveOS: Linux
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  14. Obsoletes: timetool
  15. Obsoletes: dateconfig
  16. Obsoletes: timeconfig
  17. BuildRequires: desktop-file-utils
  18. BuildRequires: gettext
  19. BuildRequires: intltool
  20. BuildRequires: python
  21. #BuildRequires: anaconda
  22. Requires: ntp
  23. Requires: python
  24. Requires: pygtk2-libglade
  25. Requires: gnome-python
  26. Requires: usermode-gtk
  27. Requires: chkconfig
  28. Requires: rhpl
  29. Requires: python-newt
  30. Requires: yelp
  31. Requires: python-slip
  32. Requires(post): hicolor-icon-theme
  33. Requires(postun): hicolor-icon-theme
  34. %description
  35. system-config-date is a graphical interface for changing the system date and
  36. time, configuring the system time zone, and setting up the NTP daemon to
  37. synchronize the time of the system with an NTP time server.
  38. %prep
  39. %setup -q
  40. %patch100 -p1 -b .vine
  41. sed -i -e 's|/usr/bin/python2|/usr/bin/python|g' \
  42. system-config-date src/*.py
  43. %build
  44. make CONSOLE_USE_CONFIG_UTIL=1
  45. %install
  46. rm -rf $RPM_BUILD_ROOT
  47. make DESTDIR=$RPM_BUILD_ROOT install
  48. desktop-file-install --vendor system --delete-original \
  49. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  50. $RPM_BUILD_ROOT%{_datadir}/applications/system-config-date.desktop
  51. %find_lang %name
  52. %clean
  53. rm -rf $RPM_BUILD_ROOT
  54. %post
  55. touch --no-create %{_datadir}/icons/hicolor
  56. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  57. gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  58. fi
  59. %postun
  60. touch --no-create %{_datadir}/icons/hicolor
  61. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  62. gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  63. fi
  64. %files -f %{name}.lang
  65. %defattr(-,root,root)
  66. %license COPYING
  67. %{_bindir}/system-config-date
  68. %{_datadir}/system-config-date
  69. %{_datadir}/applications/system-config-date.desktop
  70. %{_datadir}/icons/hicolor/*/apps/system-config-date.*
  71. %{_mandir}/man8/system-config-date*
  72. %{_mandir}/fr/man8/system-config-date*
  73. %{_mandir}/ja/man8/system-config-date*
  74. %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-date
  75. %config(noreplace) %{_sysconfdir}/pam.d/system-config-date
  76. %{python_sitelib}/scdate
  77. %{python_sitelib}/scdate-%{version}-py%{python_version}.egg-info
  78. %changelog
  79. * Wed Aug 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9.61-3
  80. - changed R:newt to R:python-newt.
  81. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.61-2
  82. - rebuild with python-2.7.2
  83. * Sat Apr 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.61-1
  84. - new upstream release
  85. - add R: python-slip
  86. * Wed Oct 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.12-1
  87. - initial build for Vine Linux
  88. * Tue Jun 10 2008 Karanbir Singh <kbsingh@centos.org> 1.8.12-3.el5.centos.2
  89. - change ntpservers as well ( Ralph Angenendt )
  90. * Mon Jun 9 2008 Karanbir Singh <kbsingh@centos.org> 1.8.12-3.el5.centos.1
  91. - roll in CentOS ntp servers ( Ralph Angenendt )
  92. * Wed Nov 28 2007 Nils Philippsen <nphilipp@redhat.com> 1.8.12-3
  93. - use '#' instead of '?' to access sections of XML documents with older yelp
  94. versions (#250215)
  95. * Mon Nov 26 2007 Nils Philippsen <nphilipp@redhat.com> 1.8.12-2
  96. - use updated help documents from the deployment guide, use yelp for displaying
  97. them (#250215)
  98. * Tue Jan 16 2007 Nils Philippsen <nphilipp@redhat.com> 1.8.12
  99. - pick up updated translations (#220952)
  100. * Mon Jan 08 2007 Nils Philippsen <nphilipp@redhat.com>
  101. - ask whether the configuration should be revisited on NTP problems (#220952)
  102. * Fri Jan 05 2007 Nils Philippsen <nphilipp@redhat.com>
  103. - don't attempt to show error dialog from signal handler (#220952)
  104. * Fri Dec 15 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.11
  105. - provide more info when encountering bad timezone translations (i.e. not split
  106. into Region,Continent/Location) (#219773)
  107. - pick up updated translations (#216073)
  108. * Wed Dec 13 2006 Nils Philippsen <nphilipp@redhat.com>
  109. - fix keyboard shortcuts in Czech translation (#190355)
  110. * Wed Dec 13 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.10
  111. - pick up updated translations (#216073)
  112. * Fri Nov 24 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.9
  113. - pick up updated translations (#216073)
  114. * Tue Nov 21 2006 Nils Philippsen <nphilipp@redhat.com>
  115. - revamp timezone potfile generation a bit
  116. - pick up new timezones for translation (#216073)
  117. * Tue Oct 17 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.8
  118. - enable Hebrew, Marathi and Urdu translations
  119. - pick up updated translations (#211074)
  120. - add dist tag
  121. * Fri Oct 13 2006 Bill Nottingham <notting@redhat.com> 1.8.7
  122. - use valid charsets for translation (#210720)
  123. * Fri Sep 15 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.6
  124. - pick up updated strings and translations (#192075, #204441)
  125. * Fri Aug 25 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.5
  126. - hide 'Enable NTP Broadcast' checkbutton as more action is needed than a mere
  127. change in ntp.conf
  128. * Mon Jul 17 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.4
  129. - pick up updated translations
  130. * Tue Mar 14 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.3
  131. - feed timezone po files from anaconda (#131528, patch by Andrew Martynov)
  132. * Mon Mar 06 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.2
  133. - don't write into /tmp
  134. - make synchronizing with time servers configurable (#157485)
  135. * Fri Mar 03 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.1
  136. - require hicolor-icon-theme (#182859, #182860)
  137. * Mon Jan 30 2006 Nils Philippsen <nphilipp@redhat.com> 1.8.0
  138. - bump minor version
  139. - add requirements for pygtk2-libglade, gnome-python2-canvas (#179215)
  140. * Fri Jan 20 2006 Nils Philippsen <nphilipp@redhat.com> 1.7.99.17
  141. - zoom out in TZ map on Escape (#178093)
  142. * Wed Jan 18 2006 Nils Philippsen <nphilipp@redhat.com> 1.7.99.16
  143. - don't crash when selecting a timezone (#178086, patch by Chris Lumens)
  144. * Tue Jan 17 2006 Nils Philippsen <nphilipp@redhat.com> 1.7.99.15
  145. - fix setting timezone from firstboot (#177779, patch by Chris Lumens)
  146. * Mon Jan 16 2006 Nils Philippsen <nphilipp@redhat.com> 1.7.99.14
  147. - put Etc/... timezones into "Non-geographic timezones" (#148025)
  148. - default to already set timezone on startup (#177815)
  149. * Tue Jan 10 2006 Nils Philippsen <nphilipp@redhat.com>
  150. - Add translation string for UTC-relative and other non-geographic timezones
  151. * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 1.7.99.13-1
  152. - Rename mainWindow to scdMainWindow to avoid import problems in firstboot.
  153. * Wed Jan 04 2006 Nils Philippsen <nphilipp@redhat.com> 1.7.99.12
  154. - show actually chosen region, not just something that's in the vicinity
  155. * Fri Dec 30 2005 Nils Philippsen <nphilipp@redhat.com>
  156. - fix highlighted regions when leaving and entering the timeone map canvas
  157. - make timezone list a treeview
  158. - update timezone po source file
  159. * Thu Dec 15 2005 Jeremy Katz <katzj@redhat.com> - 1.7.99.11-1
  160. - fix timezone map to not be painfully slow
  161. * Wed Dec 14 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.10
  162. - make TimezoneMap more easily subclassable (Chris Lumens), use uniform
  163. paren-spacing
  164. * Thu Dec 08 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.9
  165. - draw frame around highlighted region
  166. * Thu Nov 24 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.8
  167. - reshow shaded map when reentering map widget from outside
  168. - clear status line when outside region area in zoomed mode
  169. * Thu Nov 24 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.7
  170. - only select region if pointer is inside region
  171. - replace aa-based shading to avoid aa-related deficiencies of GnomeCanvas
  172. - show shaded border around zoomed in region to zoom out without selecting a
  173. city
  174. * Wed Nov 23 2005 Nils Philippsen <nphilipp@redhat.com>
  175. - don't let cities get miraculously lost (#173944, patch by Chris Lumens)
  176. * Mon Nov 21 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.6
  177. - fix zooming problems with enlarged window (#172982)
  178. - apply workaround by Alex Larsson to avoid hanging when clicking on Asia
  179. region (#172977)
  180. - add Middle America region, make Antarctica regions overlapping
  181. * Thu Nov 10 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.5
  182. - when choosing a region, shade off the rest of the map when hovering over a
  183. region
  184. * Wed Nov 09 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.4
  185. - implement simple timezone zooming
  186. * Fri Oct 21 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.3
  187. - revamp pot file generation (#171330)
  188. * Fri Oct 14 2005 Nils Philippsen <nphilipp@redhat.com>
  189. - don't use pam_stack (#170623)
  190. * Fri Oct 07 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.2
  191. - write comment about the ZONE parameter into /etc/sysconfig/clock (#123101)
  192. - handle comments when reading /etc/sysconfig/clock
  193. - consistently use spaces for indentation in timezoneBackend.py
  194. * Thu Sep 22 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.1
  195. - check whether NTP server is reachable on changes (#135747)
  196. * Tue Aug 09 2005 Nils Philippsen <nphilipp@redhat.com>
  197. - remove workaround causing deprecation warnings for bug that doesn't exist
  198. anymore (#162840)
  199. * Thu Aug 04 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.99.0
  200. - add and edit NTP servers inline in the list
  201. - always display clock left-to-right (#165109)
  202. - try to be smart about restrict lines when changing or deleting hosts
  203. - include *.pyo files (#165097)
  204. - don't remove *.pyc files in %%preun because they're in the file list
  205. - don't include timetool symlink anymore
  206. - don't install firstboot module symlink, this is dealt with in the firstboot
  207. package for quite a while
  208. * Wed Aug 03 2005 Nils Philippsen <nphilipp@redhat.com>
  209. - implement --help, catch unrecognized options (#164791)
  210. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.18
  211. - make desktop file translatable (#156792)
  212. - avoid DeprecationWarnings
  213. - use DESTDIR consistently (#156782)
  214. * Tue Apr 19 2005 Matthias Clasen <mclasen@redhat.com> 1.7.17-2
  215. - Silence %%post
  216. * Fri Apr 15 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.17
  217. - make more strings translatable (#154873)
  218. * Fri Apr 01 2005 Nils Philippsen <nphilipp@redhat.com> 1.7.16-2
  219. - use True, False instead of gtk.TRUE, gtk.FALSE to avoid deprecation warnings
  220. (#153037, patch by Colin Charles)
  221. * Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com>
  222. - rebuilt
  223. * Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 1.7.15-2
  224. - Update the GTK+ theme icon cache on (un)install
  225. * Sat Jan 15 2005 Nils Philippsen <nphilipp@redhat.com>
  226. - use current default ntp.conf as template (#132787, #135142)
  227. * Mon Dec 13 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.15-1
  228. - don't lookup names or IP addresses as this may result in hangs (#142583)
  229. * Mon Nov 29 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.14-1
  230. - bump version
  231. * Fri Nov 26 2004 Nils Philippsen <nphilipp@redhat.com>
  232. - don't use duplicate accelerators (#134172, #140241)
  233. * Fri Nov 26 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.13-1
  234. - enable Gujarati and Tamil translations (#140881)
  235. * Mon Nov 22 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.12-1
  236. - remove wrongly encoded character (#140318) and duplicate word from French
  237. man page
  238. * Wed Sep 29 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.11-1
  239. - avoid GtkDeprecationWarning on gtk.mainquit on new pygtk (#134043)
  240. * Tue Sep 28 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.10-1
  241. - make timezone page contents actually be shown in firstboot
  242. * Tue Sep 28 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.9-1
  243. - enable choosing which notebook page(s) to show (for firstboot, #133748)
  244. - some minor firstboot API changes, conflict with firstboot <= 1.3.26
  245. - some minor UI tweaks
  246. - remove pool.ntp.org from list of NTP server choices as system-config-date
  247. doesn't handle multi-IP machines really well ATM
  248. * Fri Sep 17 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.8-1
  249. - use pool.ntp.org as first choice of NTP servers (#132787)
  250. * Thu Sep 16 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.7-2
  251. - buildrequire python
  252. * Tue Sep 14 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.7-1
  253. - byte-compile python files
  254. - first shot at something like an interface for firstboot
  255. * Mon Sep 13 2004 Nils Philippsen <nphilipp@redhat.com>
  256. - get widget sensitivity correct on startup (#132431)
  257. * Fri Sep 03 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.5-1
  258. - actually display time zone map (#131641)
  259. - put NTP stuff into own tab to better accommodate firstboot (#131314)
  260. - add accelerators to Date & Time tab
  261. * Fri Aug 27 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.4-1
  262. - handle multiple servers, broadcastclient (#115148),
  263. local time source (#72110)
  264. * Tue Aug 03 2004 Nils Philippsen <nphilipp@redhat.com> 1.7.3.1-1
  265. - fix Japanese man page (#128766)
  266. * Wed Apr 14 2004 Brent Fox <bfox@redhat.com> 1.7.3-3
  267. - update desktop file (bug #120709)
  268. * Tue Apr 6 2004 Brent Fox <bfox@redhat.com> 1.7.3-2
  269. - fix desktop file icon path (bug #120176)
  270. * Wed Mar 24 2004 Brent Fox <bfox@redhat.com> 1.7.3-1
  271. - just copy over file, don't remove it (bug #119076)
  272. * Fri Mar 5 2004 Brent Fox <bfox@redhat.com> 1.7.2-1
  273. - preserve old restrict lines (bug #72110)
  274. * Tue Feb 3 2004 Brent Fox <bfox@redhat.com> 1.7.1-2
  275. - correct typo in URL in specfile
  276. * Thu Jan 8 2004 Brent Fox <bfox@redhat.com> 1.7.1-1
  277. - apply patch from bug #109803
  278. * Wed Nov 19 2003 Brent Fox <bfox@redhat.com> 1.6.1-1
  279. - rebuild
  280. * Wed Nov 12 2003 Brent Fox <bfox@redhat.com> 1.6.0-1
  281. - rename to system-config-date
  282. - add Obsoletes for redhat-config-date
  283. - adapt to Python2.3
  284. * Mon Nov 3 2003 Brent Fox <bfox@redhat.com> 1.5.27-1
  285. - add flag to allow timezone page to come up first
  286. * Wed Oct 29 2003 Brent Fox <bfox@redhat.com> 1.5.26-1
  287. - add French translation for man page from Frederic.Hornain@GB.BE
  288. * Sun Oct 26 2003 Brent Fox <bfox@redhat.com> 1.5.25-1
  289. - fix some other timezone po file encoding problems
  290. * Sun Oct 26 2003 Brent Fox <bfox@redhat.com> 1.5.24-1
  291. - make sure is.po file is UTF-8 encoded. (bug #107439) Similar to bug #107033
  292. * Wed Oct 15 2003 Brent Fox <bfox@redhat.com> 1.5.23-1
  293. - UTF8-ify po/timezones/de.po (bug #107033)
  294. * Fri Sep 19 2003 Brent Fox <bfox@redhat.com> 1.5.22-2
  295. - rebuild
  296. * Fri Sep 19 2003 Brent Fox <bfox@redhat.com> 1.5.22-1
  297. - call timeconfig if the GUI cannot be started (bug #104718)
  298. * Thu Sep 11 2003 Brent Fox <bfox@redhat.com> 1.5.21-2
  299. - bump relnum and rebuild
  300. * Thu Sep 11 2003 Brent Fox <bfox@redhat.com> 1.5.21-1
  301. - rebuild with fixed po file encodings (bug #104019)
  302. * Wed Sep 10 2003 Brent Fox <bfox@redhat.com> 1.5.20-1
  303. - add a Requires for newt (bug #104148)
  304. * Fri Aug 29 2003 Brent Fox <bfox@redhat.com> 1.5.19-2
  305. - bump relnum and rebuild
  306. * Fri Aug 29 2003 Brent Fox <bfox@redhat.com> 1.5.19-1
  307. - if timezone in /etc/sysconfig/clock is not in zone.tab, default to America/New_York (bug #101575)
  308. * Thu Aug 14 2003 Brent Fox <bfox@redhat.com> 1.5.18-1
  309. - tag on every build
  310. * Wed Jun 25 2003 Brent Fox <bfox@redhat.com> 1.5.15-2
  311. - bump version number and rebuild
  312. * Wed Jun 25 2003 Brent Fox <bfox@redhat.com> 1.5.15-1
  313. - don't move /usr/share/zoneinfo/UTC into /etc/localtime (#91228)
  314. * Mon Jun 16 2003 Brent Fox <bfox@redhat.com> 1.5.14-2
  315. - bump number and rebuild
  316. * Mon Jun 16 2003 Brent Fox <bfox@redhat.com> 1.5.14-1
  317. - Add a function to get timezone date page (bug #91984)
  318. * Tue May 27 2003 Brent Fox <bfox@redhat.com> 1.5.13-1
  319. - if /var/spool/postfix/etc/localtime exists, copy the new timezone file there (bug #88249)
  320. * Tue May 27 2003 Brent Fox <bfox@redhat.com> 1.5.12-1
  321. - add a header comment to ntpservers file (bug #91619)
  322. * Tue May 27 2003 Brent Fox <bfox@redhat.com> 1.5.11-2
  323. - bump rel num and rebuild
  324. * Thu May 22 2003 Brent Fox <bfox@redhat.com> 1.5.11-1
  325. - check for the existence of hwclock before running (bug #91323)
  326. * Thu May 22 2003 Brent Fox <bfox@redhat.com> 1.5.10-1
  327. - pull zonetab classes out into separate file to fix bug (#90185)
  328. * Tue May 20 2003 Brent Fox <bfox@redhat.com> 1.5.9-11
  329. - copy actual timezone into /etc/localtime instead of making a symlink (bug #91228)
  330. * Fri May 16 2003 Brent Fox <bfox@redhat.com> 1.5.9-10
  331. - when using UTC, make /etc/localtime point to /usr/share/zoneinfo/UTC (bug #89132)
  332. * Fri May 16 2003 Brent Fox <bfox@redhat.com> 1.5.9-9
  333. - Added mnemonics to widgets that didn't have them (bug #91026)
  334. - convert some timezone po files to utf-8 (bug #88461)
  335. * Wed Feb 26 2003 Brent Fox <bfox@redhat.com> 1.5.9-8
  336. - add requires for ntp (bug #85229)
  337. * Fri Feb 21 2003 Brent Fox <bfox@redhat.com> 1.5.9-7
  338. - remove dependency for gnome-python2-canvas, pygtk and ntp (bug #84837)
  339. * Wed Feb 12 2003 Jeremy Katz <katzj@redhat.com> 1.5.9-6
  340. - set codeset so that textmode works (#83518)
  341. * Tue Feb 11 2003 Brent Fox <bfox@redhat.com> 1.5.9-5
  342. - rebuild with latest docs
  343. * Tue Feb 11 2003 Tammy Fox <tfox@redhat.com>
  344. - updated docs
  345. * Tue Feb 4 2003 Brent Fox <bfox@redhat.com> 1.5.9-4
  346. - fall back to IP if we can't resolve it back to a hostname (bug #83463)
  347. * Mon Feb 3 2003 Brent Fox <bfox@redhat.com> 1.5.9-3
  348. - catch bogus ntp server names and raise a dialog
  349. * Mon Feb 3 2003 Brent Fox <bfox@redhat.com> 1.5.9-2
  350. - don't change value of ARC accidentally (bug #82281)
  351. * Thu Jan 30 2003 Brent Fox <bfox@redhat.com> 1.5.9-1
  352. - bump and build
  353. * Wed Jan 29 2003 Brent Fox <bfox@redhat.com> 1.5.8-1
  354. - use the new Red Hat ntp servers
  355. * Thu Jan 16 2003 Brent Fox <bfox@redhat.com> 1.5.7-6
  356. - catch error with no NTP server
  357. * Wed Jan 15 2003 Brent Fox <bfox@redhat.com> 1.5.7-5
  358. - write IPs to the server line instead of domain names (bug #70557)
  359. * Tue Jan 14 2003 Brent Fox <bfox@redhat.com> 1.5.7-4
  360. - list only stratum 2 ntp servers (bug #81629)
  361. * Fri Jan 10 2003 Brent Fox <bfox@redhat.com> 1.5.7-3
  362. - better check on ntp status by looking at initscrip return code
  363. - sent ntp initscript output to /dev/null when calling os.system()
  364. * Thu Jan 9 2003 Brent Fox <bfox@redhat.com> 1.5.7-2
  365. - change to condrestart
  366. * Fri Jan 3 2003 Brent Fox <bfox@redhat.com> 1.5.7-1
  367. - create a TUI to replace timeconfig
  368. - obsolete timeconfig
  369. * Thu Jan 2 2003 Brent Fox <bfox@redhat.com> 1.5.6-3
  370. - write an ipaddress for the restrict line (bug #80593)
  371. * Mon Dec 23 2002 Brent Fox <bfox@redhat.com> 1.5.6-2
  372. - handle missing ntpservers file
  373. - don't pass in parent, it breaks firstboot
  374. - handle busted ntp initscript
  375. * Fri Dec 13 2002 Brent Fox <bfox@redhat.com> 1.5.5-2
  376. - Print an error message if run from the console
  377. * Fri Nov 15 2002 Brent Fox <bfox@redhat.com> 1.5.5-1
  378. - Handle empty server lines in /etc/ntp.conf
  379. * Tue Nov 12 2002 Brent Fox <bfox@redhat.com> 1.5.4-2
  380. - Rebuild with latest translations
  381. * Wed Oct 30 2002 Brent Fox <bfox@redhat.com>
  382. - Add a build requires for python-tools
  383. * Fri Oct 25 2002 Brent Fox <bfox@redhat.com> 1.5.4-1
  384. - Write out an appropriate restrict line to /etc/ntp.conf
  385. - Fixes bug 70557
  386. * Tue Oct 22 2002 Brent Fox <bfox@redhat.com> 1.5.3-1
  387. - Apply patch from katzj to fix bug 76313
  388. - Fix bug 72149 correctly this time (hopefully)
  389. * Mon Oct 14 2002 Brent Fox <bfox@redhat.com> 1.5.2-12
  390. - Move ntpservers file into /etc/ntp. Fixes bug 74339
  391. * Thu Oct 10 2002 Brent Fox <bfox@redhat.com> 1.5.2-11
  392. - Fix bug 72149. Always apply timezone changes
  393. - Fix bug 73498. Apply UTC changes properly
  394. * Tue Sep 03 2002 Brent Fox <bfox@redhat.com> 1.5.2-10
  395. - convert desktop file to UTF8
  396. - pull in latest translations
  397. * Fri Aug 30 2002 Brent Fox <bfox@redhat.com> 1.5.2-9
  398. - run chkconfig on starting/stopping ntpd
  399. * Thu Aug 29 2002 Brent Fox <bfox@redhat.com> 1.5.2-8
  400. - set the flag to close parent on non-NTP setups
  401. - create an updateSpinButton function
  402. * Tue Aug 27 2002 Brent Fox <bfox@redhat.com> 1.5.2-7
  403. - Retrieve the only the first NTP server if there's more than one
  404. - Only modify the first server entry if there's more than one
  405. * Tue Aug 27 2002 Brent Fox <bfox@redhat.com> 1.5.2-6
  406. - Handle the case of having no server line in ntp.conf
  407. * Mon Aug 26 2002 Brent Fox <bfox@redhat.com> 1.5.2-5
  408. - Raise error dialogs if NTP servers can't be contacted
  409. * Wed Aug 21 2002 Brent Fox <bfox@redhat.com> 1.5.2-4
  410. - pull translation domains from rhpl
  411. * Wed Aug 21 2002 Brent Fox <bfox@redhat.com> 1.5.2-3
  412. - Fix timezone selection bug
  413. * Mon Aug 19 2002 Brent Fox <bfox@redhat.com> 1.5.2-2
  414. - Convert desktop file to UTF-8
  415. * Mon Aug 19 2002 Brent Fox <bfox@redhat.com> 1.5.2-1
  416. - Limit ping timeout to 5 seconds. We need a better solution for this in the future
  417. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 1.5.1-2
  418. - Make spin buttons keyboard sensitive. Fixes bug 68967
  419. * Mon Aug 12 2002 Tammy Fox <tfox@redhat.com> 1.5.1-1
  420. - replace System with SystemSetup in desktop file categories
  421. * Tue Aug 06 2002 Brent Fox <bfox@redhat.com> 1.5-2
  422. - use template ntp.conf file if the original has been removed for some reason
  423. * Mon Aug 05 2002 Brent Fox <bfox@redhat.com> 1.5-1
  424. - Fix translations for timezone list
  425. * Fri Aug 02 2002 Brent Fox <bfox@redhat.com> 1.4-8
  426. - Use new pam timestamp rules
  427. * Wed Jul 31 2002 Brent Fox <bfox@redhat.com>1.4-7
  428. - Put an end-of-line in /etc/ntp/step-tickers
  429. * Thu Jul 25 2002 Brent Fox <bfox@redhat.com> 1.4-6
  430. - Default to New York if the timezone in /etc/sysconfig/clock is bogus
  431. * Wed Jul 24 2002 Brent Fox <bfox@redhat.com> 1.4-5
  432. - Fixed console file bad link
  433. * Tue Jul 23 2002 Tammy Fox <tfox@redhat.com> 1.4-4
  434. - Change desktop file name (bug #69470)
  435. - Spec file fixes
  436. * Thu Jul 18 2002 Brent Fox <bfox@redhat.com> 1.4-3
  437. - Update for pygtk2 API change
  438. * Wed Jul 17 2002 Brent Fox <bfox@redhat.com> 1.4-2
  439. - Fix padding problem
  440. * Fri Jul 12 2002 Tammy Fox <tfox@redhat.com> 1.4-1
  441. - Updated docs for gtk2 interface
  442. - Add note about security level and ntpd (bug #68039)
  443. - Move desktop file to /usr/share/applications only
  444. * Thu Jul 11 2002 Brent Fox <bfox@redhat.com> 1.3-4
  445. - Remove some lingering references to dateconfig
  446. - Create symbolic link from dateconfig to redhat-config-date
  447. * Wed Jul 10 2002 Brent Fox <bfox@redhat.com> 1.3-1
  448. - Rename dateconfig to redhat-config-date
  449. - Check to see if we can ping ntp server before starting ntpd
  450. * Tue Jul 9 2002 Brent Fox <bfox@redhat.com> 1.2-1
  451. - Pull out ntp servers into a separate file
  452. - Write /etc/ntp/step-tickers file
  453. * Mon Jul 1 2002 Brent Fox <bfox@redhat.com> 1.1-3
  454. - If an NTP server is already specified, add it to the combo list
  455. * Fri Jun 28 2002 Brent Fox <bfox@redhat.com> 1.1-2
  456. - Changed spacing of buttons on bottom of the window
  457. * Thu Jun 27 2002 Tammy Fox <tfox@redhat.com> 1.1-2
  458. - Added border widths to clean up interface
  459. - Hooked up help
  460. - Removed Apply button
  461. * Thu Jun 27 2002 Brent Fox <bfox@redhat.com> 1.1-1
  462. - Updated pot file and respective po files
  463. * Sat Jun 22 2002 Brent Fox <bfox@redhat.com> 1.0.3-1
  464. - Fixed bug 66655
  465. - Fixed problem with selecting the current timezone in timezone_gui
  466. * Mon Jun 17 2002 Brent Fox <bfox@redhat.com> 1.0.2-1
  467. - Reenable the icon
  468. * Thu May 30 2002 Brent Fox <bfox@redhat.com> 1.0.1-5
  469. - Fixed translation bug
  470. * Thu May 30 2002 Brent Fox <bfox@redhat.com> 1.0.1-4
  471. - Removed Requires for pygnome
  472. * Mon May 20 2002 Brent Fox <bfox@redhat.com> 1.0.1-3
  473. - Pulled in documentation bugfix for bug #65228
  474. * Mon May 13 2002 Brent Fox <bfox@redhat.com>
  475. - Added Swedish translations to desktop file from menthos@menthos.com
  476. * Thu May 2 2002 Brent Fox <bfox@redhat.com> 1.0.1-2
  477. - Update for timezone translations
  478. * Mon Apr 15 2002 Trond Eivind Glomsr <teg@redhat.com> 1.0.1-1
  479. - Update for translations
  480. * Mon Feb 25 2002 Brent Fox <bfox@redhat.com>
  481. - Bump version to 1.0
  482. * Tue Feb 12 2002 Brent Fox <bfox@redhat.com>
  483. - Finished port to Python2.2/GTK2
  484. - Handle starting ntpd more gracefully
  485. - Made variable naming more consistent
  486. * Tue Jan 22 2002 Brent Fox <bfox@redhat.com>
  487. - Replaced C code for timezone map with Python from anaconda
  488. - Remove timezonemapmodule from /usr/lib/dateconfig
  489. * Thu Oct 18 2001 Brent Fox <bfox@redhat.com>
  490. - Put timezonemapmodule in /usr/lib/dateconfig
  491. * Thu Aug 30 2001 Trond Eivind Glomsr <teg@redhat.com> 0.7.4-6
  492. - Fix some character sets for translations (#52851)
  493. - dateconfig.png isn't a config file, mark the config files as noreplace
  494. * Mon Aug 27 2001 Tammy Fox <tfox@redhat.com>
  495. - Updated docs for UTC button
  496. * Thu Aug 16 2001 Brent Fox <bfox@redhat.com>
  497. - Fix sizing for non-US languages
  498. * Mon Aug 6 2001 Brent Fox <bfox@redhat.com>
  499. - added redhat-config-time and redhat-config-date scripts
  500. * Fri Aug 3 2001 Brent Fox <bfox@redhat.com>
  501. - created an icon
  502. - fixed install process to install icon and drop a file in /etc/X11/sysconfig
  503. * Fri Aug 3 2001 Preston Brown <pbrown@redhat.com>
  504. - set hardware clock as well.
  505. * Fri Jul 27 2001 Yukihiro Nakai <ynakai@redhat.com>
  506. - Add Japanese translation.
  507. * Fri Jul 20 2001 Tammy Fox <tfox@redhat.com>
  508. - added i18n stuff
  509. * Wed Jul 04 2001 Karsten Hopp <karsten@redhat.de>
  510. - fix install-path (INSTROOT)
  511. * Wed Jun 27 2001 Tammy Fox <tfox@redhat.com>
  512. - added help and help button
  513. * Sun Jun 24 2001 Brent Fox <bfox@redhat.com>
  514. - got starting and stopping of ntpd working
  515. - enabled detection of whether ntpd is currently running
  516. - added msf to author list
  517. * Thu Jun 21 2001 Brent Fox <bfox@redhat.com>
  518. - fixed problem with system path in timezone_gui.py
  519. * Wed Jun 13 2001 Tammy Fox <tfox@redhat.com>
  520. - improved man page
  521. * Tue Jun 12 2001 Tammy Fox <tfox@redhat.com>
  522. - added console access, fixed Makefile and spec file
  523. * Mon Jun 11 2001 Brent Fox <bfox@redhat.com>
  524. - added ntp section and timezone section
  525. * Sun Jan 28 2001 Brent Fox <bfox@redhat.com>
  526. - initial coding and packaging