cvsdist 5d01674
%define gettext_package dbus
cvsdist 5d01674
cvsdist 5d01674
%define expat_version           1.95.5
cvsdist 9130018
%define libselinux_version	1.15.2	
cvsdist 5d01674
cvsdist 5d01674
%define dbus_user_uid           81
cvsdist 5d01674
cvsdist 5d01674
Summary: D-BUS message bus
cvsdist 5d01674
Name: dbus
5a119b4
Version: 0.90
5a119b4
Release: 1 
cvsdist 5d01674
URL: http://www.freedesktop.org/software/dbus/
cvsdist 5d01674
Source0: %{name}-%{version}.tar.gz
cvsdist 5d01674
License: AFL/GPL
cvsdist 5d01674
Group: System Environment/Libraries
cvsdist 5d01674
BuildRoot: %{_tmppath}/%{name}-root
cc89c66
PreReq: /usr/sbin/useradd
cc89c66
Requires: chkconfig >= 1.3.26
cvsdist 3f583b0
BuildPreReq: libtool
f8d2937
#BuildRequires: redhat-release 
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
9539db4
BuildRequires: libcap-devel
bfef33f
BuildRequires: gettext
cvsdist 9130018
Requires: libselinux >= %{libselinux_version}
cvsdist 528806e
cvsdist 01314ee
Conflicts: cups < 1:1.1.20-4
cvsdist 5d01674
0d83b87
Patch2: dbus-0.61-selinux-avc-audit.patch
ebd8418
Patch3: dbus-0.60-start-early.patch
a3bd691
cvsdist 5d01674
%description
cvsdist 5d01674
cvsdist 5d01674
D-BUS is a system for sending messages between applications. It is
cvsdist 5d01674
used both for the systemwide message bus service, and as a
cvsdist 5d01674
per-user-login-session messaging facility.
cvsdist 5d01674
cvsdist 5d01674
%package devel
cvsdist 5d01674
Summary: Libraries and headers for D-BUS
cvsdist 5d01674
Group: Development/Libraries
cvsdist 5d01674
Requires: %name = %{version}-%{release}
cvsdist 5d01674
cvsdist 5d01674
%description devel
cvsdist 5d01674
cvsdist 5d01674
Headers and static libraries for D-BUS.
cvsdist 5d01674
cvsdist 5d01674
%package x11
cvsdist 5d01674
Summary: X11-requiring add-ons for D-BUS
cvsdist 5d01674
Group: Development/Libraries
f6edcd8
Requires: libX11
cvsdist 5d01674
Requires: %name = %{version}-%{release}
cvsdist 5d01674
cvsdist 5d01674
%description x11
cvsdist 5d01674
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
31baefc
%patch2 -p1 -b .selinux-avc-audit
ebd8418
%patch3 -p1 -b .start-early
567cb45
33260f2
autoreconf -f -i
33260f2
cvsdist 5d01674
%build
5a119b4
COMMON_ARGS="--enable-libaudit --enable-selinux=yes --with-init-scripts=redhat --with-system-pid-file=%{_localstatedir}/run/messagebus.pid --with-dbus-user=%{dbus_user_uid} --libdir=/lib --bindir=/bin --sysconfdir=/etc --exec-prefix=/"
cvsdist 5d01674
cvsdist 5d01674
### this is some crack because bits of dbus can be 
cvsdist 5d01674
### smp-compiled but others don't feel like working
cvsdist 5d01674
function make_fast() {
cvsdist 5d01674
        ### try to burn through it with SMP a couple times
cvsdist 5d01674
        make %{?_smp_mflags} || true
cvsdist 5d01674
        make %{?_smp_mflags} || true
cvsdist 528806e
cvsdist 5d01674
        ### then do a real make and don't ignore failure
975cd53
        DBUS_VERBOSE=1 make
cvsdist 5d01674
}
cvsdist 5d01674
cvsdist 5d01674
#### Build once with tests to make check
cvsdist 5d01674
%configure $COMMON_ARGS --enable-tests=yes --enable-verbose-mode=yes --enable-asserts=yes
cvsdist 5d01674
make_fast
5a119b4
5a119b4
#keep debug mode for now.
cvsdist 528806e
exit 0
cvsdist 5d01674
cvsdist 5d01674
#### Clean up and build again 
cvsdist 5d01674
make clean 
cvsdist 5d01674
cvsdist 5d01674
%configure $COMMON_ARGS --disable-tests --disable-verbose-mode --disable-asserts
35fbd21
make
cvsdist 5d01674
cvsdist 5d01674
%install
cvsdist 5d01674
rm -rf %{buildroot}
cvsdist 5d01674
ebd8418
make install DESTDIR=$RPM_BUILD_ROOT
ebd8418
5a119b4
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
5a119b4
mv -f $RPM_BUILD_ROOT/%{_lib}/pkgconfig/*.pc $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
5a119b4
5a119b4
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
5a119b4
mv -f $RPM_BUILD_ROOT/bin/dbus-launch $RPM_BUILD_ROOT/%{_bindir}
5a119b4
5a119b4
rm -f $RPM_BUILD_ROOT/%{_lib}/*.a
5a119b4
rm -f $RPM_BUILD_ROOT/%{_lib}/*.la
ebd8418
cvsdist 5d01674
## %find_lang %{gettext_package}
cvsdist 5d01674
cvsdist 5d01674
%clean
cvsdist 5d01674
rm -rf %{buildroot}
cvsdist 5d01674
cvsdist 5d01674
%pre
cvsdist 5d01674
# Add the "dbus" user
cvsdist 5d01674
/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} \
cvsdist 5d01674
	-s /sbin/nologin -r -d '/' dbus 2> /dev/null || :
cvsdist 5d01674
cvsdist 5d01674
%post
cvsdist 5d01674
/sbin/ldconfig
cc89c66
/sbin/chkconfig --add messagebus 
cc89c66
/sbin/chkconfig messagebus resetpriorities
cvsdist 5d01674
cvsdist 5d01674
%preun
cvsdist 5d01674
if [ $1 = 0 ]; then
cvsdist 5d01674
    /sbin/chkconfig --del messagebus
cvsdist 5d01674
fi
cvsdist 5d01674
cvsdist 5d01674
%postun
cvsdist 5d01674
/sbin/ldconfig
cvsdist 5d01674
cvsdist 5d01674
%files
cvsdist 5d01674
%defattr(-,root,root)
cvsdist 5d01674
cvsdist 5d01674
%doc COPYING ChangeLog NEWS
cvsdist 5d01674
63e8e7f
%dir %{_sysconfdir}/dbus-1
cvsdist 5d01674
%config %{_sysconfdir}/dbus-1/*.conf
cvsdist 5d01674
%config %{_sysconfdir}/rc.d/init.d/*
cvsdist 5d01674
%dir %{_sysconfdir}/dbus-1/system.d
cvsdist 5d01674
%dir %{_localstatedir}/run/dbus
5a119b4
%dir /%{_lib}/dbus-1.0
ebd8418
/bin/dbus-daemon
ebd8418
/bin/dbus-send
ebd8418
/bin/dbus-cleanup-sockets
5a119b4
/bin/dbus-monitor
ebd8418
/%{_lib}/*dbus-1*.so.*
cvsdist 5d01674
%{_datadir}/man/man*/*
ead51ab
%{_datadir}/dbus-1/services
cvsdist 5d01674
cvsdist 5d01674
%files x11
cvsdist 5d01674
%defattr(-,root,root)
cvsdist 5d01674
cvsdist 5d01674
%{_bindir}/dbus-launch
cvsdist 5d01674
5a119b4
%files devel
cvsdist 528806e
%defattr(-,root,root)
cvsdist 528806e
5a119b4
/%{_lib}/lib*.so
5a119b4
/%{_lib}/dbus-1.0/include
5a119b4
%{_libdir}/pkgconfig/dbus-1.pc
5a119b4
%{_includedir}/*
f14594b
cvsdist 5d01674
%changelog
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
33260f2
- Split modules that go into %{_lib}/python2.4/site-packages/dbus
33260f2
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