dbus-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %define gettext_package dbus
  3. %define expat_version 2.0.1
  4. %define pyrex_version 0.9.9
  5. %define dbus_user_uid 81
  6. %define _localstatedir %{_var}
  7. Summary: D-BUS message bus
  8. Summary(ja): D-BUS メッセージバスシステム
  9. Name: dbus
  10. Version: 1.4.1
  11. Release: 1%{?_dist_release}
  12. URL: http://www.freedesktop.org/software/dbus/
  13. License: AFL/GPLv2
  14. Group: System Environment/Libraries
  15. Source0: %{name}-%{version}.tar.gz
  16. Source1: doxygen_to_devhelp.xsl
  17. # from fedora package
  18. Patch0: dbus-0.60-start-early.patch
  19. Patch1: dbus-1.0.1-generate-xml-docs.patch
  20. Patch6: dbus-1.2.1-increase-timeout.patch
  21. # Workaround for deny send_interface
  22. # http://bugs.freedesktop.org/show_bug.cgi?id=18961
  23. Patch10: dbus-1.2.12-workaround-deny-sendinterface.patch
  24. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  25. Requires(post): chkconfig >= 1.3.34
  26. Requires(preun): chkconfig >= 1.3.34
  27. Requires(pre): shadow-utils
  28. BuildRequires: libtool
  29. BuildRequires: expat-devel >= %{expat_version}
  30. BuildRequires: libxml2-devel
  31. BuildRequires: python-pyrex >= %{pyrex_version}
  32. BuildRequires: doxygen
  33. BuildRequires: xmlto
  34. BuildRequires: libxslt
  35. BuildRequires: gettext
  36. BuildRequires: libX11-devel
  37. BuildRequires: libcap
  38. BuildRequires: libSM-devel
  39. Requires: libxml2-python
  40. Vendor: Project Vine
  41. Distribution: Vine Linux
  42. %description
  43. D-BUS is a system for sending messages between applications. It is
  44. used both for the systemwide message bus service, and as a
  45. per-user-login-session messaging facility.
  46. %description -l ja
  47. D-BUS はアプリケーション間でメッセージを送受信するためのシステムです。
  48. システム全体のメッセージバスサービスとしても利用されますが、同様に
  49. ユーザ毎のログインセッションにおけるメッセージ基盤としても利用されます。
  50. %package devel
  51. Summary: Libraries and headers for D-BUS
  52. Summary(ja): D-BUS 用のライブラリとヘッダファイル
  53. Group: Development/Libraries
  54. Requires: %{name} = %{version}-%{release}
  55. Requires: glib2-devel
  56. %description devel
  57. Headers and static libraries for D-BUS.
  58. %package x11
  59. Summary: X11-requiring add-ons for D-BUS
  60. Summary(ja): X11 を利用する D-BUS 用ツール
  61. Group: Applications/System
  62. Requires: %{name} = %{version}-%{release}
  63. %description x11
  64. D-BUS contains some tools that require Xlib to be installed, those are
  65. in this separate package so server systems need not install X.
  66. # compat32
  67. %package -n compat32-%{name}
  68. Summary: D-BUS message bus
  69. Summary(ja): D-BUS メッセージバスシステム
  70. Group: System Environment/Libraries
  71. %description -n compat32-%{name}
  72. D-BUS is a system for sending messages between applications. It is
  73. used both for the systemwide message bus service, and as a
  74. per-user-login-session messaging facility.
  75. %description -n compat32-%{name} -l ja
  76. D-BUS はアプリケーション間でメッセージを送受信するためのシステムです。
  77. システム全体のメッセージバスサービスとしても利用されますが、同様に
  78. ユーザ毎のログインセッションにおけるメッセージ基盤としても利用されます。
  79. %package -n compat32-%{name}-devel
  80. Summary: Libraries and headers for D-BUS
  81. Summary(ja): D-BUS 用のライブラリとヘッダファイル
  82. Group: Development/Libraries
  83. Requires: compat32-%{name} = %{version}-%{release}
  84. Requires: %{name}-devel = %{version}-%{release}
  85. Requires: compat32-glib2-devel
  86. %description -n compat32-%{name}-devel
  87. Headers and static libraries for D-BUS.
  88. %prep
  89. %setup -q
  90. ## %patch0 -p1 -b .start-early
  91. %patch1 -p1 -b .generate-xml-docs
  92. %patch6 -p1 -b .increase-timeout
  93. %patch10 -p1 -b .workaround-dbus-sendinterface
  94. %build
  95. autoreconf -f -i
  96. COMMON_ARGS="--enable-selinux=no \
  97. --with-init-scripts=redhat \
  98. --with-system-pid-file=%{_localstatedir}/run/messagebus.pid \
  99. --with-dbus-user=dbus \
  100. --libdir=/%{_lib} --bindir=/bin \
  101. --libexecdir=/%{_lib}/dbus-1 \
  102. --sysconfdir=%{_sysconfdir} --exec-prefix=/"
  103. %configure $COMMON_ARGS --disable-tests --disable-verbose-mode --disable-asserts --enable-doxygen-docs --enable-xml-docs
  104. %__make
  105. doxygen Doxyfile
  106. xsltproc -o dbus.devhelp %{SOURCE1} doc/api/xml/index.xml
  107. %install
  108. rm -rf %{buildroot}
  109. %__make install DESTDIR=$RPM_BUILD_ROOT
  110. mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
  111. #change the arch-deps.h include directory to /usr/lib[64] instead of /lib[64]
  112. sed -e 's@-I${libdir}@-I${prefix}/%{_lib}@' $RPM_BUILD_ROOT/%{_lib}/pkgconfig/dbus-1.pc > $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/dbus-1.pc
  113. rm -f $RPM_BUILD_ROOT/%{_lib}/pkgconfig/dbus-1.pc
  114. mkdir -p $RPM_BUILD_ROOT/%{_bindir}
  115. mv -f $RPM_BUILD_ROOT/bin/dbus-launch $RPM_BUILD_ROOT/%{_bindir}
  116. mkdir -p $RPM_BUILD_ROOT/%{_libdir}/dbus-1.0/include/
  117. mv -f $RPM_BUILD_ROOT/%{_lib}/dbus-1.0/include/* $RPM_BUILD_ROOT/%{_libdir}/dbus-1.0/include/
  118. rm -rf $RPM_BUILD_ROOT/%{_lib}/dbus-1.0
  119. rm -f $RPM_BUILD_ROOT/%{_lib}/*.a
  120. rm -f $RPM_BUILD_ROOT/%{_lib}/*.la
  121. mkdir -p $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus
  122. mkdir -p $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus/api
  123. cp dbus.devhelp $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus
  124. cp doc/dbus-specification.html $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus
  125. cp doc/dbus-faq.html $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus
  126. cp doc/dbus-tutorial.html $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus
  127. cp doc/api/html/* $RPM_BUILD_ROOT%{_datadir}/devhelp/books/dbus/api
  128. ## %find_lang %{gettext_package}
  129. mkdir -p $RPM_BUILD_ROOT%{_datadir}/dbus-1/interfaces
  130. %clean
  131. rm -rf %{buildroot}
  132. %pre
  133. # Add the "dbus" user
  134. /usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} \
  135. -s /sbin/nologin -r -d '/' dbus 2> /dev/null || :
  136. %post
  137. /sbin/ldconfig
  138. /sbin/chkconfig --add messagebus
  139. /sbin/chkconfig messagebus resetpriorities
  140. %preun
  141. if [ $1 = 0 ]; then
  142. service messagebus stop > /dev/null 2>&1
  143. /sbin/chkconfig --del messagebus
  144. fi
  145. %postun
  146. /sbin/ldconfig
  147. %post -n compat32-%{name} -p /sbin/ldconfig
  148. %postun -n compat32-%{name} -p /sbin/ldconfig
  149. %files
  150. %defattr(-,root,root)
  151. %doc COPYING ChangeLog NEWS
  152. %dir %{_sysconfdir}/dbus-1
  153. %config %{_sysconfdir}/dbus-1/*.conf
  154. %{_sysconfdir}/rc.d/init.d/*
  155. %dir %{_sysconfdir}/dbus-1/system.d
  156. %dir %{_sysconfdir}/dbus-1/session.d
  157. %dir %{_localstatedir}/run/dbus
  158. %dir %{_localstatedir}/lib/dbus/
  159. /bin/dbus-daemon
  160. /bin/dbus-send
  161. /bin/dbus-cleanup-sockets
  162. /bin/dbus-monitor
  163. /bin/dbus-uuidgen
  164. /%{_lib}/*dbus-1*.so.*
  165. %{_datadir}/man/man*/dbus-cleanup-sockets.1.gz
  166. %{_datadir}/man/man*/dbus-daemon.1.gz
  167. %{_datadir}/man/man*/dbus-monitor.1.gz
  168. %{_datadir}/man/man*/dbus-send.1.gz
  169. %{_datadir}/man/man*/dbus-uuidgen.1.gz
  170. %dir %{_datadir}/dbus-1
  171. %{_datadir}/dbus-1/services
  172. %{_datadir}/dbus-1/system-services
  173. %{_datadir}/dbus-1/interfaces
  174. %dir /%{_lib}/dbus-1
  175. %attr(4750,root,dbus) /%{_lib}/dbus-1/dbus-daemon-launch-helper
  176. %files devel
  177. %defattr(-,root,root)
  178. /%{_lib}/lib*.so
  179. %{_libdir}/dbus-1.0/include
  180. %{_libdir}/pkgconfig/*
  181. %{_includedir}/*
  182. %{_datadir}/devhelp/books/dbus
  183. %files x11
  184. %defattr(-,root,root)
  185. %{_bindir}/dbus-launch
  186. %{_datadir}/man/man*/dbus-launch.1.gz
  187. # compat32
  188. %if %{build_compat32}
  189. %files -n compat32-%{name}
  190. /%{_lib}/*dbus-1*.so.*
  191. %files -n compat32-%{name}-devel
  192. %defattr(-,root,root)
  193. /%{_lib}/lib*.so
  194. %{_libdir}/dbus-1.0/include
  195. %{_libdir}/pkgconfig/*
  196. %endif
  197. %changelog
  198. * Sat Dec 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.1-1
  199. - new upstream release
  200. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
  201. - new upstream release
  202. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.2.24-3
  203. - add BuildRequires: libSM-devel
  204. * Tue Sep 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.24-2
  205. - rebuilt with rpm-4.8.1
  206. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.24-1
  207. - new upstream release
  208. - drop Patch0
  209. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.16-2
  210. - rebuilt with new toolchain
  211. * Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.16-1
  212. - new upstream release
  213. * Mon Jul 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.14-1
  214. - new upstream release
  215. - do not restart dbus on upgrade
  216. * Sun May 10 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.2.12-3
  217. - added compat32 package for x86_64 arch support
  218. * Fri Mar 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.12-2
  219. - add Patch10 for workaround deny send_interface
  220. http://bugs.freedesktop.org/show_bug.cgi?id=18961
  221. Bug 18961: Skip bare <deny send_interface=""/> for not (method_call|signal)
  222. Bare <deny send_interface=""/> rules have a far larger impact than one would think.
  223. It's really always wrong to use them without also using send_destination.
  224. - XXX: this should be fixed in each dbus configuration.
  225. * Tue Mar 17 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.12-1
  226. - new upstream release with security fix (CVE-2008-4311)
  227. * Fri Oct 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.4-1
  228. - new upstream release with security fix (CVE-2008-3834)
  229. * Fri Aug 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-1
  230. - new upstream release
  231. * Thu Aug 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-3
  232. - own the directories /usr/share/dbus-1/{system-services,interfaces}
  233. - set 'dbus' instead of '81' to --with-dbus-user
  234. * Sun Aug 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-2
  235. - import some patches from fedora
  236. - move dbus-daemon-launch-helper to /%%{_lib}/dbus-1/
  237. * Wed May 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.1-1
  238. - new upstream release
  239. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.20-1vl5
  240. - new upstream release
  241. * Wed Feb 20 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.0.2-0vl4
  242. - rebuild with expat-2.0.1
  243. * Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl3
  244. - rebuild with new environment/toolchain
  245. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl2
  246. - require new chkconfig to reset initscript priorities
  247. * Thu Apr 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
  248. - new upstream release
  249. - split out bindings
  250. - move base binaries and libraries to /bin and /%{_lib}
  251. * Wed Dec 27 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.62-0vl2
  252. - rebuilt for VineSeed
  253. * Thu Dec 21 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.62-0vl1.2
  254. - add Vendor/Distribution tag
  255. * Thu Dec 14 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.62-0vl1.1
  256. - add patch100 for fix CVE-2006-6107
  257. * Wed Nov 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.62-0vl1
  258. - new upstream release
  259. * Sun Jun 10 2006 NAKAMURA Kenta <kenta@vinelinux.org> 0.61-0vl2
  260. - disabled dbus-qt
  261. - added BuildConflicts: qt-devel
  262. - removed work around for 64 bit archs
  263. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.61-0vl1
  264. - new upstream release
  265. * Fri Jan 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.60-0vl1
  266. - new upstream release
  267. * Wed Oct 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.50-0vl1
  268. - new upstream release
  269. * Sun Jul 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.34-0vl1
  270. - new upstream release
  271. - enable python bindings
  272. * Sat Mar 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.23-4vl1
  273. - initial build for Vine Linux based on FC package
  274. - disable python bindings
  275. - disable selinux
  276. * Tue Feb 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-4
  277. - Explicitly pass in the pid file location to ./configure instead of
  278. letting it guess based on the build enviornment
  279. * Mon Jan 31 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-3
  280. - Add patch to fix random users from connecting to a users session bus
  281. * Fri Jan 21 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-2
  282. - Add Steve Grubb's SE-Linux audit patch (Bug# 144920)
  283. * Fri Jan 21 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-1
  284. - Update to upstream version 0.23
  285. - Drop all patches except for the UDI patch as they have been
  286. integrated upstream
  287. - List of API changes:
  288. * add setgroups() to drop supplementary groups
  289. * removed dbus_bug_get_with_g_main since it's been replaced by dbus_g_bus_get
  290. * added support for int64 and uint64 to the python bindings
  291. * use SerivceOwnerChanges signal instead of ServiceCreated and ServiceDeleted
  292. * Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 0.22-12
  293. - rebuild against python 2.4
  294. * Tue Nov 02 2004 John (J5) Palmieri <johnp@redhat.com>
  295. - Add a requires for glib2-devel in the devel package
  296. - Add SE-Linux backport from Colin Walters that fixes
  297. messages getting lost in SE-Linux contexts
  298. * Wed Oct 13 2004 John (J5) Palmieri <johnp@redhat.com>
  299. - Bump up release and rebuild
  300. * Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com>
  301. - Run /sbin/ldconfig for glib sub-package (bug #134062).
  302. * Wed Sep 22 2004 John (J5) Palmieri <johnp@redhat.com>
  303. - Fixed patch to use dbus-1 instead of dbus-1.0
  304. - (configure.in): Exported just the datadir instead of
  305. the full path to the dbus datadir for consistency
  306. * Wed Sep 22 2004 John (J5) Palmieri <johnp@redhat.com>
  307. - Adding patch to move /usr/lib/dbus-1.0/services to
  308. /usr/share/dbus-1.0/services
  309. * Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
  310. - reverting BuildRequires: redhat-release because of issues with build system
  311. - added precompiled version of the messagebus init script
  312. * Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
  313. - changed /etc/redhat-release to the package redhat-release
  314. * Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
  315. - added python int64 patch from davidz
  316. * Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
  317. - added BuildRequires: /etc/redhat-release (RH Bug #132436)
  318. * Wed Aug 18 2004 John (J5) Palmieri <johnp@redhat.com>
  319. - Added Steve Grubb's spec file patch (RH Bug #130201)
  320. * Mon Aug 16 2004 John (J5) Palmieri <johnp@redhat.com>
  321. - Disabled dbus-gtk since dbus-viewer doesn't do anything right now
  322. * Mon Aug 16 2004 John (J5) Palmieri <johnp@redhat.com>
  323. - Moved dbus-viewer to new dbus-gtk package so that dbus-glib
  324. no longer requires X or GTK libraries. (RH Bug #130029)
  325. * Thu Aug 12 2004 John (J5) Palmieri <johnp@redhat.com>
  326. - Update to new 0.22 release
  327. * Thu Aug 05 2004 John (J5) Palmieri <johnp@redhat.com>
  328. - Added BuildRequires for libselinux-devel and Requires for libselinux
  329. * Tue Aug 02 2004 Colin Walters <walters@redhat.com>
  330. - Add SE-DBus patch
  331. * Fri Jul 30 2004 John (J5) Palmieri <johnp@redhat.com>
  332. - Added lib64 workaround for python bindings installing to
  333. the wrong lib directory on 64 bit archs
  334. * Fri Jul 30 2004 John (J5) Palmieri <johnp@redhat.com>
  335. - Updated console-auth patch
  336. - rebuild
  337. * Thu Jul 22 2004 John (J5) Palmieri <johnp@redhat.com>
  338. - Update to upstream CVS build
  339. - Added console-auth patch
  340. * Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
  341. - Workaround added to fix gcc-3.4 bug on ia64
  342. * Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
  343. - require new Pyrex version and see if it builds this time
  344. * Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
  345. - rebuild with updated Pyrex (0.9.2.1)
  346. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  347. - rebuilt
  348. * Fri Jun 04 2004 John (J5) Palmieri <johnp@redhat.com>
  349. - Moved dbus-viewer, dbus-monitor and dbus-glib-tool
  350. into the dbus-glib package so that the main dbus
  351. package does not depend on glib (Bug #125285)
  352. * Thu Jun 03 2004 John (J5) Palmieri <johnp@redhat.com>
  353. - rebuilt
  354. * Thu May 27 2004 John (J5) Palmieri <johnp@redhat.com>
  355. - added my Python patch
  356. - took out the qt build requires
  357. - added a gtk+ build requires
  358. * Fri Apr 23 2004 John (J5) Palmieri <johnp@redhat.com>
  359. - Changed build requirement to version 0.9-3 of Pyrex
  360. to fix problem with builing on x86_64
  361. * Tue Apr 20 2004 John (J5) Palmieri <johnp@redhat.com>
  362. - update to upstream 0.21
  363. - removed dbus-0.20-varargs.patch patch (fixed upstream)
  364. * Mon Apr 19 2004 John (J5) Palmieri <johnp@redhat.com>
  365. - added a dbus-python package to generate python bindings
  366. - added Pyrex build dependacy
  367. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  368. - rebuilt
  369. * Wed Feb 25 2004 Bill Nottingham <notting@redhat.com> 0.20-4
  370. - fix dbus error functions on x86-64 (#116324)
  371. - add prereq (#112027)
  372. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  373. - rebuilt
  374. * Fri Feb 13 2004 Tim Waugh <twaugh@redhat.com>
  375. - Conflict with cups prior to configuration file change, so that the
  376. %%postun service condrestart works.
  377. * Wed Feb 11 2004 Havoc Pennington <hp@redhat.com> 0.20-2
  378. - rebuild in fc2, cups now updated
  379. * Wed Jan 7 2004 Bill Nottingham <notting@redhat.com> 0.20-1
  380. - update to upstream 0.20
  381. * Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-6
  382. - hmm, dbus doesn't support uids in the config file. fix.
  383. * Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-5
  384. - put uid instead of username in the config file, to keep things working with name change
  385. * Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-4
  386. - make subpackages require the specific release, not just version, of base package
  387. * Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-3
  388. - change system user "messagebus" -> "dbus" to be under 8 chars
  389. * Mon Sep 29 2003 Havoc Pennington <hp@redhat.com> 0.13-2
  390. - see if removing qt subpackage for now will get us through the build system,
  391. qt bindings not useful yet anyway
  392. * Sun Sep 28 2003 Havoc Pennington <hp@redhat.com> 0.13-1
  393. - 0.13 fixes a little security oops
  394. * Mon Aug 4 2003 Havoc Pennington <hp@redhat.com> 0.11.91-3
  395. - break the tiny dbus-launch that depends on X into separate package
  396. so a CUPS server doesn't need X installed
  397. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  398. - rebuilt
  399. * Sat May 17 2003 Havoc Pennington <hp@redhat.com> 0.11.91-1
  400. - 0.11.91 cvs snap properly merges system.d
  401. * Fri May 16 2003 Havoc Pennington <hp@redhat.com> 0.11.90-1
  402. - build a cvs snap with a few more fixes
  403. * Fri May 16 2003 Havoc Pennington <hp@redhat.com> 0.11-2
  404. - fix a crash that was breaking cups
  405. * Thu May 15 2003 Havoc Pennington <hp@redhat.com> 0.11-1
  406. - 0.11
  407. * Thu May 15 2003 Havoc Pennington <hp@redhat.com> 0.10.90-1
  408. - use rc.d/init.d not init.d, bug #90192
  409. - include the new man pages
  410. * Fri Apr 11 2003 Havoc Pennington <hp@redhat.com> 0.9-1
  411. - 0.9
  412. - export QTDIR explicitly
  413. - re-enable qt, the problem was most likely D-BUS configure
  414. * Tue Apr 1 2003 Havoc Pennington <hp@redhat.com> 0.6.94-1
  415. - update from CVS with a fix to set uid after gid
  416. * Tue Apr 1 2003 Havoc Pennington <hp@redhat.com> 0.6.93-1
  417. - new cvs snap that actually forks to background and changes
  418. user it's running as and so forth
  419. - create our system user in pre
  420. * Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.92-1
  421. - fix for "make check" test that required a home directory
  422. * Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.91-1
  423. - disable qt for now because beehive hates me
  424. - pull a slightly newer cvs snap that creates socket directory
  425. - cat the make check log after make check fails
  426. * Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.90-1
  427. - initial build