system-config-network-vl.spec 32 KB

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