source: projects/specs/branches/6/d/dbus/dbus-vl.spec @ 9353

Revision 9353, 20.0 KB checked in by iwamoto, 9 years ago (diff)

dbus: CVE-2014-3477, CVE-2014-3532, CVE-2014-3533, CVE-2014-3635, CVE-2014-3636, CVE-2014-3637, CVE-2014-3638, CVE-2014-3639, CVE-2015-0245

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