hal-vl.spec 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. %define expat_version 1.95.5
  2. %define glib2_version 2.20.0
  3. %define dbus_version 1.2
  4. %define dbus_glib_version 0.80
  5. %define dbus_python_version 0.80
  6. %define pygtk2_version 2.8.0
  7. %define gnome_python 2.14.0
  8. %define udev_version 145
  9. %define util_linux_ng_version 2.14
  10. %define gettext_version 0.14.5
  11. %define libusb_version 0.1.10a
  12. %define consolekit_version 0.3.0
  13. %define acl_version 2.2.39
  14. %define policykit_version 0.9
  15. %define pciutils_version 2.2.1
  16. %define dmidecode_version 2.7
  17. %define gperf_version 3.0.1
  18. # %define parted_version 1.8.8
  19. %define parted_version 3.0
  20. %define hal_user_uid 68
  21. %define _localstatedir %{_var}
  22. Summary: Hardware Abstraction Layer
  23. Summary(ja): ハードウエア抽象化レイヤ
  24. Name: hal
  25. Version: 0.5.14
  26. Release: 3%{?_dist_release}
  27. Group: System Environment/Libraries
  28. URL: http://www.freedesktop.org/Software/hal
  29. License: AFL/GPL
  30. Source0: %{name}-%{version}.tar.bz2
  31. Patch0: hal-0.5.14-videodev.patch
  32. Patch2: hal-0.5.11-change-priority.patch
  33. # https://bugzilla.redhat.com/show_bug.cgi?id=488177
  34. Patch4: hal-remove-dell-killswitch.patch
  35. # http://lists.freedesktop.org/archives/hal/2009-March/013125.html
  36. Patch9: hal-KVM-evdev.patch
  37. # http://bugs.freedesktop.org/show_bug.cgi?id=22442
  38. Patch11: hal-HDAPS-blacklist.patch
  39. Patch100: hal-use-at-console.patch
  40. Patch200: hal-0.5.13-disable-keyboard-hotplug.patch
  41. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  42. BuildRequires: expat-devel >= %{expat_version}
  43. BuildRequires: glib2-devel >= %{glib2_version}
  44. BuildRequires: dbus-devel >= %{dbus_version}
  45. BuildRequires: python-devel
  46. BuildRequires: hwdata
  47. BuildRequires: gettext >= %{gettext_version}
  48. %ifnarch s390 s390x
  49. BuildRequires: libusb-devel >= %{libusb_version}
  50. %endif
  51. BuildRequires: desktop-file-utils >= 0.9
  52. BuildRequires: dbus-glib-devel >= %{dbus_glib_version}
  53. BuildRequires: pciutils-devel >= %{pciutils_version}
  54. BuildRequires: zlib-devel
  55. BuildRequires: gperf >= %{gperf_version}
  56. BuildRequires: parted-devel >= %{parted_version}
  57. BuildRequires: e2fsprogs-devel
  58. BuildRequires: libblkid-devel
  59. BuildRequires: libuuid-devel
  60. Requires: dbus >= %{dbus_version}
  61. Requires: dbus-glib >= %{dbus_glib_version}
  62. Requires: glib2 >= %{glib2_version}
  63. Requires: udev >= %{udev_version}
  64. Requires: util-linux-ng >= %{util_linux_ng_version}
  65. %ifnarch s390 s390x
  66. Requires: libusb >= %{libusb_version}
  67. %endif
  68. Requires: ConsoleKit >= %{consolekit_version}
  69. Requires: acl >= %{acl_version}
  70. Requires: hal-info
  71. Requires(pre): shadow-utils
  72. Requires(post): chkconfig
  73. Requires(preun): chkconfig, initscripts
  74. Obsoletes: hal-gnome
  75. %description
  76. HAL is daemon for collection and maintaining information from several
  77. sources about the hardware on the system. It provdes a live device
  78. list through D-BUS.
  79. %package gnome
  80. Summary: GNOME based device manager for HAL
  81. Group: Applications/System
  82. Requires: %name = %{version}-%{release}
  83. Requires: dbus-python >= %{dbus_python_version}
  84. Requires: pygtk2 >= %{pygtk2_version}
  85. Requires: pygtk2-libglade >= %{pygtk2_version}
  86. Requires: gnome-python >= %{gnome_python}
  87. %description gnome
  88. GNOME program for displaying the devices detected by HAL
  89. %package devel
  90. Summary: Libraries and headers for HAL
  91. Group: Development/Libraries
  92. Requires: %{name} = %{version}-%{release}
  93. Requires: dbus-devel >= %{dbus_version}
  94. %description devel
  95. Headers, static libraries and API docs for HAL.
  96. %prep
  97. %setup -q -n %{name}-%{version}
  98. %patch0 -p1 -b .videodev
  99. %patch2 -p1 -b .priority
  100. %patch4 -p1 -b .dell-killswitch
  101. %patch9 -p1 -b .kvm-evdev
  102. %patch11 -p1 -b .hdaps-blacklist
  103. %patch100 -p1 -b .drop-polkit
  104. %patch200 -p1 -b .disable-keyboard-hotplug
  105. %build
  106. sed -i "s|glib/gmain.h|glib.h|g" hald/linux/addons/*.c
  107. autoreconf -f -i
  108. %configure \
  109. --with-os-type=redhat \
  110. --docdir=%{_docdir}/%{name}-%{version} \
  111. --with-udev-prefix=/etc \
  112. --disable-docbook-docs \
  113. --enable-pcmcia-support \
  114. --enable-umount-helper \
  115. --disable-console-kit \
  116. --disable-policy-kit \
  117. --disable-acpi-ibm \
  118. --disable-smbios \
  119. --enable-parted \
  120. --enable-acpi-toshiba \
  121. --without-usb-csr \
  122. --without-cpufreq \
  123. --with-eject=/usr/sbin/eject
  124. %__make %{?_smp_mflags}
  125. %install
  126. rm -rf %{buildroot}
  127. make install DESTDIR=$RPM_BUILD_ROOT
  128. rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
  129. %clean
  130. rm -rf $RPM_BUILD_ROOT
  131. %pre
  132. # Add the "haldaemon" user
  133. /usr/sbin/useradd -c 'HAL daemon' -u %{hal_user_uid} \
  134. -s /sbin/nologin -r -d '/' haldaemon 2> /dev/null || :
  135. %post
  136. /sbin/ldconfig
  137. /sbin/chkconfig --add haldaemon
  138. %preun
  139. if [ $1 = 0 ]; then
  140. service haldaemon stop > /dev/null 2>&1
  141. /sbin/chkconfig --del haldaemon
  142. fi
  143. %postun
  144. /sbin/ldconfig
  145. #if [ "$1" -ge "1" ]; then
  146. # service haldaemon condrestart > /dev/null 2>&1
  147. #fi
  148. %triggerpostun -- hal < 0.5.7
  149. #remove lingering fstab-sync entries from /etc/fstab
  150. /bin/cp -f /etc/fstab /etc/fstab.hal-save
  151. (IFS="
  152. "; while read line; do echo $line | awk '{print $4}' | grep -q managed || echo $line | grep -q "^#.*fstab-sync" || echo $line; done < /etc/fstab > fstab.replace)
  153. if [ -s fstab.replace ]; then
  154. /bin/cp -f fstab.replace /etc/fstab
  155. fi
  156. %triggerpostun -- hal < 0.5.11-3
  157. # reset priorities
  158. if [ -f /etc/rc3.d/S98haldaemon ]; then
  159. /sbin/chkconfig haldaemon resetpriorities
  160. fi
  161. %files
  162. %defattr(-,root,root,-)
  163. %doc AUTHORS COPYING ChangeLog HACKING INSTALL README NEWS
  164. #doc examples
  165. %dir %{_sysconfdir}/dbus-1/system.d
  166. %{_sysconfdir}/dbus-1/system.d/*
  167. %config %{_sysconfdir}/rc.d/init.d/haldaemon
  168. %dir %{_sysconfdir}/hal
  169. %{_sysconfdir}/hal/*
  170. /sbin/umount.hal
  171. %{_sbindir}/hald
  172. %{_bindir}/*
  173. %{_libexecdir}/*
  174. %{_libdir}/*hal*.so.*
  175. %dir %{_datadir}/hal
  176. %dir %{_datadir}/hal/fdi
  177. %{_datadir}/hal/fdi/*
  178. %{_mandir}/man1/*
  179. %{_mandir}/man8/*
  180. %{_sysconfdir}/udev/rules.d/90-hal.rules
  181. %attr(0700,haldaemon,haldaemon) %dir %{_localstatedir}/cache/hald
  182. %attr(0700,haldaemon,haldaemon) %dir %{_localstatedir}/run/hald
  183. %files devel
  184. %defattr(-,root,root)
  185. %{_libdir}/lib*.so
  186. %{_libdir}/pkgconfig/*
  187. %{_includedir}/*
  188. %{_datadir}/gtk-doc/html/*
  189. #%files gnome
  190. #%defattr(-,root,root)
  191. #%dir %{_datadir}/hal/device-manager
  192. #%{_datadir}/hal/device-manager/*
  193. #%{_bindir}/hal-device-manager
  194. #%{_datadir}/applications/*.desktop
  195. %changelog
  196. * Sun Jul 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.14-3
  197. - rebuild with parted-3.1
  198. * Thu Jan 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.14-2
  199. - rebuild with parted-3.0
  200. - add Patch0 (hal-0.5.14-videodev.patch)
  201. * Sat Dec 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.14-1
  202. - update to 0.5.14
  203. - delete Patch12 (hal-mdfind.patch)
  204. * Sat Dec 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.13-6
  205. - add BuildRequires: zlib-devel
  206. * Tue Nov 9 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.5.13-5
  207. - rebuilt with parted 2.3
  208. * Wed Sep 22 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.5.13-4
  209. - rebuilt with rpm-4.8.1 for pkg-config
  210. * Mon Feb 08 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5.13-3
  211. - add BuildRequires: libuuid-devel
  212. * Fri Feb 05 2010 Shu KONNO <owa@bg.wakwak.com> 0.5.13-2
  213. - rebuilt with python-2.6.4-3
  214. * Wed Oct 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.13-1
  215. - new upstream release
  216. - merge patches from fedora
  217. - disable ConsoleKit and PolicyKit support
  218. - disable acl management, this is now handled by udev
  219. - disable csr,ibm and cpufreq which is obsolete.
  220. * Sat Oct 03 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.12-2.rc1
  221. - add patch11 to disable acl for unpartitioned volumes (such as audio CDs)
  222. ([vine-users:079605])
  223. * Sat Jul 04 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.12-1.rc1
  224. - added BuildRequires: e2fsprogs-devel
  225. * Fri Mar 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.12-0.rc1
  226. - update to 0.5.12rc1
  227. - add patch5 to allow introspection and Device.KillSwitch access
  228. https://bugs.freedesktop.org/show_bug.cgi?id=18985
  229. * Wed Dec 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.11-6
  230. - rebuild with udev-135-1
  231. * Wed Oct 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.11-5
  232. - add 10-x11-input.fdi again
  233. - add patch10 to disable x11 keyaboard hotplugging
  234. * Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.11-4
  235. - rebuild with parted-1.8.8
  236. - add BuildRequires: util-linux-ng instead of util-linux
  237. * Mon Aug 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.11-3
  238. - rebuild with new ConsoleKit/PolicyKit
  239. - change start/stop priority earlier
  240. * Mon Jun 30 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.5.11-2
  241. - spec in UTF-8
  242. - Drop 99-redhat-storage-policy-fixed-drives.fdi; this is now
  243. controlled by PolicyKit
  244. - Remove /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi which
  245. effectively disables xorg input hotplugging again: this is only a
  246. temporary workaround until a better solution is available
  247. (see: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=447666)
  248. * Sat May 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.5.11-1
  249. - updated to 0.5.11
  250. - drop gnome subpackage - obsoleted in the upstream
  251. (but separated into gnome-desktop-manager)
  252. - drop use of find_lang - all translations dropped in the upstream
  253. * Sat Mar 08 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.9-0vl5
  254. - add Patch1001 to get proper LCD max brightness with pcc-acpi.
  255. * Wed Feb 20 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.5.9-0vl4
  256. - rebuild with expat-2.0.1
  257. - add BuildRequires: dbus-glib-devel >= %%{dbus_glib_version}
  258. - update %%{SOURCE2} (drop extension from Icon entry)
  259. * Thu Oct 11 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.9-0vl3
  260. - add Patch600 to fix severe memory leak on the system with apm
  261. initially discussed at:
  262. https://bugzilla.redhat.com/show_bug.cgi?id=244995
  263. then more comprehensive fixes posted at:
  264. http://lists.freedesktop.org/archives/hal/2007-September/009642.html
  265. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.9-0vl2
  266. - add Requires: hal-info
  267. * Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.9-0vl1
  268. - new upstream release
  269. - add Patch1000 to revert kernel-2.6.17 specific changes
  270. * Thu Apr 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7.1-0vl4
  271. - rebuild with dbus-1.0
  272. * Sat Nov 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.5.7.1-0vl3
  273. - changed hal-gnome Group to Applications/System
  274. * Wed Sep 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7.1-0vl2
  275. - add Patch10 to detecting usb optical drives
  276. (https://bugs.freedesktop.org/show_bug.cgi?id=5558)
  277. * Fri Jul 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7.1-0vl1
  278. - new upstream release
  279. - add Patch1 to fix confusing lid state. (<BTS:0091>)
  280. * Wed Mar 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7-0vl3
  281. - add Source1 for workaround policy file to ignore fixed
  282. (non-hotpluggable) disk from FC.
  283. * Mon Mar 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7-0vl2
  284. - do not restart haldaemon in %%postun script
  285. * Mon Mar 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.7-0vl1
  286. - new upstream release
  287. - disable fstab-sync, clear fstab-sync entries from fstab
  288. - import changes from FC
  289. * Mon Oct 17 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4-0vl2
  290. - remove Requires: gnome-python-* from hal-gnome
  291. gnome-python sub packages are obsoleted.
  292. * Wed Oct 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4-0vl1
  293. - new upstream release
  294. * Wed Jul 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.3-0vl1
  295. - new upstream release
  296. - add Requires: pygtk2-libglade for hal-gnome
  297. * Sun Jul 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.2-0vl1
  298. - new upstream release
  299. - import patches from FC
  300. * Sun Mar 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.7-2vl1
  301. - initiual build for Vine Linux based on FC package.
  302. * Thu Jan 27 2005 David Zeuthen <davidz@redhat.com> 0.4.7-2
  303. - Add patch that should close #146316
  304. * Mon Jan 24 2005 David Zeuthen <davidz@redhat.com> 0.4.7-1
  305. - New upstream release.
  306. - Should close #145921, #145750, #145293, #145256
  307. * Mon Jan 24 2005 John (J5) Palmieri <johnp@redhat.com> 0.4.6-3
  308. - Update required dbus version to 0.23
  309. * Thu Jan 20 2005 David Zeuthen <davidz@redhat.com> 0.4.6-2
  310. - Fix parameters to configure
  311. * Thu Jan 20 2005 David Zeuthen <davidz@redhat.com> 0.4.6-1
  312. - New upstream release
  313. - Should close #145099, #144600, #140150, #145223, #137672
  314. * Wed Jan 12 2005 David Zeuthen <davidz@redhat.com> 0.4.5-1
  315. - New upstream release.
  316. - Should close #142834, #141771, #142183
  317. * Fri Dec 12 2004 David Zeuthen <davidz@redhat.com> 0.4.2.cvs20041210-1
  318. - Snapshot from stable branch of upstream CVS
  319. * Tue Oct 26 2004 David Zeuthen <davidz@redhat.com> 0.4.0-8
  320. - Forgot to add some diffs in hal-0.4.0-pcmcia-net-support.patch
  321. * Tue Oct 26 2004 David Zeuthen <davidz@redhat.com> 0.4.0-7
  322. - Change default policy such that non-hotpluggable fixed disks are not
  323. added to the /etc/fstab file because a) ATARAID detection in hal is
  324. incomplete (e.g. RAID members from ATARAID controllers might be added
  325. to /etc/fstab); and b) default install wont corrupt multiboot
  326. systems on fixed drives (#137072)
  327. * Tue Oct 26 2004 David Zeuthen <davidz@redhat.com> 0.4.0-6
  328. - Fix hotplug timeout handling (#136626)
  329. - Detect ATARAID devices and do not add /etc/fstab entry for them
  330. - Probe for ext3 before ntfs (#136966)
  331. - Use fstype 'auto' for optical drives instead of 'iso9660,udf'
  332. - Properly detect wireless ethernet devices (#136591)
  333. - Support 16-bit PCMCIA networking devices (by Dan Williams) (#136658)
  334. * Tue Oct 19 2004 David Zeuthen <davidz@redhat.com> 0.4.0-5
  335. - Make hal work with PCMCIA IDE hotpluggable devices (#133943)
  336. - Fixup URL listed from rpm -qi (#136396)
  337. - Add Portuguese translations for hal
  338. - Fix addition of Russian and Hungarian translations
  339. * Mon Oct 18 2004 David Zeuthen <davidz@redhat.com> 0.4.0-4
  340. - Make hald cope with missing hotplug events from buggy drivers (#135202)
  341. - Fix the order of mount options in fstab-sync (#136191)
  342. - Allow x86 legacy floppy drives in default policy (#133777)
  343. - Fix fstab-sync crashing without any options and not run from hald (#136214)
  344. - man page for fstab-sync references non-existing files (#136026)
  345. - Add Russian translations for hal (#135853)
  346. - Add Hungarian translations for hal
  347. * Fri Oct 15 2004 David Zeuthen <davidz@redhat.com> 0.4.0-3
  348. - Fix bad use of O_NONBLOCK as the 2.6.8-1.624 kernel exposes this (#135886)
  349. - Never use the UUID as mount point candidate in the default policy
  350. as it is unfriendly (#135907)
  351. - Fix a trivial bug in fstab-sync so the syslog messages actually expose
  352. the device name instead of just the word foo
  353. * Thu Oct 14 2004 David Zeuthen <davidz@redhat.com> 0.4.0-2
  354. - Fix issue with fstab-sync not cleaning /etc/fstab on startup
  355. * Thu Oct 14 2004 David Zeuthen <davidz@redhat.com> 0.4.0-1
  356. - Update to upstream stable version 0.4.0
  357. - Remove patch for libhal shutdown since that is now upstream
  358. - fstab-sync: man page, adds comment in /etc/fstab pointing to man page
  359. * Fri Oct 01 2004 David Zeuthen <davidz@redhat.com> 0.2.98.cvs20040929-3
  360. - Fix a bug so libhal actually invoke callback functions when needed
  361. * Fri Oct 01 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.98.cvs20040929-2
  362. - Use "user" mount flag for now until "pamconsole" flag gets into mount
  363. * Wed Sep 29 2004 David Zeuthen <davidz@redhat.com> 0.2.98.cvs20040929-1
  364. - Update to upstream CVS version
  365. - Enable libselinux again
  366. * Mon Sep 27 2004 David Zeuthen <davidz@redhat.com> 0.2.98.cvs20040927-1
  367. - Update to upstream CVS version
  368. * Fri Sep 24 2004 David Zeuthen <davidz@redhat.com> 0.2.98.cvs20040923-1
  369. - Update to upstream CVS release
  370. - Include libhal-storage library
  371. - Should close bug #132876
  372. * Mon Sep 20 2004 David Zeuthen <davidz@redhat.com> 0.2.98-4
  373. - Rebuilt
  374. * Mon Sep 20 2004 David Zeuthen <davidz@redhat.com> 0.2.98-3
  375. - Rebuilt
  376. * Mon Sep 20 2004 David Zeuthen <davidz@redhat.com> 0.2.98-2
  377. - Temporarily disable explicit requirement for libselinux
  378. * Mon Sep 20 2004 David Zeuthen <davidz@redhat.com> 0.2.98-1
  379. - Update to upstream release 0.2.98.
  380. - Use --with-pid-file so we don't depend on /etc/redhat-release
  381. * Wed Sep 01 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040901-1
  382. - Update to upstream CVS HEAD
  383. * Tue Aug 31 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040831-3
  384. - Add UID for haldaemon user
  385. * Tue Aug 31 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040831-2
  386. - Rebuilt with a newer snapshot.
  387. * Fri Aug 27 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040827-3
  388. - Rebuilt
  389. * Fri Aug 27 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040827-2
  390. - Rebuilt
  391. - Closes RH Bug #130971
  392. * Fri Aug 27 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040827-1
  393. - Update to upstream CVS HEAD.
  394. - Should close RH Bug #130588
  395. * Wed Aug 25 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040823-3
  396. - Rebuilt
  397. * Wed Aug 25 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040823-2
  398. - Apply a patch so hald doesn't hang on startup.
  399. * Mon Aug 23 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040823-1
  400. - Update to upstream CVS HEAD
  401. - Remove symlinking of fstab-sync from specfile since this is now being
  402. done in the package
  403. * Mon Aug 23 2004 Florian La Roche <Florian.LaRoche@redhat.de>
  404. - change the %%define names to not use "-"
  405. * Thu Aug 19 2004 David Zeuthen <davidz@redhat.com> 0.2.97.cvs20040819-1
  406. - Update to upstream CVS HEAD
  407. - Remove suid patch as it is fixed upstream
  408. - Fix some dependency issues (RH Bug #130202)
  409. * Wed Aug 18 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.97-2
  410. - Add stopgap patch to remove suid from mount flags (RH Bug #130290)
  411. * Mon Aug 16 2004 David Zeuthen <davidz@redhat.com> 0.2.97-1
  412. - update to upstream release 0.2.97
  413. - use kudzu option in fstab-sync since updfstab is now disabled
  414. * Thu Aug 12 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.96-2
  415. - fixed Requires lines to use %{} instead of ${}
  416. - made dbus related requires lines use the = condition instead of =<
  417. because the dbus API is still in flux
  418. * Thu Aug 12 2004 David Zeuthen <davidz@redhat.com> 0.2.96
  419. - Update to upstream release 0.2.96
  420. - Symlink fstab-sync into /etc/hal/device.d on install
  421. * Fri Aug 06 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.95.cvs20040802-2
  422. - Base hal package no longer requires python
  423. * Mon Aug 02 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.95.cvs20040802-1
  424. - Update to CVS head
  425. - Remove Dan's patches as they were commited to CVS
  426. * Fri Jul 30 2004 Dan Williams <dcbw@redhat.com> 0.2.93.cvs.20040712-2
  427. - Fix netlink sockets pointer arithmetic bug
  428. * Mon Jul 12 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.93.cvs.20040712-1
  429. - Update to new CVS version as of 7-12-2004
  430. * Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.92.cvs.20040611-2
  431. - take out fstab-update.sh from install
  432. - add to rawhide
  433. * Fri Jun 11 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.92.cvs.20040611-1
  434. - update to CVS head as of 6-11-2004 which contains dcbw's
  435. network link status fix
  436. * Wed Jun 9 2004 Ray Strode <rstrode@redhat.com> 0.2.91.cvs20040527-2
  437. - added dependency on udev
  438. * Wed May 12 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.91.cvs20040527-1
  439. - update to CVS head as of 5-27-2004 which contains fixes for PCMCIA
  440. and wireless network devices.
  441. * Wed May 12 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.90.cvs20040511-3
  442. - added hal-0.2.90.cvs20040511.callbackscripts.patch which installs
  443. the file system mounting script in /etc/hal/device.d
  444. * Wed May 12 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.90.cvs20040511-2
  445. - added the %{_sysconfigdir}/hal directory tree to %files
  446. * Tue May 11 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.90.cvs20040511-1
  447. - update to CVS head as of 5-11-2004
  448. * Wed May 5 2004 Christopher Blizzard <blizzard@redhat.com> 0.2.90-2
  449. - Install hal.dev from /etc/dev.d/default/
  450. * Mon Apr 19 2004 John (J5) Palmieri <johnp@redhat.com> 0.2.90-1
  451. - upstream update
  452. * Mon Apr 19 2004 John (J5) Palmieri <johnp@redhat.com> 0.2-1
  453. - initial checkin to package repository
  454. - added dependency to the dbus-python package
  455. - added %{_libexecdir}/hal.dev to teh %files section