system-config-network-vl.spec 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959
  1. # -*- RPM-SPEC -*-
  2. Summary: The GUI of the Network Adminstration Tool
  3. Summary(ja): ネットワーク管理ツール(GUI)
  4. Name: system-config-network
  5. Version: 1.5.97
  6. Release: 4%{?_dist_release}
  7. URL: http://fedoraproject.org/wiki/SystemConfig/network
  8. License: GPLv2+
  9. Group: Applications/System
  10. Source0: %{name}-%{version}.tar.bz2
  11. Source1: %{name}-ja-help-image.tar.bz2
  12. Patch0: %{name}-1.5.97-fix-crash-on-saving.patch
  13. Patch1: %{name}-1.5.99-modprobeconf.patch
  14. Patch2: %{name}-1.5.97-ja-help.patch
  15. BuildArch: noarch
  16. BuildRequires: python >= 0:2.2, openjade, docbook-style-dsssl, perl, gettext, desktop-file-utils, perl-XML-Parser
  17. Requires: %{name}-tui = %{version}-%{release}
  18. Requires: pygtk2-libglade, pygtk2, gnome-python, usermode, xdg-utils
  19. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  20. %description
  21. This is the GUI of the network configuration tool,
  22. supporting Ethernet, Wireless, TokenRing, ADSL, ISDN and PPP.
  23. %package tui
  24. Summary: The Network Adminstration Tool
  25. Summary(ja): ネットワーク管理ツール
  26. Group: Applications/System
  27. Requires: initscripts >= 8.80.0, usermode , kudzu, python, rhpl, newt
  28. Requires: pciutils, dbus-python
  29. %description tui
  30. This is the network configuration tool,
  31. supporting Ethernet, Wireless, TokenRing, ADSL, ISDN and PPP.
  32. %prep
  33. %setup -q -a 1
  34. %patch0 -p1
  35. %patch1 -p1
  36. %patch2 -p1
  37. %build
  38. %configure
  39. %install
  40. rm -rf $RPM_BUILD_ROOT
  41. make DESTDIR=$RPM_BUILD_ROOT install
  42. mkdir $RPM_BUILD_ROOT%{_datadir}/applications
  43. for i in system-config-network.desktop system-control-network.desktop; do \
  44. desktop-file-install --vendor "" --delete-original \
  45. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  46. --add-category System \
  47. --add-category Settings \
  48. $RPM_BUILD_ROOT%{_datadir}/system-config-network/$i; \
  49. done;
  50. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/networking/devices
  51. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/networking/profiles/default
  52. %find_lang %name
  53. %clean
  54. rm -rf $RPM_BUILD_ROOT
  55. %files
  56. %defattr(-,root,root,-)
  57. %doc COPYING
  58. %{_datadir}/system-config-network/pixmaps
  59. %{_datadir}/system-config-network/netconfpkg/gui
  60. %{_datadir}/system-config-network/netconf.py*
  61. %{_datadir}/system-config-network/netconf_control.py*
  62. %{_sbindir}/system-config-network-gui
  63. %{_bindir}/system-control-network
  64. %{_datadir}/applications/*
  65. %{_datadir}/pixmaps/*
  66. %files -f %{name}.lang tui
  67. %defattr(-,root,root,-)
  68. %doc COPYING
  69. %dir %{_datadir}/system-config-network
  70. %doc %dir %{_datadir}/system-config-network/help
  71. %doc %{_datadir}/system-config-network/help/*
  72. %{_datadir}/system-config-network/netconf_cmd.py*
  73. %{_datadir}/system-config-network/netconf_tui.py*
  74. %{_datadir}/system-config-network/version.py*
  75. %dir %{_datadir}/system-config-network/netconfpkg
  76. %{_datadir}/system-config-network/netconfpkg/conf
  77. %{_datadir}/system-config-network/netconfpkg/tui
  78. %{_datadir}/system-config-network/netconfpkg/plugins
  79. %{_datadir}/system-config-network/netconfpkg/*.py*
  80. %{_datadir}/system-config-network/module-info
  81. %{_datadir}/system-config-network/providerdb
  82. %config(noreplace) %{_sysconfdir}/pam.d/*
  83. %config(noreplace) %{_sysconfdir}/security/console.apps/*
  84. %dir %{_sysconfdir}/sysconfig/networking
  85. %dir %{_sysconfdir}/sysconfig/networking/profiles
  86. %dir %{_sysconfdir}/sysconfig/networking/profiles/default
  87. %dir %{_sysconfdir}/sysconfig/networking/devices
  88. %{_sbindir}/system-config-network
  89. %{_sbindir}/system-config-network-tui
  90. %{_sbindir}/system-config-network-cmd
  91. %{_bindir}/system-config-network
  92. %{_bindir}/system-config-network-cmd
  93. %changelog
  94. * Thu Oct 22 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.5.97-4
  95. - add source1(images of Japanese help).
  96. * Wed Oct 21 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.5.97-3
  97. - add patch2 to add Japanese help.
  98. * Wed Sep 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.97-2
  99. - add patch1 to use /etc/modprobe.d/modprobe.conf
  100. * Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.97-1
  101. - new upstream release
  102. - add Patch0 to fix crash on saving data.
  103. * Tue Apr 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.95-1
  104. - new upstream release
  105. * Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.10-1
  106. - initial build for Vine Linux
  107. * Tue May 27 2008 Harald Hoyer <harald@redhat.com> - 1.5.10
  108. - fixed Makefile.am
  109. * Tue May 27 2008 Harald Hoyer <harald@redhat.com> - 1.5.9
  110. - fixed console perms for Fedora <= 8
  111. * Fri May 16 2008 Harald Hoyer <harald@redhat.com> - 1.5.8
  112. - copy info from DNS page into each ifcfg file (dcbw)
  113. * Fri Apr 25 2008 Harald Hoyer <harald@redhat.com> - 1.5.7
  114. - NCisdnhardware.card -> NCisdnhardware._card (harald)
  115. - Fixed pap-secret parsing. (#rhbz#443347) (jmoskovc)
  116. * Tue Apr 08 2008 Harald Hoyer <harald@redhat.com> - 1.5.6
  117. - translation update
  118. - check origLine for None (harald)
  119. * Mon Mar 31 2008 Harald Hoyer <harald@redhat.com> - 1.5.5
  120. - fixed more rhbz#439718
  121. * Mon Mar 31 2008 Harald Hoyer <harald@redhat.com> - 1.5.4
  122. - fixed typos in DialupDruid (harald)
  123. - return None is nothing is selected (harald)
  124. - fixed #438901: Network Device Control doesn't work unless s-c-n has been run once (harald)
  125. - fixed #435041 and added UnitTest (harald)
  126. - be case-independent in mode parsing rhbz#433748 (harald)
  127. - fixed rhbz#429725 (harald)
  128. - do not traceback on non-int Volume (harald)
  129. - fixed rhbz#439718 (harald)
  130. * Sat Mar 29 2008 Harald Hoyer <harald@redhat.com> - 1.5.3
  131. - readded DialupDruid (harald)
  132. * Sat Mar 29 2008 Harald Hoyer <harald@redhat.com> - 1.5.2
  133. - devices which are controlled by NM cannot be activated/deactivated (rhbz#438902)
  134. - use ". config-util" in console-apps config file (rhbz#428408) (harald)
  135. - use xdg-open instead of htemlview (rhbz#415031) (harald)
  136. - added sr@latin (rhbz#425845)
  137. - update buttons on device edit change (harald)
  138. - fixed some Alias handling (harald)
  139. - removed Init2 string (clashes with UTMS) (harald)
  140. - no activate/deactivate/delete NMControlled devices (harald)
  141. - NCPluginDevTokenRing return None if no dialog (harald)
  142. - BackendHal fix to use Factory classes, no kudzu hw import (harald)
  143. - check if hostname is not None, before checking it (harald)
  144. - added tui/NCPluginTokenRingInterface (harald)
  145. - MTU moved to base device (rhbz#439202) (harald)
  146. - fixed import for ParseError (harald)
  147. * Thu Feb 28 2008 Harald Hoyer <harald@redhat.com> - 1.5.1
  148. - removed CIPE (harald)
  149. - s/Devernet/Network/ (harald)
  150. - Auto -> auto (harald)
  151. - only append localhost to AliasList, if not already in (harald)
  152. - show error dialog, if device loading failes (harald)
  153. - moved MRU to Dialup only (harald)
  154. - recognize qeth devices in kudzu lists (rhbz#184734) (harald)
  155. - added MRU field (rhbz#221294) (harald)
  156. - added TUI for QETH (harald)
  157. - do not traceback, if we try to remove a device not in our active list (harald)
  158. - added qeth support (harald)
  159. - removed ctc and iucv devices (rhbz#219180) (harald)
  160. - do not handle ifcfg-${parent_device}-range* rhbz#221292 (harald)
  161. - Minor fix in hosts parser to make tui works. (jmoskovc)
  162. - Stupid mode doesn't go away anymore.(rhbz#177931) (jmoskovc)
  163. - Fixed crash when Baud=None (jmoskovc)
  164. - Removing PPP option should work. NETWORKMANAGER -> NM_CONTROLLED (jmoskovc)
  165. - Fixed problem with import rhbz#429725 (jmoskovc)
  166. - Changed Clist in host editor to GtkTreeView, added checkbox to show loopbacks in hosts (jmoskovc)
  167. - Minor fix in hosts parser - now it accepts trailing dot. (jmoskovc)
  168. - Improved {pap|chap}-secrets parser, added checkbox to reveal password in dialup config (jmoskovc)
  169. - Fixed crash when hostname is changed. (jmoskovc)
  170. * Mon Dec 03 2007 Harald Hoyer <harald@redhat.com> - 1.5.0
  171. - v1.5.0
  172. * Mon Dec 03 2007 Harald Hoyer <harald@redhat.com>, Jiri Moskovcak <jmoskovc@redhat.com> - 1.4.7
  173. - added HAL support
  174. - fixed /etc/hosts parser
  175. - added "Controlled by NetworkManager"
  176. - do not fall into modified state for activate/deactivate (rhbz#377261)
  177. * Mon Nov 12 2007 Harald Hoyer <harald@redhat.com> - 1.4.6
  178. - moved network.xpm to (pkgdatadir)/pixmaps (rhbz#377861)
  179. * Mon Nov 12 2007 Harald Hoyer <harald@redhat.com> - 1.4.5
  180. - changed yelp to htmlview
  181. * Wed Nov 7 2007 Stepan Kasal <skasal@redhat.com> - 1.4.4
  182. - s/NEtwork/Network/ in the summary of -tui, to be consistent
  183. with the summary line of the main rpm (the neat acronym is no
  184. longer advertised anyway)
  185. - Resolves: #239216
  186. * Fri Oct 26 2007 Harald Hoyer <harald@redhat.com> - 1.4.4
  187. - removed not yet used NCBackendHal.py (rhbz#353771)
  188. - fixed yelp dependency (rhbz#344981)
  189. - moved %%configure to %%build (rhbz#353761)
  190. - fixed type with getRoot (rhbz#368871)
  191. * Mon Oct 15 2007 Harald Hoyer <harald@redhat.com> - 1.4.3
  192. - fixed /etc/hosts problem (rhbz#331451)
  193. * Fri Oct 12 2007 Harald Hoyer <harald@redhat.com> - 1.4.3
  194. - added version.py.in to POTFILES.in (rhbz#244053)
  195. - corrected URL (rhbz#237717)
  196. * Mon Oct 08 2007 Harald Hoyer <harald@redhat.com> - 1.4.2
  197. - speedup genClass
  198. - restorecon selinux context
  199. * Mon Sep 24 2007 Harald Hoyer <harald@redhat.com> - 1.4.1-2
  200. - require newt-python instead of newt only
  201. * Mon Sep 24 2007 Harald Hoyer <harald@redhat.com> - 1.4.1
  202. - version 1.4.1
  203. * Thu Aug 16 2007 Harald Hoyer <harald@redhat.com> - 1.4.0
  204. - version 1.4.0
  205. * Mon Jan 8 2007 Harald Hoyer <harald@redhat.com> - 1.3.99
  206. - fixed #221289
  207. - Resolves: rhbz#221289
  208. * Fri Dec 15 2006 Harald Hoyer <harald@redhat.com> - 1.3.98
  209. - translation update (bug #216559)
  210. - Resolves: rhbz#216559
  211. * Tue Nov 28 2006 Harald Hoyer <harald@redhat.com> - 1.3.97
  212. - translation update
  213. * Thu Nov 2 2006 Harald Hoyer <harald@redhat.com> - 1.3.96
  214. - Resolves: rhbz #211980, rhbz #213181
  215. * Wed Oct 4 2006 Harald Hoyer <harald@redhat.com> - 1.3.95
  216. - translation update (bug #208886)
  217. - use rhpl.iwlib for wireless functions (bug #197954)
  218. - added perl-XML-Parser build requirement
  219. * Tue Aug 15 2006 Harald Hoyer <harald@redhat.com> - 1.3.94
  220. - translation update (bug #182650)
  221. * Tue Aug 15 2006 Harald Hoyer <harald@redhat.com> - 1.3.93
  222. - added tui subdir (bug #202560)
  223. * Fri Aug 11 2006 Harald Hoyer <harald@redhat.com> - 1.3.92
  224. - fixed #201659
  225. - translation update
  226. * Tue Jul 25 2006 Harald Hoyer <harald@redhat.com> - 1.3.91
  227. - fixed "New Device" in text-mode
  228. * Tue Jul 18 2006 Harald Hoyer <harald@redhat.com> - 1.3.90
  229. - fixed:
  230. - [135014] MTU and MRU should be confiurable for ADSL
  231. - [141055] system-config-network needs to be able to set MTU
  232. - [149780] no GATEWAY, IPADDR and NETMASK, if BOOTPROTO=dhcp
  233. - [150362] [Errno 2] No such file or directory: '/etc/hosts'
  234. - [157172] Wrong DNS for provider "ZEDAT_Berlin"
  235. - [160417] Bad: cannot make any changes to network settings
  236. - [169819] Trailing space in host name causes crash
  237. - [175078] String (country name) change request
  238. - [176145] Please enable Serbian translation in system-config-network
  239. - [177198] deprecation warning in system-config-network
  240. - [187563] localized option passed to ifcfg-wlan0 files
  241. - [188321] Creating an alias for a network interface breaks device
  242. setup after reboots
  243. - [190242] Firefox instance running as root when used to read docs
  244. for system-config-*
  245. - [197401] Don't write HWADDR for alias interfaces
  246. * Fri Jul 14 2006 Nils Philippsen <nphilipp@redhat.com>
  247. - enable ml, or, sr, sr@Latn translations (#176145)
  248. * Wed Nov 02 2005 Harald Hoyer <harald@redhat.com> - 1.3.30
  249. - removed interdruid
  250. - reversed Cancel/Ok button ordering
  251. * Tue Oct 25 2005 Harald Hoyer <harald@redhat.com> - 1.3.29
  252. - fixed profileFrame labeling
  253. * Wed Oct 10 2005 Harald Hoyer <harald@redhat.com> - 1.3.28
  254. - fixed picture paths in glade files
  255. - fixed cancel case of passphrase dialog
  256. * Wed Oct 10 2005 Harald Hoyer <harald@redhat.com> - 1.3.27
  257. - use new pam stack replacement
  258. - added OnParent for Alias Devices
  259. - added SPI and better key generation for ipsec
  260. - corrected column handling in main window
  261. - GUI liftup
  262. - added AVM Fritz!PCI v2.0 ISDN card to ISDN Hardwarelist (bug 134605)
  263. - remove /etc/sysconfig/isdncard, if no ISDN is configured
  264. * Wed Apr 20 2005 Harald Hoyer <harald@redhat.com> - 1.3.26
  265. - CBCP_MSN added (bug #125710)
  266. * Tue Mar 31 2005 Harald Hoyer <harald@redhat.com> - 1.3.25
  267. - more i18n languages
  268. * Wed Mar 30 2005 Harald Hoyer <harald@redhat.com> - 1.3.24
  269. - gtk.FALSE and gtk.TRUE cleanups
  270. * Mon Mar 21 2005 Harald Hoyer <harald@redhat.com> - 1.3.23-2
  271. - moved gui parts out of the tui package
  272. * Fri Mar 04 2005 Harald Hoyer <harald@redhat.com> - 1.3.23
  273. - update to new gnome/gtk/glade
  274. * Wed Oct 20 2004 Harald Hoyer <harald@redhat.com> - 1.3.22
  275. - translation updates, added nb.po (bug 136462)
  276. * Tue Oct 05 2004 Harald Hoyer <harald@redhat.com> - 1.3.21
  277. - fixed /etc/hosts handling
  278. - handle .ko module names in updateFromKudzu
  279. * Fri Sep 03 2004 Harald Hoyer <harald@redhat.com> - 1.3.20
  280. - dhcp cannot be selected for aliased devices (bug 129096)
  281. * Thu Aug 26 2004 Harald Hoyer <harald@redhat.com> - 1.3.19
  282. - hopefully fixed bug 125393
  283. - fixed removal of device files
  284. * Fri Jul 30 2004 Harald Hoyer <harald@redhat.com> - 1.3.18
  285. - changed mainloop and mainquit
  286. - translation updates
  287. * Tue Jul 06 2004 Harald Hoyer <harald@redhat.com> - 1.3.17
  288. - bugfix release for FC2
  289. * Tue Jun 29 2004 Harald Hoyer <harald@redhat.com> - 1.3.17
  290. - better "make clean"
  291. - removed references to Red Hat Linux
  292. - added testsuite for data layer
  293. - added some module-info entries
  294. - added command line parsing to network-control
  295. - added IPsec to network-cmd
  296. - switched logging to syslog
  297. - do not touch bonding slaves
  298. - better alias handling
  299. - better handling of chroot
  300. - read *.ko modules also
  301. - handle modules parameter without "="
  302. - create correct SPI_ identifier for manual IPsec keying
  303. - better hostname handling
  304. - better profile handling
  305. - fix kernel version parsing
  306. - unknown-flag.xpm for unknown country flags
  307. - fixed TokenRing glade file (bad hash at beginning of file)
  308. - fix the length of IPSec shared keys
  309. - prevent modified status after profile switching
  310. - save dialog, for ipsec deactivation
  311. - PEERDNS defaults to yes
  312. - routing for wireless config dialog
  313. - only display CIPE for kernel < 2.6
  314. * Thu Apr 1 2004 Harald Hoyer <harald@redhat.com> - 1.3.17
  315. - translation updates (119610)
  316. * Thu Mar 4 2004 Harald Hoyer <harald@redhat.com> - 1.3.16
  317. - be more relaxed, when parsing the kernel version (115917)
  318. - fixed removing of Hostname (115795)
  319. - fixed "DevEthernet instance has no attribute 'IPv6Init'" (116375)
  320. - removed save dialog, when switching profiles (107399)
  321. - added generic Initstrings (115768)
  322. - added secure.png logo
  323. - added "-c" parameter for activate/deactivate
  324. - changed hotkeys to avoid double entries
  325. - use new pixmap loading code (only take local paths, if debugging is active)
  326. - moved updateNetworkScripts() to NC_functions.py
  327. - fallback on /etc/sysconfig/network-scripts
  328. - removed /usr/lib/rhs/python from sys.path
  329. - added -? as a command line option
  330. - corrected --root= option for gui
  331. - activate/deactivate buttons always sensitive
  332. - check for ipsec-tools and dynamically display ipsec tab
  333. - no second dialog while activating in system-control-network
  334. - change hosts file on hostname change
  335. - PEERDNS is true, if not configured
  336. * Thu Jan 29 2004 Harald Hoyer <harald@redhat.com> - 1.3.15
  337. - added IPv6 support per device (111377)
  338. * Wed Jan 28 2004 Harald Hoyer <harald@redhat.com> - 1.3.14
  339. - modules.conf -> modprobe.conf
  340. * Thu Dec 18 2003 Harald Hoyer <harald@redhat.de> 1.3.13-2
  341. - added mkinstalldirs to EXTRA_DIST
  342. - added version to provides
  343. * Wed Dec 17 2003 Harald Hoyer <harald@redhat.de> 1.3.13
  344. - fixed T-Online dialog #110911
  345. - default flow control to CTSRTS #110347
  346. - only clear login/pw on provider select, if provider has its own number
  347. - fixed cancel of dialup process #103421
  348. - default to "/" for chrooted configuration
  349. - default to "default" profile if none active
  350. - fixed "activate button not active" #110193
  351. - scn-tui requires newt #104213
  352. - fixed #107816, by recognizing /var/run/ppp-ppp<NICKNAME>.pid
  353. - fixed a bug in ISDN activate #100677
  354. * Tue Dec 16 2003 Harald Hoyer <harald@redhat.de> 1.3.12
  355. - renamed redhat-config-network -> system-config-network
  356. - added pciutils requirement
  357. - added utf-8 encoding comments
  358. - corrected some translation strings
  359. - added redhat-config-network provides
  360. * Tue Oct 28 2003 Harald Hoyer <harald@redhat.de> 1.3.10
  361. - removed restriction on t-online password entry #105970
  362. - failsafe changing the error image #108094
  363. - corrected indention #108151
  364. * Mon Oct 27 2003 Harald Hoyer <harald@redhat.de> 1.3.9
  365. - fixed 107501, 107387, 106751, 104213
  366. - fallback to no logfile, if opening the logfile fails
  367. - test, if /etc/{hosts,resolv.conf} exists
  368. - removed ipsec tab
  369. * Thu Oct 23 2003 Than Ngo <than@redhat.com> 1.3.8
  370. - fix a bug in ISDN activate
  371. * Wed Oct 22 2003 Than Ngo <than@redhat.com> 1.3.7-2
  372. - fix a bug in saving of ISDN config file
  373. - add support nickname for ISDN
  374. * Wed Oct 8 2003 Harald Hoyer <harald@redhat.de> 1.3.7
  375. - merged in changes from Taroon
  376. * Thu Aug 14 2003 Harald Hoyer <harald@redhat.de> 1.3.6
  377. - fixed #100471
  378. * Wed Aug 6 2003 Harald Hoyer <harald@redhat.de> 1.3.5
  379. - fixed #98251
  380. * Fri Aug 1 2003 Harald Hoyer <harald@redhat.de> 1.3.4
  381. - fixed #101386
  382. - save wireless keys in keys file
  383. * Thu Jul 31 2003 Harald Hoyer <harald@redhat.de> 1.3.3
  384. - fixed #85365
  385. - fixed glade file loading
  386. - more ipsec stuff
  387. - neat can use a "chrooted" environment now (-r)
  388. - .rpmsave will not be loaded
  389. - no interrupt/io settings for PNP cards
  390. - HIGIfied labels
  391. - double click for hardware and ipsec
  392. * Wed Jul 2 2003 Than Ngo <than@redhat.com> 1.3.2-2
  393. - upgrade provide database
  394. * Wed Jun 18 2003 Harald Hoyer <harald@redhat.de> 1.2.12-2
  395. - fixed #97562
  396. * Thu Jun 17 2003 Harald Hoyer <harald@redhat.de> 1.2.12-1
  397. - wlan0 handling
  398. - splash screen bug fixed
  399. - improvements in HW list handling
  400. - isdncard handling #91607
  401. * Thu Jun 12 2003 Harald Hoyer <harald@redhat.de> 1.2.11
  402. - fixed #97027
  403. - fixed subs of -
  404. * Wed Jun 11 2003 Harald Hoyer <harald@redhat.de> 1.2.10
  405. - fixed #97027 #96994
  406. - fixed fedora bugzilla issues #326
  407. - update of some translations
  408. * Wed Jun 4 2003 Harald Hoyer <harald@redhat.de> 1.2.8
  409. - lazy file unlinking
  410. - fixed #91620 #91583
  411. - ConfEHosts -> ConfFHosts
  412. * Mon May 19 2003 Harald Hoyer <harald@redhat.de> 1.2.7
  413. - make PAP/CHAP work again
  414. - route files chmod(0644)
  415. - added local variables to traceback
  416. * Thu May 01 2003 Harald Hoyer <harald@redhat.de> 1.2.6
  417. - use unsernetctl instead of ifdown/ifup
  418. * Thu May 01 2003 Harald Hoyer <harald@redhat.de> 1.2.5
  419. - fixed early import of plugins
  420. * Wed Apr 30 2003 Harald Hoyer <harald@redhat.de> 1.2.4-3
  421. - fixed #89915 and #89916
  422. * Tue Apr 29 2003 Harald Hoyer <harald@redhat.de> 1.2.4-1
  423. - 1.2.4 bugfix release
  424. * Wed Apr 2 2003 Harald Hoyer <harald@redhat.de> 1.2.3-3
  425. - Bugfix release for 9
  426. - fixed #85011, #85703, #85653, #84956, #83640, #68169, #86476, #78043, #77763
  427. * Fri Feb 21 2003 Harald Hoyer <harald@redhat.de> 1.2.0-2
  428. - bump to 1.2.0
  429. - fixed #84725
  430. - warning for #84752
  431. * Fri Feb 12 2003 Harald Hoyer <harald@redhat.de> 1.1.97-1
  432. - fixed #83692
  433. - updated documentation
  434. * Mon Feb 3 2003 Harald Hoyer <harald@redhat.de> 1.1.94-1
  435. - base -> tui, gui -> base
  436. * Thu Jan 30 2003 Harald Hoyer <harald@redhat.de> 1.1.93-1
  437. - 1.1.93
  438. * Wed Jan 29 2003 Harald Hoyer <harald@redhat.de> 1.1.92-1
  439. - 1.1.92
  440. * Tue Jan 14 2003 Harald Hoyer <harald@redhat.de> 1.1.90-1
  441. - 1.1.90
  442. * Thu Dec 19 2002 Than Ngo <than@redhat.com>
  443. - import ConfDevice
  444. * Mon Dec 16 2002 Harald Hoyer <harald@redhat.de>
  445. - 1.1.86
  446. * Fri Dec 13 2002 Harald Hoyer <harald@redhat.de>
  447. - 1.1.85
  448. * Wed Dec 11 2002 Elliot Lee <sopwith@redhat.com> 1.1.80-1
  449. - Remove unpackaged files
  450. * Mon Sep 2 2002 Than Ngo <than@redhat.com> 1.1.20-1
  451. - don't crash by selecting provider
  452. - Set correct HangupTimeout for ISDN connection
  453. * Sat Aug 31 2002 Preston Brown <pbrown@localhost.localdomain>
  454. - fix typo in error dialog function
  455. * Thu Aug 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.1.17-1
  456. - Make it use the gnome help system, add yelp as a dependency (#71857)
  457. - Traceback fix: # 72581
  458. - translation updates
  459. * Wed Aug 14 2002 Harald Hoyer <harald@redhat.de>
  460. - #71448
  461. - #71265
  462. - #70988
  463. * Tue Aug 13 2002 Harald Hoyer <harald@redhat.de> 1.1.15-1
  464. - many bugfixes, including #71062 #69333 #68793 #69133
  465. * Thu Aug 1 2002 Than Ngo <than@redhat.com> 1.1.14-1
  466. - set correct device type for rawip ISDN connections (bug #69568)
  467. - add some ISPs for Austria
  468. * Tue Jul 30 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.1.13-1
  469. - Fixes to the traceback dialog (fix "save to floppy" (we don't do that),
  470. add i18n.)
  471. - Fix traceback with malformed /etc/hosts (#69320)
  472. - Fix dependencies (#69990)
  473. - Some minor userhelper fixes
  474. * Thu Jul 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.1.12-1
  475. - doc loc fixes (images)
  476. - add pam_timestamp support (#69869)
  477. * Wed Jul 24 2002 Harald Hoyer <harald@redhat.de>
  478. - renamed "default" profile in GUI
  479. - fixed device renaming in profiles
  480. * Wed Jul 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.1.10-1
  481. - More bugfixes, including #69635 #69636
  482. - Updated docs
  483. * Tue Jul 23 2002 Harald Hoyer <harald@redhat.de> 1.1.9-1
  484. - lots of bugfixes again :)
  485. * Wed Jul 17 2002 Harald Hoyer <harald@redhat.de>
  486. - lots of bugfixes
  487. - reactivated profile gui
  488. * Mon Jul 8 2002 Harald Hoyer <harald@redhat.de>
  489. - lots of bugfixes, new .desktop stuff
  490. - added desktop-file-utils BuildRequires
  491. * Tue Jul 2 2002 Harald Hoyer <harald@redhat.de> 1.1.7-1
  492. - cleanup, usability
  493. * Mon Jul 01 2002 Than Ngo <than@redhat.com> 1.1.6-1
  494. - get rid of isdnup userisdnctl, both are now part of isdn4k-utils
  495. * Thu Jun 27 2002 Harald Hoyer <harald@redhat.de> 1.1.5-1
  496. - many bug fixes due to gtk2 conversion
  497. - fixed #67273 #66200 #65185 #65073 #63963
  498. * Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
  499. - ethtool, pcmcia, wireless improvements
  500. * Sat Jun 22 2002 Than Ngo <than@redhat.com> 1.1.4-1
  501. - fixed traceback bug in activate
  502. - some fixes in glade file
  503. * Sun Jun 16 2002 Than Ngo <than@redhat.com> 1.1.3-1
  504. - get_pixbuf: if no icon was not found, looks the icons
  505. in standard icon directory
  506. - bug fixes in wireless
  507. * Wed Jun 12 2002 Harald Hoyer <harald@redhat.de> 1.1.2-1
  508. - lots of i18n and migration changes
  509. - wireless reactivated
  510. * Fri Jun 07 2002 Than Ngo <than@redhat.com> 1.1.1-1
  511. - set PPPOE_TIMEOUT=80 as default, it should be about 4 times
  512. the LCP_INTERVAL (bug #64903)
  513. * Wed May 29 2002 Harald Hoyer <harald@redhat.de>
  514. - ported to python2, gtk2, gnome2
  515. * Wed Apr 17 2002 Trond Eivind Glomsrød <teg@redhat.com>
  516. - Turn off wireless. It doesn't work with all modes, all cards
  517. and you can't edit IP settings after the initial attempt
  518. * Wed Apr 17 2002 Harald Hoyer <harald@redhat.com> 1.0.0-1
  519. - moved ethmodule.so to /usr/lib
  520. - call it 1.0.0
  521. * Tue Apr 16 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.30-1
  522. - Updated translations
  523. - Updated docs
  524. * Tue Apr 16 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.28-1
  525. - more fixes
  526. * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.27-1
  527. - Update translations, more fixes
  528. * Mon Apr 15 2002 Harald Hoyer <harald@redhat.com> 0.9.26-1
  529. - The Most Fixes (tm)
  530. * Sat Apr 13 2002 Than Ngo <than@redhat.com> 0.9.25-1
  531. - More fixes
  532. * Thu Apr 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.24-1
  533. - More fixes (#63177,#57064,#63207)
  534. * Tue Apr 09 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.23-1
  535. - more fixes
  536. - updated translations
  537. * Thu Apr 04 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.22-1
  538. - more fixes, including #62697,
  539. * Sat Mar 30 2002 Than Ngo <than@redhat.com> 0.9.21-1
  540. - add Token Ring/Wireless/Cipe Druids
  541. - more fixes
  542. * Wed Mar 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.20-1
  543. - Rebuild... it should have more fixes
  544. * Wed Mar 26 2002 Than Ngo <than@redhat.com> 0.9.19-1
  545. - add functions for status/activate/deactivate in neat
  546. - more fixes
  547. * Sat Mar 16 2002 Than Ngo <than@redhat.com> 0.9.18-1
  548. - add userisdnctl for ISDN
  549. - more fixes
  550. * Thu Mar 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.17-1
  551. - Even more fixes
  552. * Thu Mar 14 2002 Than Ngo <than@redhat.com> 0.9.16-1
  553. - various fixes
  554. * Thu Mar 14 2002 Than Ngo <than@redhat.com> 0.9.15-1
  555. - add desktop file for neat-control
  556. - various fixes, additions
  557. * Wed Mar 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.14-1
  558. - Require gnome-core, buildrequire gnome-core-devel
  559. * Mon Mar 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.13-1
  560. - New build
  561. - No longer noarch
  562. * Thu Feb 28 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.12-1
  563. - Various fixes, additions
  564. * Tue Jan 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.9.11-1
  565. - build in new environment
  566. * Mon Jan 07 2002 Than Ngo <than@redhat.com> 0.9.10.1-1
  567. - fixed bug #57853
  568. * Tue Dec 03 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.9.10-1
  569. - minor fixes, more translations
  570. * Mon Nov 26 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.9.9-0.1
  571. - Trying again, with more fixes :)
  572. * Fri Nov 25 2001 Than Ngo <than@redhat.com> 0.9.8-0.6
  573. - fixed bug #56145, #56146, #56147
  574. * Tue Nov 20 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.9.8-0.5
  575. - prepare for errata
  576. * Fri Nov 02 2001 Than Ngo <than@redhat.com> 0.9.7-1
  577. - fixed 'AVM PnP'/'Sedlbauer Speed Fax+ PnP'/'ASUS Com ISDNLink ISA PnP'
  578. - update provider DB
  579. * Tue Oct 30 2001 Than Ngo <than@redhat.com> 0.9.7-1
  580. - allow setting AVM PCI (Fritz!PCI v2) if kernel supports it
  581. - fixed some typo bugs
  582. * Wed Oct 24 2001 Harald Hoyer <harald@redhat.com> 0.9.6-1
  583. - seperated gui from data layer
  584. - make .pyc ghost files
  585. - fixed profile/alias problem
  586. - modem probing only once
  587. * Mon Oct 22 2001 Harald Hoyer <harald@redhat.com> 0.9.5-1
  588. - fixed consolehelper
  589. - added chars [_-] ro nickname pattern
  590. - added traceback catching dialog
  591. * Wed Oct 17 2001 Harald Hoyer <harald@redhat.com> 0.9.4-1
  592. - fixed /etc/hosts
  593. - fixed pap/chap
  594. - fixed 'save changes?'
  595. * Tue Oct 16 2001 Than Ngo <than@redhat.com> 0.9.3-1
  596. - fix internet-druid fails (bug #54192)
  597. - fix dial on demand problem from some ISDN Provider in German
  598. - don't trace back if length of Login name is 2 (bug #54322)
  599. * Thu Sep 27 2001 Than Ngo <than@redhat.com> 0.9.2-1
  600. - enable TCPIP for CIPE
  601. - show device Tab as default if devices exist
  602. * Wed Sep 12 2001 Than Ngo <than@redhat.com> 0.9.1-1
  603. - add CTC and IUCV support for s390/s390x
  604. - disable Dialup on s390/s390x
  605. * Thu Sep 5 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.9-1
  606. - Add Russian
  607. * Wed Sep 4 2001 Phil Knirsch <phil@redhat.de> 0.8.4-1
  608. - Fixed problem with unwanted removal of entries in /etc/modules.conf (#53042)
  609. * Mon Sep 3 2001 Than Ngo <than@redhat.com> 0.8.3-1
  610. - fix a bug in setting Authentication
  611. - fix some critical typo bugs
  612. * Fri Aug 31 2001 Than Ngo <than@redhat.com> 0.8.2-1
  613. - fix backtrace bug in CIPE
  614. - fix traceback bug if self.device.Dialup is None
  615. - if hardware is deleted, remove all devices used this hardware
  616. - de.po: fix bad translation
  617. * Fri Aug 31 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.8.1-1
  618. - Add support for Czech
  619. * Fri Aug 31 2001 Than Ngo <than@redhat.com>
  620. - fix #52920, #52922, #52914, #52916, #52917
  621. * Fri Aug 31 2001 Phil Knirsch <phil@redhat.de> 0.8.0-2
  622. - Fixed wrong option handling in /etc/modules.conf (#52853, #52923)
  623. - Fixed empty search entry in /etc/resolv.conf (#52926)
  624. - Fixed empty domain entry in /etc/resolv.conf (#52924)
  625. - Fixed ethernet hardware probing traceback (#52921)
  626. * Tue Aug 28 2001 Than Ngo <than@redhat.com> 0.8.0-1
  627. - fix some typo bugs
  628. * Tue Aug 28 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.10-1
  629. - minor fixes, including bootprotocol for CIPE (don't say it will use DHCP...)
  630. * Tue Aug 28 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.9-1
  631. - Not everything was marked for translation (#52650)
  632. * Tue Aug 28 2001 Than Ngo <than@redhat.com> 0.7.8-1
  633. - fix some typo bugs
  634. - fix wrong Modem entry (Bug #52601)
  635. * Mon Aug 27 2001 Than Ngo <than@redhat.com> 0.7.7-1
  636. - fix wrong type CBHUP
  637. * Mon Aug 27 2001 Phil Knirsch <phil@redhat.de> 0.7.6-2
  638. - Fixed use of /etc/sysconfig/network (#52359)
  639. * Fri Aug 24 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.6-1
  640. - Reordered tabs, added descriptions on each of the tabs
  641. * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com> 0.7.5-1
  642. - tokenring support
  643. * Thu Aug 23 2001 Phil Knirsch <phil@redhat.de> 0.7.4-2
  644. - Fixed recalculation of BROADCAST and NETWORK values if IP and netmask are
  645. present (#51462)
  646. * Mon Aug 20 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.4-1
  647. - More bugfixes, among them #51929, #51991, #51721, #51722,
  648. partial #52044, #51720.
  649. - Updated translations, include more languages
  650. * Thu Aug 16 2001 Phil Knirsch <phil@redhat.de> 0.7.3-2
  651. - Fixed major bug in device renaming (#50885)
  652. * Tue Aug 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.3-1
  653. - more bugfixes, more docs, GUI fixes
  654. * Fri Aug 10 2001 Than Ngo <than@redhat.com> 0.7.2-1
  655. - more bugfixes
  656. * Fri Aug 10 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.7.1-1
  657. - more bugfixes, more docs
  658. * Wed Aug 8 2001 Alexander Larsson <alexl@redhat.com> 0.7-2
  659. - Install desktop files in sysconfig instead of serverconf.
  660. * Wed Aug 8 2001 Phil Knirsch <phil@redhat.de> 0.7-1
  661. - Added a lot of documentation
  662. - Final changes to the Modem druid dialog and code to look just like the
  663. hardware add dialog for modems.
  664. * Wed Aug 8 2001 Phil Knirsch <phil@redhat.de> 0.6.8-3
  665. - Added the modem detection for the ModemDruid.
  666. - Added kudzu as requirement as it is needed for modem detection.
  667. - For compatibility still check for symlinks, too. Otherwise older setups will
  668. break.
  669. * Tue Aug 7 2001 Phil Knirsch <phil@redhat.de> 0.6.7-2
  670. - Fixed various important bugzilla bugs
  671. - Added and implemented the add Hardware dialog.
  672. - Added a working Apply button.
  673. - Switched to using hardlinks instead of symlinks for config files.
  674. * Tue Aug 7 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.6.7-1
  675. - Add online help capability (#50739)
  676. * Mon Aug 6 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.6.6-1
  677. - Disable profiles in GUI and as necesarry in code
  678. * Mon Aug 6 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.6.5-1
  679. - more bugfixes
  680. - add Conf.py from pythonlib, which has gone to the great bitbucket
  681. in the sky
  682. * Sun Aug 5 2001 Than Ngo <than@redhat.com>
  683. - fix bug 50740
  684. - wvdial.conf readonly for root
  685. * Fri Aug 3 2001 Than Ngo <than@redhat.com>
  686. - fix pap/chap Login name for T-online
  687. - fix InitStrings
  688. - use gettext function in NC_functions
  689. - fix loading DEFROUTE/PERSIST/DEMAND/IDLETIMEOUT for Modem dialup
  690. - don't backtrace if 'SetVolume' and 'Dial Command' are not defined
  691. * Thu Aug 02 2001 Phil Knirsch <phil@redhat.de> 0.6.1-2
  692. - Fixed buggous removal of ifcfg-lo (#50478)
  693. - Fixed problems with modem volume in hardware dialog
  694. - Fixed missing /dev/modem for modem setup (#50673)
  695. * Wed Aug 2 2001 Yukihiro Nakai <ynakai@redhat.com>
  696. - POTFILES.in list up fix
  697. - Add Japanese translation
  698. * Wed Aug 02 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.6.2-1
  699. - More bugfixes
  700. * Tue Jul 24 2001 Than Ngo <than@redhat.com> 0.6.1-1
  701. - Some more bugfixes...
  702. * Tue Jul 24 2001 Phil Knirsch <phil@redhat.de> 0.6-2
  703. - Some more bugfixes...
  704. * Tue Jul 24 2001 Phil Knirsch <phil@redhat.de> 0.6-1
  705. - Bumped version to 0.6
  706. * Tue Jul 24 2001 Than Ngo <than@redhat.com>
  707. - add Druid for dialup connection (ISDN/ADSL/Modem)
  708. * Thu Jul 19 2001 Trond Eivind Glomsrød <teg@redhat.com>
  709. - Obsolete netcfg - rp3 is next, when gnome-lokkit doesn't require
  710. it anymore
  711. - More fixes...
  712. * Tue Jul 17 2001 Trond Eivind Glomsrød <teg@redhat.com>
  713. - CIPE and wireless added
  714. * Mon Jul 16 2001 Trond Eivind Glomsrød <teg@redhat.com>
  715. - Add i18n
  716. - Many minor fixes...
  717. * Wed Jul 11 2001 Trond Eivind Glomsrød <teg@redhat.com>
  718. - Don't run autogen.sh
  719. - Mark files in /etc as configuration files
  720. - Multiple fixes to automake files
  721. - Add Norwegian translation to desktop files
  722. - install into the configuration tool desktop directory
  723. * Wed Jul 11 2001 Than Ngo <than@redhat.com> 0.3.1-1
  724. - obsolete isdn-config internet-config
  725. - requires consolehelper, alchemist
  726. - add icon and desktop file
  727. - use bzip2
  728. * Wed Jul 11 2001 Phil Knirsch <phil@redhat.de> 0.3.0-2
  729. - Fixed critical problem during profile saving.
  730. * Wed Jul 10 2001 Phil Knirsch <phil@redhat.de> 0.3.0-1
  731. - 0.3.0-1
  732. - Final touches for beta2. Most stuff should work now.
  733. * Thu Jul 10 2001 Phil Knirsch <phil@redhat.de> 0.2.2-2
  734. - Added some missing files.
  735. * Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com>
  736. - 0.2.2
  737. * Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com>
  738. - 0.2.1
  739. * Mon Jul 9 2001 Trond Eivind Glomsrød <teg@redhat.com>
  740. - 0.2
  741. - New name - system-config-network.
  742. Shortcut: neat (NEtwork Administration Tool)
  743. * Fri Jul 06 2001 Trond Eivind Glomsrød <teg@redhat.com>
  744. - Require a recent version of initscripts
  745. - Initial build. Don't obsolete older tools just yet...