cvsdist 5d01674
%define gettext_package dbus
cvsdist 5d01674
cvsdist 5d01674
%define expat_version           1.95.5
43c4e7b
%define libselinux_version      1.15.2
cvsdist 5d01674
cvsdist 5d01674
%define dbus_user_uid           81
c509d0b
%define _default_patch_fuzz     999
cvsdist 5d01674
cvsdist 5d01674
Summary: D-BUS message bus
cvsdist 5d01674
Name: dbus
b9c93a6
Epoch: 1
7454fca
Version: 1.3.1
ad3a438
Release: 1%{?dist}
cvsdist 5d01674
URL: http://www.freedesktop.org/software/dbus/
dda2b6b
#VCS: git:git://git.freedesktop.org/git/dbus/dbus#dbus-1.2
3887781
Source0: http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.gz
2c2a056
Source1: doxygen_to_devhelp.xsl
9210d83
Source2: 00-start-message-bus.sh
d3ac69a
License: GPLv2+ or AFL
cvsdist 5d01674
Group: System Environment/Libraries
c509d0b
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
930b5a0
930b5a0
BuildRequires: libtool
cvsdist 5d01674
BuildRequires: expat-devel >= %{expat_version}
cvsdist 9130018
BuildRequires: libselinux-devel >= %{libselinux_version}
5d22cad
BuildRequires: audit-libs-devel >= 0.9
9539db4
BuildRequires: libX11-devel
c509d0b
BuildRequires: libcap-ng-devel
bfef33f
BuildRequires: gettext
2c2a056
BuildRequires: doxygen
2c2a056
BuildRequires: xmlto
2c2a056
BuildRequires: libxslt
930b5a0
930b5a0
Requires: chkconfig >= 1.3.26
cvsdist 9130018
Requires: libselinux >= %{libselinux_version}
b9c93a6
Requires: dbus-libs = %{epoch}:%{version}-%{release}
930b5a0
Requires(pre): /usr/sbin/useradd
cvsdist 528806e
930b5a0
# Conflict with cups prior to configuration file change, so that the
930b5a0
# %postun service condrestart works.
cvsdist 01314ee
Conflicts: cups < 1:1.1.20-4
cvsdist 5d01674
ad3a438
# FIXME this should be upstreamed; need --daemon-bindir=/bin and --bindir=/usr/bin or something?
ad3a438
Patch0: bindir.patch
ad3a438
# Not sure about this one
44afd46
Patch1: dbus-1.0.1-generate-xml-docs.patch
a3bd691
cvsdist 5d01674
%description
cvsdist 5d01674
D-BUS is a system for sending messages between applications. It is
c619ae6
used both for the system-wide message bus service, and as a
cvsdist 5d01674
per-user-login-session messaging facility.
cvsdist 5d01674
d3ac69a
%package libs
d3ac69a
Summary: Libraries for accessing D-BUS
d3ac69a
Group: Development/Libraries
4151a5e
Obsoletes: dbus < 1.1.2-3
4151a5e
d3ac69a
%description libs
c619ae6
This package contains lowlevel libraries for accessing D-BUS.
d3ac69a
3a70fb5
%package doc
3a70fb5
Summary: Developer documentation for D-BUS
3a70fb5
Group: Documentation
b9c93a6
Requires: %name = %{epoch}:%{version}-%{release}
3a70fb5
Requires: devhelp
fe4bcd1
BuildArch: noarch
3a70fb5
1b78249
%description doc
c619ae6
This package contains developer documentation for D-Bus along with
c619ae6
other supporting documentation such as the introspect dtd file.
3a70fb5
cvsdist 5d01674
%package devel
c619ae6
Summary: Development files for D-BUS
cvsdist 5d01674
Group: Development/Libraries
b9c93a6
Requires: %name = %{epoch}:%{version}-%{release}
6aadbaf
Requires: pkgconfig
cvsdist 5d01674
cvsdist 5d01674
%description devel
c619ae6
This package contains libraries and header files needed for
c619ae6
developing software that uses D-BUS.
cvsdist 5d01674
cvsdist 5d01674
%package x11
cvsdist 5d01674
Summary: X11-requiring add-ons for D-BUS
cvsdist 5d01674
Group: Development/Libraries
b9c93a6
Requires: %name = %{epoch}:%{version}-%{release}
cvsdist 5d01674
cvsdist 5d01674
%description x11
cvsdist 5d01674
D-BUS contains some tools that require Xlib to be installed, those are
cvsdist 5d01674
in this separate package so server systems need not install X.
cvsdist 5d01674
cvsdist 5d01674
%prep
cvsdist 5d01674
%setup -q
cvsdist 5d01674
930b5a0
# For some reason upstream ships these files as executable
930b5a0
# Make sure they are not
930b5a0
/bin/chmod 0644 COPYING ChangeLog NEWS
930b5a0
ad3a438
%patch0 -p1 -b .bindir
44afd46
%patch1 -p1 -b .generate-xml-docs
David Zeuthen 3f90a7a
33260f2
autoreconf -f -i
33260f2
cvsdist 5d01674
%build
David Zeuthen 73fe28f
COMMON_ARGS="--enable-libaudit --enable-selinux=yes --with-init-scripts=redhat --with-system-pid-file=%{_localstatedir}/run/messagebus.pid --with-dbus-user=dbus --libdir=/%{_lib} --bindir=/bin --sysconfdir=/etc --exec-prefix=/ --libexecdir=/%{_lib}/dbus-1"
cvsdist 5d01674
bc03ab2
# leave verbose mode so people can debug their apps but make sure to
bc03ab2
# turn it off on stable releases with --disable-verbose-mode
2c2a056
%configure $COMMON_ARGS --disable-tests --disable-asserts --enable-doxygen-docs --enable-xml-docs
35fbd21
make
cvsdist 5d01674
2c2a056
doxygen Doxyfile
2c2a056
2c2a056
xsltproc -o dbus.devhelp %{SOURCE1} doc/api/xml/index.xml
2c2a056
cvsdist 5d01674
%install
cvsdist 5d01674
rm -rf %{buildroot}
cvsdist 5d01674
930b5a0
make install DESTDIR=%{buildroot}
ebd8418
930b5a0
mkdir -p %{buildroot}/%{_libdir}/pkgconfig
de56cc2
de56cc2
#change the arch-deps.h include directory to /usr/lib[64] instead of /lib[64]
930b5a0
sed -e 's@-I${libdir}@-I${prefix}/%{_lib}@' %{buildroot}/%{_lib}/pkgconfig/dbus-1.pc > %{buildroot}/%{_libdir}/pkgconfig/dbus-1.pc
930b5a0
rm -f %{buildroot}/%{_lib}/pkgconfig/dbus-1.pc
5a119b4
930b5a0
mkdir -p %{buildroot}/%{_bindir}
930b5a0
mv -f %{buildroot}/bin/dbus-launch %{buildroot}/%{_bindir}
930b5a0
mkdir -p %{buildroot}/%{_libdir}/dbus-1.0/include/
930b5a0
mv -f %{buildroot}/%{_lib}/dbus-1.0/include/* %{buildroot}/%{_libdir}/dbus-1.0/include/
930b5a0
rm -rf %{buildroot}/%{_lib}/dbus-1.0
5a119b4
930b5a0
rm -f %{buildroot}/%{_lib}/*.a
930b5a0
rm -f %{buildroot}/%{_lib}/*.la
ebd8418
ad3a438
# FIXME put all this goo upstream in make install
930b5a0
mkdir -p %{buildroot}%{_datadir}/devhelp/books/dbus
930b5a0
mkdir -p %{buildroot}%{_datadir}/devhelp/books/dbus/api
2c2a056
930b5a0
cp dbus.devhelp %{buildroot}%{_datadir}/devhelp/books/dbus
930b5a0
cp doc/dbus-specification.html %{buildroot}%{_datadir}/devhelp/books/dbus
930b5a0
cp doc/dbus-faq.html %{buildroot}%{_datadir}/devhelp/books/dbus
930b5a0
cp doc/dbus-tutorial.html %{buildroot}%{_datadir}/devhelp/books/dbus
930b5a0
cp doc/api/html/* %{buildroot}%{_datadir}/devhelp/books/dbus/api
ad3a438
cp doc/diagram.png %{buildroot}%{_datadir}/devhelp/books/dbus
ad3a438
cp doc/diagram.svg %{buildroot}%{_datadir}/devhelp/books/dbus
c509d0b
9210d83
install -D -m755 %{SOURCE2} %{buildroot}%{_sysconfdir}/X11/xinit/xinitrc.d/00-start-message-bus.sh
9210d83
05d1adf
mkdir -p %{buildroot}%{_datadir}/dbus-1/interfaces
05d1adf
cvsdist 5d01674
## %find_lang %{gettext_package}
cvsdist 5d01674
cvsdist 5d01674
%clean
cvsdist 5d01674
rm -rf %{buildroot}
cvsdist 5d01674
cvsdist 5d01674
%pre
b2edb76
# Add the "dbus" user and group
b2edb76
/usr/sbin/groupadd -r -g %{dbus_user_uid} dbus 2>/dev/null || :
8f97259
/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} -g %{dbus_user_uid} \
cvsdist 5d01674
	-s /sbin/nologin -r -d '/' dbus 2> /dev/null || :
cvsdist 5d01674
d3ac69a
%post libs -p /sbin/ldconfig
d3ac69a
cvsdist 5d01674
%post
1b78249
/sbin/chkconfig --add messagebus
cc89c66
/sbin/chkconfig messagebus resetpriorities
cvsdist 5d01674
cvsdist 5d01674
%preun
cvsdist 5d01674
if [ $1 = 0 ]; then
930b5a0
    /sbin/service messagebus stop
cvsdist 5d01674
    /sbin/chkconfig --del messagebus
cvsdist 5d01674
fi
cvsdist 5d01674
d3ac69a
%postun libs -p /sbin/ldconfig
cvsdist 5d01674
41836fe
cvsdist 5d01674
%files
cvsdist 5d01674
%defattr(-,root,root)
cvsdist 5d01674
344df7d
%doc COPYING
cvsdist 5d01674
63e8e7f
%dir %{_sysconfdir}/dbus-1
David Zeuthen 8f2b8c5
%config %{_sysconfdir}/dbus-1/*.conf
930b5a0
%{_sysconfdir}/rc.d/init.d/*
cvsdist 5d01674
%dir %{_sysconfdir}/dbus-1/system.d
c69d0da
%dir %{_sysconfdir}/dbus-1/session.d
cvsdist 5d01674
%dir %{_localstatedir}/run/dbus
deb820f
%dir %{_localstatedir}/lib/dbus/
ebd8418
/bin/dbus-daemon
ebd8418
/bin/dbus-send
ebd8418
/bin/dbus-cleanup-sockets
5a119b4
/bin/dbus-monitor
9c89524
/bin/dbus-uuidgen
930b5a0
%{_mandir}/man*/dbus-cleanup-sockets.1.gz
930b5a0
%{_mandir}/man*/dbus-daemon.1.gz
930b5a0
%{_mandir}/man*/dbus-monitor.1.gz
930b5a0
%{_mandir}/man*/dbus-send.1.gz
930b5a0
%{_mandir}/man*/dbus-uuidgen.1.gz
07eda45
%dir %{_datadir}/dbus-1
ead51ab
%{_datadir}/dbus-1/services
David Zeuthen 73fe28f
%{_datadir}/dbus-1/system-services
05d1adf
%{_datadir}/dbus-1/interfaces
David Zeuthen 73fe28f
%dir /%{_lib}/dbus-1
David Zeuthen 73fe28f
# See doc/system-activation.txt in source tarball for the rationale
David Zeuthen 73fe28f
# behind these permissions
David Zeuthen 73fe28f
%attr(4750,root,dbus) /%{_lib}/dbus-1/dbus-daemon-launch-helper
cvsdist 5d01674
d3ac69a
d3ac69a
%files libs
d3ac69a
%defattr(-,root,root,-)
d3ac69a
/%{_lib}/*dbus-1*.so.*
d3ac69a
cvsdist 5d01674
%files x11
cvsdist 5d01674
%defattr(-,root,root)
cvsdist 5d01674
cvsdist 5d01674
%{_bindir}/dbus-launch
e55ce47
%{_datadir}/man/man*/dbus-launch.1.gz
9210d83
%{_sysconfdir}/X11/xinit/xinitrc.d/00-start-message-bus.sh
cvsdist 5d01674
3a70fb5
%files doc
3a70fb5
%defattr(-,root,root)
3a70fb5
%doc doc/introspect.dtd doc/introspect.xsl doc/system-activation.txt
d5738ed
%doc %{_datadir}/devhelp/books/dbus
3a70fb5
5a119b4
%files devel
cvsdist 528806e
%defattr(-,root,root)
cvsdist 528806e
5a119b4
/%{_lib}/lib*.so
07eda45
%dir %{_libdir}/dbus-1.0
abb7a58
%{_libdir}/dbus-1.0/include/
5a119b4
%{_libdir}/pkgconfig/dbus-1.pc
5a119b4
%{_includedir}/*
f14594b
cvsdist 5d01674
%changelog
7454fca
* Wed Jun 23 2010 Lennart Poettering <lpoetter@redhat.com> - 1:1.3.1-1
7454fca
- New upstream release
7454fca
6dc9d0a
* Wed Mar 24 2010 Colin Walters <walters@verbum.org> - 1:1.2.24-1
6dc9d0a
- New upstream release
6dc9d0a
- Drop upstreamed patch
6dc9d0a
6dc9d0a
* Mon Mar 22 2010 Colin Walters <walters@verbum.org> - 1:1.2.22-2
6dc9d0a
- Add patch to fix syslog crasher
6dc9d0a
5d8d095
* Wed Mar 17 2010 Colin Walters <walters@verbum.org> - 1:1.2.22-1
5d8d095
- New upstream release
5d8d095
3e4c7fd
* Wed Feb 03 2010 Colin Walters <walters@verbum.org> - 1:1.2.20-1
3e4c7fd
- New upstream release
3e4c7fd
- Actually add start-early.patch
3e4c7fd
ad3a438
* Tue Feb 02 2010 Colin Walters <walters@verbum.org> - 1:1.2.18-1
ad3a438
- New upstream release
ad3a438
  Drop all upstreamed patches.
ad3a438
- start-early.patch had both bindir changes and start-early; the
ad3a438
  latter was upstreamed, so start-early is now bindir.patch.
ad3a438
  Ideally later get this partial-bindir stuff upstream.
ad3a438
63adc9f
* Thu Jan 21 2010 Colin Walters <walters@verbum.org> - 1:1.2.16-11
63adc9f
- Drop dbus-libs requiring dbus; this was unnecessary for programs
63adc9f
  which happened to speak the dbus protocol but don't require
63adc9f
  the daemon.
63adc9f
  Note that libdbus does support autolaunching dbus-daemon in
63adc9f
  the session as an emergency fallback for legacy situations; however,
63adc9f
  these cases were likely to have dbus installed already (via comps).
63adc9f
  If they don't, well one turned to the wrong page in the choose your
63adc9f
  own adventure book.
63adc9f
  
c509d0b
* Tue Jan 12 2010 Matthias Clasen <mclasen@redhat.com> - 1:1.2.16-10
c509d0b
- Don't link libdub against libcap-ng
c509d0b
c509d0b
* Fri Dec 18 2009 Ray Strode <rstrode@redhat.com> - 1:1.2.16-9
c509d0b
- Fix activation of daemons (#545267)
c509d0b
- Fix reload memleak (fdo #24697)
c509d0b
- Don't forget about pending activations on reload (fdo #24350)
c509d0b
- Fix reload race (fdo #21597)
c509d0b
c509d0b
* Wed Oct  7 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.16-8
c509d0b
- Drop capabilities (#518541)
c509d0b
c509d0b
* Wed Oct  7 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.16-7
c509d0b
- Add missing diagrams to the docs (#527650)
c509d0b
c509d0b
* Thu Oct  1 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.16-6
c509d0b
- Fix timeout accounting
c509d0b
e0b714c
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1:1.2.16-5
e0b714c
- rebuilt with new audit
e0b714c
89056fd
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.2.16-4
89056fd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
89056fd
8f97259
* Thu Jul 23 2009 Colin Walters <walters@redhat.co> - 1:1.2.16-3
8f97259
- Remove conflicting -U option to useradd
8f97259
b2edb76
* Wed Jul 22 2009 Colin Walters <walters@redhat.com> - 1:1.2.16-2
b2edb76
- Explicitly add a dbus group id, fixes dbus files getting a
b2edb76
  random group id in cases where the RPM install order varies.
b2edb76
  Fixes https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=458183
b2edb76
249d820
* Tue Jul 14 2009 Colin Walters <walters@redhat.com> - 1:1.2.16-1
249d820
- Upstream 1.2.16
249d820
- Remove inotify patch, now upstreamed
249d820
- Remove timeout patch, obsolete with upstream change to infinite
249d820
  timeout maximum by default
249d820
1b78249
* Sat Jun 27 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.14-2
1b78249
- Don't leak inotify fd (#505338)
1b78249
0a34610
* Wed Apr 22 2009 Colin Walters <walters@verbum.org> - 1:1.2.14-1
0a34610
- CVE-2009-1189
0a34610
  * Update to 1.2.14
0a34610
f55d2e3
* Thu Mar 12 2009 Colin Walters <walters@verbum.org> - 1:1.2.12-1
f55d2e3
- Switch to non-permissive branch:
f55d2e3
  http://fedoraproject.org/wiki/Features/DBusPolicy
f55d2e3
d5738ed
* Fri Feb 27 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.4.4permissive-4
d5738ed
- Mark -doc content as %%doc
d5738ed
fe4bcd1
* Tue Feb 24 2009 Matthias Clasen <mclasen@redhat.com> - 1:1.2.4.4permissive-2
fe4bcd1
- Make -doc noarch
fe4bcd1
374a13d
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.2.4.4permissive-2
374a13d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
374a13d
03ccf20
* Tue Jan 06 2009 Colin Walters <walters@redhat.com> - 1:1.2.4.4.permissive-1
03ccf20
- New upstream
03ccf20
4bd6e42
* Thu Dec 18 2008 Colin Walters <walters@redhat.com> - 1:1.2.4.2.permissive-1
4bd6e42
- New upstream
4bd6e42
1fbb846
* Fri Dec 12 2008 Colin Walters <walters@redhat.com> - 1:1.2.4-2
b9c93a6
- Revert to upstream 1.2.4, add epoch
b9c93a6
13381e7
* Thu Dec 11 2008 Colin Walters <walters@redhat.com> - 1.2.8-4
13381e7
- And drop it again, needs more work
13381e7
ab62747
* Wed Dec 10 2008 Colin Walters <walters@redhat.com> - 1.2.8-3
ab62747
- Add back working syslog patch
ab62747
69ee509
* Tue Dec 09 2008 Colin Walters <walters@redhat.com> - 1.2.8-2
69ee509
- Remove accidentally added syslog patch
69ee509
69ee509
* Tue Dec 09 2008 Colin Walters <walters@redhat.com> - 1.2.8-1
9566e36
- New upstream 1.2.8
9566e36
  Allows signals by default.
9566e36
14a455f
* Fri Dec 05 2008 Colin Walters <walters@redhat.com> - 1.2.6-1
14a455f
- New upstream 1.2.6
14a455f
c619ae6
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.2.4-2
c619ae6
- Tweak descriptions
c619ae6
8bde7f2
* Mon Oct 06 2008 Colin Walters <walters@redhat.com> - 1.2.4-1
8bde7f2
- New upstream 1.2.4
8bde7f2
David Zeuthen 8f2b8c5
* Thu Sep 25 2008 David Zeuthen <davidz@redhat.com> - 1.2.3-2%{?dist}
David Zeuthen 8f2b8c5
- Avoid using noreplace for files that aren't really config files
David Zeuthen 8f2b8c5
344df7d
* Wed Aug 06 2008 Colin Walters <walters@redhat.com> - 1.2.3-1
344df7d
- New upstream 1.2.2
344df7d
- Drop patches that were upstreamed
344df7d
05d1adf
* Wed Jul 23 2008 Matthias Clasen <mclasen@redhat.com> - 1.2.1-7
05d1adf
- Own /usr/share/dbus-1/interfaces
05d1adf
608bf09
* Fri Jul 18 2008 Matthias Clasen <mclasen@redhat.com> - 1.2.1-6
608bf09
- Add a patch from upstream git that adds a method
608bf09
  for changing the activation environment on the session bus
608bf09
29952bd
* Thu Jul 17 2008 Casey Dahlin <cdahlin@redhat.com> - 1.2.1-5
29952bd
- Patch to increase max method timeout
29952bd
9ea1ced
* Thu May 29 2008 Casey Dahlin <cdahlin@redhat.com> - 1.2.1-4
9ea1ced
- Patches for fd.o bugs 15635, 15571, 15588, 15570
9ea1ced
3b360ba
* Mon May 12 2008 Ray Strode <rstrode@redhat.com> - 1.2.1-3
3b360ba
- drop last patch after discussion on dbus list
3b360ba
41836fe
* Mon May 12 2008 Ray Strode <rstrode@redhat.com> - 1.2.1-2
41836fe
- ensure uuid is created at post time
41836fe
c82cab2
* Fri Apr 04 2008 John (J5) Palmieri <johnp@redhat.com> - 1.2.1-1
c82cab2
- update to latest upstream
c82cab2
- major version change is really a maint release for 1.1.20
c82cab2
  please read the NEWS file in the source for more information
c82cab2
David Zeuthen 0720e1c
* Wed Feb 27 2008 David Zeuthen <davidz@redhat.com> - 1.1.20-1%{?dist}
David Zeuthen 0720e1c
- Update to latest upstream release. Includes fix for CVE-2008-0595.
David Zeuthen 0720e1c
- Drop some patches that went upstream already
David Zeuthen 0720e1c
009c8d4
* Wed Feb 20 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.1.4-6
009c8d4
- Really rebuild against new libcap
009c8d4
Adam Tkac 68f010a
* Sun Feb 17 2008 Adam Tkac <atkac redhat com> - 1.1.4-5
Adam Tkac 68f010a
- rebuild against new libcap
Adam Tkac 68f010a
12b0d1e
* Tue Feb  5 2008 Matthias Clasen <mclasen@redhat.com> - 1.1.4-4
12b0d1e
- Fix a dbus-launch problem (#430412)
12b0d1e
9210d83
* Mon Feb  4 2008 Ray Strode <rstrode@redhat.com> - 1.1.4-3
9210d83
- Start message bus from xinitrc.d instead of hard coding it
9210d83
at the end of Xsession
9210d83
9276516
* Mon Feb  4 2008 Matthias Clasen <mclasen@redhat.com> - 1.1.4-2
9276516
- Make it build against the latest gcc/glibc
9276516
8cae494
* Thu Jan 17 2008 John (J5) Palmieri <johnp@redhat.com> - 1.1.4-1
8cae494
- new upstream version
8cae494
- fixes inotify patch which was consuming 100% cpu and memory
8cae494
8cae494
* Wed Jan 16 2008 John (J5) Palmieri <johnp@redhat.com> - 1.1.3-1
3a70fb5
- new upstream version which obsoletes a number of our patches
3a70fb5
- doc section added for the devhelp docs
3a70fb5
930b5a0
* Thu Nov 15 2007 John (J5) Palmieri <johnp@redhat.com> - 1.1.2-9
930b5a0
- clean up spec file as per the merge review (#225676)
930b5a0
4151a5e
* Thu Oct 25 2007 Bill Nottingham <notting@redhat.com> - 1.1.2-8
4151a5e
- have -libs obsolete older versions of the main package so that yum upgrades work
4151a5e
726498e
* Thu Oct  4 2007 Matthias Clasen <mclasen@redhat.com> - 1.1.2-7
726498e
- Make the daemon a PIE executable  (#210039)
726498e
57257cf
* Fri Sep 14 2007 Bill Nottingham <notting@redhat.com> - 1.1.2-6%{?dist}
57257cf
- fix daemon abort when SELinux denies passing on a message (#283231)
57257cf
4cd56dd
* Fri Sep 14 2007 Dan Walsh <dwalsh@redhat.com> - 1.1.2-5%{?dist}
4cd56dd
- Reverse we_were_root check to setpcap if we were root.  Also only init
4cd56dd
audit if we were root.  So error dbus message will not show up when policy 
4cd56dd
reload happens.  dbus -session will no longer try to send audit message, 
4cd56dd
only system will.
4cd56dd
David Zeuthen c876738
* Tue Aug 28 2007 David Zeuthen <davidz@redhat.com> - 1.1.2-4%{?dist}
David Zeuthen c876738
- Make dbus require dbus-libs (#261721)
David Zeuthen c876738
d3ac69a
* Mon Aug 27 2007 Adel Gadllah <adel.gadllah@gmail.com> - 1.1.2-3
d3ac69a
- Add libs to a libs subpackage
d3ac69a
- Update license tag
d3ac69a
David Zeuthen 73fe28f
* Wed Aug 01 2007 David Zeuthen <davidz@redhat.com> - 1.1.2-2%{?dist}
David Zeuthen 73fe28f
- Move system bus activation helper to /{lib,lib64}/dbus-1. Also set
David Zeuthen 73fe28f
  the correct mode and permissions. 
David Zeuthen 73fe28f
- Own the directory /usr/share/dbus-1/system-services
David Zeuthen 73fe28f
- Delete the diretory /{lib,lib64}/dbus-1.0 as it's not used
David Zeuthen 73fe28f
- Pass 'dbus' instead of 81 as --with-dbus-user; otherwise the setuid
David Zeuthen 73fe28f
  system bus activation helper fails
David Zeuthen 73fe28f
180a24a
* Sat Jul 28 2007 Matthias Clasen <mclasen@redhat.com> - 1.1.2-1
180a24a
- Update to 1.1.2
180a24a
93f940a
* Fri Jul  6 2007 Matthias Clasen <mclasen@redhat.com> - 1.1.1-3
93f940a
- Add LSB header to init script (#246902)
93f940a
c69d0da
* Thu Jun 28 2007 Ray Strode <rstrode@redhat.com> - 1.1.1-2
c69d0da
- include session.d directory in package manifest
c69d0da
44afd46
* Thu Jun 28 2007 Ray Strode <rstrode@redhat.com> - 1.1.1-1
44afd46
- Update to 1.1.1
44afd46
567223e
* Fri Jun 22 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-6
567223e
- Don't require libxml-python needlessly (#245300)
567223e
6aadbaf
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-5
6aadbaf
- Require pkgconfig in -devel, not in -x11 (#244385)
6aadbaf
e55ce47
* Sat Apr 14 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-4
e55ce47
- Move the dbus-launch man page to the x11 subpackage
e55ce47
David Zeuthen 846498c
* Thu Apr 12 2007 David Zeuthen <davidz@redhat.com> - 1.0.2-3
David Zeuthen 846498c
- Start SELinux thread after setuid call (#221168)
David Zeuthen 846498c
d22d766
* Wed Mar 28 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-2
d22d766
- Require pkgconfig in the -devel package
d22d766
07eda45
* Sun Mar 25 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-1
07eda45
- Update to 1.0.2
07eda45
- Drop obsolete patches
07eda45
- Fix directory ownership issues (#233753)
07eda45
David Zeuthen 3f90a7a
* Fri Dec 15 2006 David Zeuthen <davidz@redhat.com> - 1.0.1-3%{?dist}
David Zeuthen 3f90a7a
- CVE-2006-6107: D-Bus denial of service
David Zeuthen 3f90a7a
2c2a056
* Sun Nov 26 2006 Matthias Clasen <mclasen@redhat.com> - 1.0.1-2
2c2a056
- Include docs, and make them show up in devhelp
2c2a056
3887781
* Mon Nov 20 2006 Ray Strode <rstrode@redhat.com> - 1.0.1-1
3887781
- Update to 1.0.1
3887781
- Apply patch from Thiago Macieira <thiago@kde.org> to 
3887781
  fix failed assertion in threading implementation
3887781
- Drop some crazy looking build time speed optimization
3887781
db45387
* Tue Nov 14 2006 John (J5) Palmieri <johnp@redhat.com> - 1.0.0-2
b3eeb66
- add patch to fix dbus_threads_init_default
b3eeb66
db45387
* Mon Nov 13 2006 John (J5) Palmieri <johnp@redhat.com> - 1.0.0-1
bc03ab2
- update to D-Bus 1.0.0 "Blue Bird"
bc03ab2
- build with verbose mode on but tests and asserts off
bc03ab2
09368a8
* Sun Nov 12 2006 Ray Strode <rstrode@redhat.com> - 0.95-3
09368a8
- dont let dbus-launch session sitter crash in the
09368a8
  non-autolaunch code path (bug 214649)
09368a8
b357291
* Mon Nov 06 2006 John (J5) Palmieri <johnp@redhat.com> - 0.95-2
43c4e7b
- Add /var/lib/dbus directory to %%files
b357291
5909b70
* Fri Nov 03 2006 John (J5) Palmieri <johnp@redhat.com> - 0.95-1
5909b70
- Update to D-Bus 1.0 RC 3 (0.95)
5909b70
- don't build with tests on
5909b70
9c89524
* Sat Oct 14 2006 John (J5) Palmieri <johnp@redhat.com> - 0.94-1
9c89524
- Update to D-Bus 1.0 RC 2 (0.94)
9c89524
5713729
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 0.93-3
5713729
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
5713729
efedf07
* Tue Sep 19 2006 Matthias Clasen <mclasen@redhat.com> - 0.93-2
efedf07
- Add a Requires for libxml2-python (#201877)
efedf07
595fdfb
* Thu Sep 14 2006 John (J5) Palmieri <johnp@redhat.com> - 0.93-1
595fdfb
- Updated from upstream D-Bus 1.0 RC 1 (0.93)
595fdfb
9470763
* Wed Sep 6 2006 Dan Walsh <dwalsh@redhat.com> - 0.92-2
9470763
- Only audit on the system bus
9470763
71cc2d6
* Fri Aug 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.92-1
71cc2d6
- Update to 0.92 
71cc2d6
- remove old patches
71cc2d6
a9eff6d
* Thu Jul 22 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-8
a9eff6d
- add patch to fix timeout removal assertion
a9eff6d
9f75849
* Thu Jul 20 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-7
9f75849
- add patch to fix taking a connection ref when it is locked
9f75849
de56cc2
* Wed Jul 19 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-6
de56cc2
- change the arch-deps.h include directory to /usr/lib[64] instead of /lib[64]
de56cc2
  in the dbus-1.pc file after compile
de56cc2
abb7a58
* Wed Jul 19 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-5
abb7a58
- Move arch include file from lib to libdir
abb7a58
abb7a58
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-4
abb7a58
- add patch that pregenerates the xml introspect file so d-bus doesn't
abb7a58
  have to be running suring the build.
abb7a58
142e93b
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-3
43c4e7b
- s/--libdir=\/lib/--libdir=%%{_lib}/ in configure stage
43c4e7b
- add / before %%{_lib}
142e93b
ca3efea
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-2
ca3efea
- Remove some remnants of the GLIB bindings from configure.in
ca3efea
5a119b4
* Mon Jul 17 2006 John (J5) Palmieri <johnp@redhat.com> - 0.90-1
5a119b4
- Update to upstream 0.90
5a119b4
- Split out bindings
5a119b4
b73b94f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.62-1.1
b73b94f
- rebuild
b73b94f
0a17d89
* Mon Jun 12 2006 John (J5) Palmieri <johnp@redhat.com> - 0.62-1
0a17d89
- Update to upstream 0.62
b231663
- Remove mono for s390s
0a17d89
489dfda
* Tue Jun  6 2006 Matthias Clasen <mclasen@redhat.com> 0.61-6
489dfda
- Rebuild
489dfda
9539db4
* Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 0.61-5.2 
9539db4
- add buildrequires libICE-devel, libSM-devel, libcap-devel
9539db4
- change buildrequires form libX11 to libX11-devel
9539db4
f6edcd8
* Mon May 15 2006 John (J5) Palmieri <johnp@redhat.com> - 0.61-5.1
f6edcd8
- Bump and rebuild.  Add a BR and R for libX11
f6edcd8
4c2c3b4
* Tue Apr 25 2006 John (J5) Palmieri <johnp@redhat.com> - 0.61-5
dc03ec5
- Backport patch from dbus-connection.c
dc03ec5
  - Allows interfaces to be NULL in the message header as per the spec
dc03ec5
  - Fixes a problem with pendings calls blocking on a data starved socket
dc03ec5
abd219a
* Mon Apr 17 2006 John (J5) Palmieri <johnp@redhat.com> 0.61-4
abd219a
- New audit patch
abd219a
abd219a
* Fri Feb 24 2006 John (J5) Palmieri <johnp@redhat.com> 0.61-3
a3bd691
- ABI hasn't changed so add patch that makes dbus-sharp think
a3bd691
  it is still 0.60 (mono uses hard version names so any change
a3bd691
  means apps need to recompile)
a3bd691
a3bd691
* Fri Feb 24 2006 John (J5) Palmieri <johnp@redhat.com> 0.61-2
cc89c66
- Make sure chkconfig rests the priorities so we can start earlier
cc89c66
0d83b87
* Fri Feb 24 2006 John (J5) Palmieri <johnp@redhat.com> 0.61-1
0d83b87
- Upgrade to upstream version 0.61
0d83b87
- remove python callchain patch
0d83b87
- update avc patch
0d83b87
84f6272
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.60-7.2
84f6272
- bump again for double-long bug on ppc(64)
84f6272
959ce5e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.60-7.1
959ce5e
- rebuilt for new gcc4.1 snapshot and glibc changes
959ce5e
67f1ef7
* Mon Jan 23 2006 John (J5) Palmieri <johnp@redhat.com> 0.60-7
67f1ef7
- Add patch to fix the python callchain
67f1ef7
- Symlink dbus-send to /usr/bin because some applications
67f1ef7
  look for it there
67f1ef7
e7b706d
* Fri Jan 20 2006 John (J5) Palmieri <johnp@redhat.com> 0.60-6
e7b706d
- Fix up patch to init script so it refrences /bin not /usr/bin
e7b706d
ebd8418
* Fri Jan 20 2006 John (J5) Palmieri <johnp@redhat.com> 0.60-5
ebd8418
- move base libraries and binaries to /bin and /lib so they can be started
ebd8418
  before /usr is mounted on network mounted /usr systems
ebd8418
- have D-Bus start early
ebd8418
f0fbcea
* Thu Jan 19 2006 Alexander Larsson <alexl@redhat.com> 0.60-4
f0fbcea
- mono now built on s390x
f0fbcea
e66b33a
* Mon Jan  9 2006 Alexander Larsson <alexl@redhat.com> 0.60-3
e66b33a
- Don't exclude non-mono arches
e66b33a
f14594b
* Mon Jan  9 2006 Alexander Larsson <alexl@redhat.com> - 0.60-2
f14594b
- Add dbus-sharp sub-package
f14594b
891e77a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> - 0.60-1.1
69a8af5
- rebuilt
69a8af5
a2950c5
* Thu Dec 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.60-1
a2950c5
- upgrade to 0.60
a2950c5
6f33063
* Mon Sep 08 2005 John (J5) Palmieri <johnp@redhat.com> - 0.50-1
6f33063
- upgrade to 0.50
6f33063
74a865a
* Mon Aug 29 2005 John (J5) Palmieri <johnp@redhat.com> - 0.36.2-1
74a865a
- upgrade to 0.36.2 which fixes an exploit where
74a865a
  users can attach to another user's session bus (CAN-2005-0201)
74a865a
423a770
* Wed Aug 24 2005 John (J5) Palmieri <johnp@redhat.com> - 0.36.1-1
423a770
- Upgrade to dbus-0.36.1
423a770
- Install all files to lib64/ on 64bit machines
423a770
33260f2
* Tue Aug 23 2005 John (J5) Palmieri <johnp@redhat.com> - 0.36-1
33260f2
- Upgrade to dbus-0.36
43c4e7b
- Split modules that go into %%{_lib}/python2.4/site-packages/dbus
43c4e7b
and those that go into %%{python_sitelib}/dbus (they differ on 64bit)
33260f2
- Renable Qt bindings since packages in core can use them
33260f2
796232d
* Mon Jul 18 2005 John (J5) Palmieri <johnp@redhat.com> - 0.35.2-1
796232d
- Upgrade to dbus-0.35.2
796232d
- removed dbus-0.34-kill-babysitter.patch
796232d
- removed dbus-0.34-python-threadsync.patch
796232d
- removed dbus-0.23-selinux-avc-audit.patch
796232d
- added dbus-0.35.2-selinux-avc-audit.patch
23b181f
- take out restarts on upgrade
796232d
38ead4a
* Tue Jun 28 2005 John (J5) Palmieri <johnp@redhat.com> - 0.34-1
38ead4a
- Upgrade to dbus-0.34
38ead4a
- added dbus-0.34-kill-babysitter.patch
38ead4a
- added dbus-0.34-python-threadsync.patch
38ead4a
- remove dbus-0.32-print_child_pid.patch
38ead4a
- remove dbus-0.32-deadlock-fix.patch
38ead4a
- remove dbus-0.33-types.patch
38ead4a
5d22cad
* Wed Jun 18 2005 John (J5) Palmieri <johnp@redhat.com> - 0.33-4
5d22cad
- Add new libaudit patch from Steve Grub and enable in configure
5d22cad
  (Bug #159218)
5d22cad
7d5e52f
* Mon May 23 2005 Bill Nottingham <notting@redhat.com> - 0.33-3
7d5e52f
- remove static libraries from python bindings
7d5e52f
f6f3492
* Sun May 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.33-2
f6f3492
- Backport patch from CVS that fixes int32's being marshaled as
f6f3492
uint16's in the python bindings
f6f3492
31baefc
* Mon Apr 25 2005 John (J5) Palmieri <johnp@redhat.com> - 0.33-1
31baefc
- update to upstream 0.33
31baefc
- renable selinux audit patch
31baefc
b5ddf63
* Mon Apr 12 2005 John (J5) Palmieri <johnp@redhat.com> - 0.32-6
b5ddf63
- Added patch to fix deadlocks when using recursive g_mains
b5ddf63
2567d6e
* Mon Apr 12 2005 John (J5) Palmieri <johnp@redhat.com> - 0.32-5
2567d6e
- replace selinux_init patch with selinux_chroot_workaround patch
2567d6e
  to work around bad selinux interactions when using chroots
2567d6e
  on the beehive build machines
2567d6e
008e867
* Mon Apr 11 2005 John (J5) Palmieri <johnp@redhat.com> - 0.32-4
008e867
- add print_child_pid patch which make sure we prin the child's pid if we fork
008e867
David Zeuthen 9e642d3
* Thu Apr  7 2005 David Zeuthen <davidz@redhat.com> - 0.32-3
David Zeuthen 9e642d3
- add fix for glib infinite loop (fdo #2889)
David Zeuthen 9e642d3
d26cb11
* Thu Mar 31 2005 John (J5) Palmieri <johnp@redhat.com> - 0.32-2
d26cb11
- add selinux-init patch to fix dbus from segfaulting when
d26cb11
  building on machines that don't have selinux enabled
d26cb11
10238dc
* Thu Mar 31 2005 John (J5) Palmieri <johnp@redhat.com> - 0.32-1
10238dc
- update to upstream version 0.32
10238dc
49023d8
* Wed Mar 23 2005 John (J5) Palmieri <johnp@redhat.com> - 0.31-4
49023d8
- Pyrex has been patched to generate gcc4.0 complient code
49023d8
- Rebuild for gcc4.0
49023d8
 
ca70aaf
* Wed Mar 16 2005 John (J5) Palmieri <johnp@redhat.com> - 0.31-3
1c28ead
- change compat-gcc requirement to compat-gcc-32
ca70aaf
- rebuild with gcc 3.2
ca70aaf
156a777
* Tue Mar 08 2005 John (J5) Palmieri <johnp@redhat.com> - 0.31-2
156a777
- Remove precompiled init script and let the sources generate it
156a777
d7fbd57
* Mon Mar 07 2005 John (J5) Palmieri <johnp@redhat.com> - 0.31-1
d7fbd57
- update to upstream version 0.31
d7fbd57
- take out user has same id patch (merged upstream)
d7fbd57
- udi patch updated
d7fbd57
- dbus-daemon-1 renamed to dbus-daemon
d7fbd57
- dbus-glib-tool renamed to dbus-binding-tool
438da18
- force gcc33 because pyrex generate improper lvalue code
eddb857
- disable audit patch for now
d7fbd57
567cb45
* Tue Feb 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-4
567cb45
- Explicitly pass in the pid file location to ./configure instead of
567cb45
  letting it guess based on the build enviornment
567cb45
567cb45
* Mon Jan 31 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-3
567cb45
- Add patch to fix random users from connecting to a users session bus
567cb45
61bbf18
* Fri Jan 21 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-2
61bbf18
- Add Steve Grubb's SE-Linux audit patch (Bug# 144920)
61bbf18
6f4ca0a
* Fri Jan 21 2005 John (J5) Palmieri <johnp@redhat.com> - 0.23-1
6f4ca0a
- Update to upstream version 0.23
6f4ca0a
- Drop all patches except for the UDI patch as they have been 
6f4ca0a
  integrated upstream 
6f4ca0a
- List of API changes:
6f4ca0a
      * add setgroups() to drop supplementary groups
6f4ca0a
      * removed dbus_bug_get_with_g_main since it's been replaced by dbus_g_bus_get
6f4ca0a
      * added support for int64 and uint64 to the python bindings
6f4ca0a
      * use SerivceOwnerChanges signal instead of ServiceCreated and ServiceDeleted
6f4ca0a
22c8fd7
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 0.22-12
22c8fd7
- rebuild against python 2.4
22c8fd7
57eb5d3
* Tue Nov 02 2004 John (J5) Palmieri <johnp@redhat.com>
57eb5d3
- Add a requires for glib2-devel in the devel package
57eb5d3
- Add SE-Linux backport from Colin Walters that fixes 
57eb5d3
  messages getting lost in SE-Linux contexts
57eb5d3
11b6ed2
* Wed Oct 13 2004 John (J5) Palmieri <johnp@redhat.com>
11b6ed2
- Bump up release and rebuild
11b6ed2
1e8ddbc
* Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com>
1e8ddbc
- Run /sbin/ldconfig for glib sub-package (bug #134062).
1e8ddbc
57656d1
* Wed Sep 22 2004 John (J5) Palmieri <johnp@redhat.com>
ead51ab
- Fixed patch to use dbus-1 instead of dbus-1.0
ead51ab
- (configure.in): Exported just the datadir instead of
ead51ab
  the full path to the dbus datadir for consistency
ead51ab
ead51ab
* Wed Sep 22 2004 John (J5) Palmieri <johnp@redhat.com>
57656d1
- Adding patch to move /usr/lib/dbus-1.0/services to
57656d1
  /usr/share/dbus-1.0/services 
57656d1
fb47a38
* Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
f8d2937
- reverting BuildRequires: redhat-release because of issues with build system
f8d2937
- added precompiled version of the messagebus init script
f8d2937
f8d2937
* Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
2670858
- changed /etc/redhat-release to the package redhat-release
2670858
2670858
* Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
16d81f6
- added python int64 patch from davidz
16d81f6
16d81f6
* Thu Sep 16 2004 John (J5) Palmieri <johnp@redhat.com>
fb47a38
- added BuildRequires: /etc/redhat-release (RH Bug #132436)
fb47a38
cvsdist 3f583b0
* Wed Aug 18 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 3f583b0
- Added Steve Grubb's spec file patch (RH Bug #130201)
cvsdist 3f583b0
cvsdist b590c7d
* Mon Aug 16 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist c1a1894
- Disabled dbus-gtk since dbus-viewer doesn't do anything right now
cvsdist c1a1894
cvsdist c1a1894
* Mon Aug 16 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist b590c7d
- Moved dbus-viewer to new dbus-gtk package so that dbus-glib
cvsdist b590c7d
  no longer requires X or GTK libraries. (RH Bug #130029)
cvsdist b590c7d
cvsdist b3d8e48
* Thu Aug 12 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist b3d8e48
- Update to new 0.22 release
cvsdist b3d8e48
cvsdist 9130018
* Thu Aug 05 2004 John (J5) Palmieri <johnp@redhat.com> 
cvsdist 9130018
- Added BuildRequires for libselinux-devel and Requires for libselinux
cvsdist 9130018
cvsdist 9130018
* Tue Aug 02 2004 Colin Walters <walters@redhat.com>
cvsdist 9130018
- Add SE-DBus patch
cvsdist 9130018
cvsdist 0d4f5b5
* Fri Jul 30 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 0d4f5b5
- Added lib64 workaround for python bindings installing to
cvsdist 0d4f5b5
  the wrong lib directory on 64 bit archs
cvsdist 0d4f5b5
cvsdist 0d4f5b5
* Fri Jul 30 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 0d4f5b5
- Updated console-auth patch
cvsdist 0d4f5b5
- rebuild
cvsdist 0d4f5b5
 
cvsdist 0d4f5b5
* Thu Jul 22 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 0d4f5b5
- Update to upstream CVS build
cvsdist 0d4f5b5
- Added console-auth patch
cvsdist 0d4f5b5
cvsdist b0af9b0
* Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 0d4f5b5
- Workaround added to fix gcc-3.4 bug on ia64
cvsdist 0d4f5b5
cvsdist b0af9b0
* Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist b0af9b0
- require new Pyrex version and see if it builds this time
cvsdist b0af9b0
cvsdist b0af9b0
* Fri Jun 25 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist b0af9b0
- rebuild with updated Pyrex (0.9.2.1)
cvsdist b0af9b0
cvsdist b0af9b0
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist b0af9b0
- rebuilt
cvsdist b0af9b0
cvsdist a12253b
* Fri Jun 04 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist a12253b
- Moved dbus-viewer, dbus-monitor and dbus-glib-tool 
cvsdist a12253b
  into the dbus-glib package so that the main dbus
cvsdist a12253b
  package does not depend on glib (Bug #125285) 
cvsdist a12253b
cvsdist 528806e
* Thu Jun 03 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 528806e
- rebuilt
cvsdist 528806e
cvsdist 528806e
* Thu May 27 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 528806e
- added my Python patch
cvsdist 528806e
- took out the qt build requires
cvsdist 528806e
- added a gtk+ build requires 
cvsdist 528806e
cvsdist 528806e
* Fri Apr 23 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 528806e
- Changed build requirement to version 0.9-3 of Pyrex
cvsdist 528806e
  to fix problem with builing on x86_64
cvsdist 528806e
cvsdist 528806e
* Tue Apr 20 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 528806e
- update to upstream 0.21
cvsdist 528806e
- removed dbus-0.20-varargs.patch patch (fixed upstream)
cvsdist 528806e
cvsdist 528806e
* Mon Apr 19 2004 John (J5) Palmieri <johnp@redhat.com>
cvsdist 528806e
- added a dbus-python package to generate python bindings
cvsdist 528806e
- added Pyrex build dependacy
cvsdist 528806e
cvsdist 01314ee
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 01314ee
- rebuilt
cvsdist 01314ee
cvsdist 01314ee
* Wed Feb 25 2004 Bill Nottingham <notting@redhat.com> 0.20-4
cvsdist 01314ee
- fix dbus error functions on x86-64 (#116324)
cvsdist 01314ee
- add prereq (#112027)
cvsdist 01314ee
cvsdist 01314ee
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 01314ee
- rebuilt
cvsdist 01314ee
cvsdist 01314ee
* Fri Feb 13 2004 Tim Waugh <twaugh@redhat.com>
cvsdist 01314ee
- Conflict with cups prior to configuration file change, so that the
cvsdist 01314ee
  %%postun service condrestart works.
cvsdist 01314ee
cvsdist 01314ee
* Wed Feb 11 2004 Havoc Pennington <hp@redhat.com> 0.20-2
cvsdist 01314ee
- rebuild in fc2, cups now updated
cvsdist 01314ee
cvsdist 01314ee
* Wed Jan  7 2004 Bill Nottingham <notting@redhat.com> 0.20-1
cvsdist 01314ee
- update to upstream 0.20
cvsdist 01314ee
cvsdist 5d01674
* Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-6
cvsdist 5d01674
- hmm, dbus doesn't support uids in the config file. fix.
cvsdist 5d01674
cvsdist 5d01674
* Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-5
cvsdist 5d01674
- put uid instead of username in the config file, to keep things working with name change
cvsdist 5d01674
cvsdist 5d01674
* Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-4
cvsdist 5d01674
- make subpackages require the specific release, not just version, of base package
cvsdist 5d01674
cvsdist 5d01674
* Thu Oct 16 2003 Havoc Pennington <hp@redhat.com> 0.13-3
cvsdist 5d01674
- change system user "messagebus" -> "dbus" to be under 8 chars
cvsdist 5d01674
cvsdist 5d01674
* Mon Sep 29 2003 Havoc Pennington <hp@redhat.com> 0.13-2
cvsdist 5d01674
- see if removing qt subpackage for now will get us through the build system,
cvsdist 5d01674
  qt bindings not useful yet anyway
cvsdist 5d01674
cvsdist 5d01674
* Sun Sep 28 2003 Havoc Pennington <hp@redhat.com> 0.13-1
cvsdist 5d01674
- 0.13 fixes a little security oops
cvsdist 5d01674
cvsdist 5d01674
* Mon Aug  4 2003 Havoc Pennington <hp@redhat.com> 0.11.91-3
cvsdist 5d01674
- break the tiny dbus-launch that depends on X into separate package
cvsdist 5d01674
  so a CUPS server doesn't need X installed
cvsdist 5d01674
cvsdist 5d01674
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 5d01674
- rebuilt
cvsdist 5d01674
cvsdist 5d01674
* Sat May 17 2003 Havoc Pennington <hp@redhat.com> 0.11.91-1
cvsdist 5d01674
- 0.11.91 cvs snap properly merges system.d
cvsdist 5d01674
cvsdist 5d01674
* Fri May 16 2003 Havoc Pennington <hp@redhat.com> 0.11.90-1
cvsdist 5d01674
- build a cvs snap with a few more fixes
cvsdist 5d01674
cvsdist 5d01674
* Fri May 16 2003 Havoc Pennington <hp@redhat.com> 0.11-2
cvsdist 5d01674
- fix a crash that was breaking cups
cvsdist 5d01674
cvsdist 5d01674
* Thu May 15 2003 Havoc Pennington <hp@redhat.com> 0.11-1
cvsdist 5d01674
- 0.11
cvsdist 5d01674
cvsdist 5d01674
* Thu May 15 2003 Havoc Pennington <hp@redhat.com> 0.10.90-1
cvsdist 5d01674
- use rc.d/init.d not init.d, bug #90192
cvsdist 5d01674
- include the new man pages
cvsdist 5d01674
cvsdist 5d01674
* Fri Apr 11 2003 Havoc Pennington <hp@redhat.com> 0.9-1
cvsdist 5d01674
- 0.9
cvsdist 5d01674
- export QTDIR explicitly
cvsdist 5d01674
- re-enable qt, the problem was most likely D-BUS configure
cvsdist 5d01674
cvsdist 5d01674
* Tue Apr  1 2003 Havoc Pennington <hp@redhat.com> 0.6.94-1
cvsdist 5d01674
- update from CVS with a fix to set uid after gid
cvsdist 5d01674
cvsdist 5d01674
* Tue Apr  1 2003 Havoc Pennington <hp@redhat.com> 0.6.93-1
cvsdist 5d01674
- new cvs snap that actually forks to background and changes 
cvsdist 5d01674
  user it's running as and so forth
cvsdist 5d01674
- create our system user in pre
cvsdist 5d01674
cvsdist 5d01674
* Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.92-1
cvsdist 5d01674
- fix for "make check" test that required a home directory
cvsdist 5d01674
cvsdist 5d01674
* Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.91-1
cvsdist 5d01674
- disable qt for now because beehive hates me
cvsdist 5d01674
- pull a slightly newer cvs snap that creates socket directory
cvsdist 5d01674
- cat the make check log after make check fails
cvsdist 5d01674
cvsdist 5d01674
* Mon Mar 31 2003 Havoc Pennington <hp@redhat.com> 0.6.90-1
cvsdist 5d01674
- initial build
cvsdist 5d01674