2012-02-01 14:28:20 +04:00
|
|
|
|
%define major 3
|
|
|
|
|
%define libname %mklibname %{name} %{major}
|
|
|
|
|
%define devname %mklibname -d %{name}
|
|
|
|
|
|
|
|
|
|
%define _with_systemd 1
|
|
|
|
|
|
|
|
|
|
Name: bluez
|
|
|
|
|
Summary: Official Linux Bluetooth protocol stack
|
|
|
|
|
Version: 4.93
|
2012-08-06 16:25:12 +04:00
|
|
|
|
Release: %mkrel 3
|
2012-02-01 14:28:20 +04:00
|
|
|
|
License: GPLv2+
|
|
|
|
|
Group: Communications
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
|
URL: http://bluez.sourceforge.net/
|
|
|
|
|
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
|
|
|
|
|
#Source1: bluetooth.init
|
|
|
|
|
#Source2: pand.init
|
|
|
|
|
#Source3: dund.init
|
|
|
|
|
#Source4: hidd.init
|
|
|
|
|
#Source5: bluetooth.conf
|
|
|
|
|
Source6: pand.conf
|
|
|
|
|
Source7: dund.conf
|
|
|
|
|
Source8: hidd.conf
|
|
|
|
|
Source9: rfcomm.conf
|
|
|
|
|
#Source10: hidd.hotplug
|
|
|
|
|
#Source11: hidd.udev.rules
|
|
|
|
|
|
|
|
|
|
# (bor) also disable rule if systemd is active
|
|
|
|
|
Patch100: bluez-4.79-fail_udev_event_on_error.patch
|
|
|
|
|
# (bor) based on http://article.gmane.org/gmane.linux.bluez.kernel/6479
|
|
|
|
|
Patch101: bluez-4.93-systemd_support.patch
|
2012-08-06 16:25:12 +04:00
|
|
|
|
Patch102: 03-Fix-return-code-of-hid2hci.patch
|
|
|
|
|
Patch103: 04-Fix-disabled-after-resume.patch
|
2012-02-01 14:28:20 +04:00
|
|
|
|
|
|
|
|
|
BuildRequires: dbus-devel
|
|
|
|
|
BuildRequires: flex
|
|
|
|
|
BuildRequires: bison
|
|
|
|
|
BuildRequires: libusb-devel
|
|
|
|
|
BuildRequires: libalsa-devel
|
|
|
|
|
BuildRequires: udev-tools
|
|
|
|
|
BuildRequires: libgstreamer0.10-plugins-base-devel
|
|
|
|
|
BuildRequires: gstreamer0.10-devel hal-devel
|
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
|
BuildRequires: udev-devel
|
|
|
|
|
BuildRequires: libcap-ng-devel
|
|
|
|
|
# (bor) for P101
|
|
|
|
|
BuildRequires: automake autoconf
|
2012-05-01 10:41:01 +04:00
|
|
|
|
%if %{_with_systemd}
|
|
|
|
|
BuildRequires: systemd-units
|
|
|
|
|
BuildRequires: libsystemd-daemon-devel
|
|
|
|
|
%endif
|
2012-02-01 14:28:20 +04:00
|
|
|
|
Requires: python-gobject
|
|
|
|
|
Requires: bluez-pin
|
|
|
|
|
Requires: obex-data-server
|
|
|
|
|
Provides: bluez-sdp
|
|
|
|
|
Obsoletes: bluez-sdp < 4.0
|
|
|
|
|
Provides: bluez-pan
|
|
|
|
|
Provides: bluez-hciemu
|
|
|
|
|
Obsoletes: bluez-hciemu
|
|
|
|
|
Provides: bluez-utils
|
|
|
|
|
Obsoletes: bluez-utils < 4.0
|
|
|
|
|
Suggests: bluez-firmware
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
These are the official Bluetooth communication libraries for Linux.
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
update-alternatives --install /bin/bluepin bluepin /usr/bin/bluepin 5
|
|
|
|
|
#migrate old configuration
|
|
|
|
|
if [ "$1" = "2" -a -d %{_var}/lib/lib/bluetooth ]; then
|
|
|
|
|
mv -f %{_var}/lib/lib/bluetooth/* %{_var}/lib/bluetooth/ > /dev/null 2>&1 || exit 0
|
|
|
|
|
rmdir %{_var}/lib/lib/bluetooth/ > /dev/null 2>&1 || exit 0
|
|
|
|
|
rmdir %{_var}/lib/lib/ > /dev/null 2>&1 || exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
##%_post_service bluetooth
|
|
|
|
|
##%_post_service dund
|
|
|
|
|
##%_post_service hidd
|
|
|
|
|
##%_post_service pand
|
|
|
|
|
|
|
|
|
|
%preun
|
|
|
|
|
##%_preun_service bluetooth
|
|
|
|
|
##%_preun_service dund
|
|
|
|
|
##%_preun_service hidd
|
|
|
|
|
##%_preun_service pand
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
|
update-alternatives --remove bluepin /usr/bin/bluepin
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
%triggerin -- bluez < 4.46-4mdv
|
|
|
|
|
/sbin/chkconfig --del bluetooth
|
|
|
|
|
/sbin/chkconfig --del dund
|
|
|
|
|
/sbin/chkconfig --del hidd
|
|
|
|
|
/sbin/chkconfig --del pand
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%{_bindir}/*
|
|
|
|
|
%{_sbindir}/*
|
|
|
|
|
/sbin/hidd
|
|
|
|
|
/sbin/bluetoothd
|
|
|
|
|
%if %{_with_systemd}
|
|
|
|
|
/lib/systemd/system/bluetooth.service
|
|
|
|
|
/lib/systemd/system/bluetooth.target.wants/bluetooth.service
|
|
|
|
|
%endif
|
|
|
|
|
#/sbin/udev_bluetooth_helper
|
|
|
|
|
%{_mandir}/man?/*
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/*
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/*.conf
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/bluetooth
|
|
|
|
|
%{_datadir}/dbus-1/system-services/org.bluez.service
|
|
|
|
|
/lib/udev/bluetooth_serial
|
|
|
|
|
/lib/udev/hid2hci
|
|
|
|
|
%{_sysconfdir}/udev/rules.d/97-bluetooth-serial.rules
|
|
|
|
|
%{_sysconfdir}/udev/rules.d/97-bluetooth-hid2hci.rules
|
|
|
|
|
%{_sysconfdir}/udev/rules.d/97-bluetooth.rules
|
|
|
|
|
%{_localstatedir}/lib/bluetooth
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%package cups
|
|
|
|
|
Summary: CUPS printer backend for Bluetooth printers
|
|
|
|
|
Group: System/Servers
|
|
|
|
|
Requires: cups
|
|
|
|
|
Obsoletes: %name-utils-cups
|
|
|
|
|
|
|
|
|
|
%description cups
|
|
|
|
|
This package contains the CUPS backend for Bluetooth printers.
|
|
|
|
|
|
|
|
|
|
%files cups
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_prefix}/lib/cups/backend/bluetooth
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%package gstreamer
|
|
|
|
|
Summary: Gstreamer support for SBC audio format
|
|
|
|
|
Group: Sound
|
|
|
|
|
Obsoletes: %name-utils-gstreamer
|
|
|
|
|
|
|
|
|
|
%description gstreamer
|
|
|
|
|
This package contains gstreamer plugins for the Bluetooth SBC audio format
|
|
|
|
|
|
|
|
|
|
%files gstreamer
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/gstreamer-*/*.so
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%package alsa
|
|
|
|
|
Summary: ALSA support for Bluetooth audio devices
|
|
|
|
|
Group: Sound
|
|
|
|
|
Obsoletes: %name-utils-alsa
|
|
|
|
|
|
|
|
|
|
%description alsa
|
|
|
|
|
This package contains ALSA support for Bluetooth audio devices
|
|
|
|
|
|
|
|
|
|
%files alsa
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/alsa-lib/*.so
|
|
|
|
|
%{_datadir}/alsa/bluetooth.conf
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%package -n %{libname}
|
|
|
|
|
Summary: Official Linux Bluetooth protocol stack
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Provides: lib%{name}-sdp2
|
|
|
|
|
Obsoletes: lib%{name}-sdp2
|
|
|
|
|
|
|
|
|
|
%description -n %{libname}
|
|
|
|
|
These are the official Bluetooth communication libraries for Linux.
|
|
|
|
|
|
|
|
|
|
%files -n %{libname}
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
/%{_lib}/lib*.so.%{major}*
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%package -n %{devname}
|
|
|
|
|
Summary: Headers for developing programs that will use %name
|
|
|
|
|
Group: Development/C++
|
|
|
|
|
Requires: %{libname} = %{version}
|
|
|
|
|
Provides: lib%{name}-devel = %{version}-%{release}
|
|
|
|
|
Provides: %{name}-devel = %{version}-%{release}
|
|
|
|
|
Provides: lib%{name}-sdp-devel, lib%{name}-sdp2-devel
|
|
|
|
|
Obsoletes: lib%{name}-sdp-devel, lib%{name}-sdp2-devel
|
|
|
|
|
Provides: %{name}-sdp-devel
|
|
|
|
|
Obsoletes: %{name}-sdp-devel
|
|
|
|
|
Obsoletes: %{libname}-devel
|
|
|
|
|
|
|
|
|
|
%description -n %{devname}
|
|
|
|
|
This package contains the headers that programmers will need to develop
|
|
|
|
|
applications which will use libraries from %{name}.
|
|
|
|
|
|
|
|
|
|
%files -n %{devname}
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%doc AUTHORS ChangeLog README
|
|
|
|
|
%dir %{_includedir}/bluetooth
|
|
|
|
|
%{_includedir}/bluetooth/*.h
|
|
|
|
|
/%{_lib}/*.so
|
|
|
|
|
/%{_lib}/*.la
|
|
|
|
|
%{_libdir}/pkgconfig/bluez.pc
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n %name-%{version}
|
|
|
|
|
%patch100 -p1 -b .fail_event
|
|
|
|
|
%patch101 -p1 -b .systemd
|
2012-08-06 16:25:12 +04:00
|
|
|
|
%patch102 -p1
|
|
|
|
|
%patch103 -p1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# (bor) for P101
|
|
|
|
|
autoreconf -fi
|
|
|
|
|
# fix mdv bug 35444
|
|
|
|
|
%define _localstatedir %{_var}
|
|
|
|
|
%configure2_5x --libdir=/%{_lib} \
|
|
|
|
|
%if !%{_with_systemd}
|
|
|
|
|
--without-systemdsystemunitdir \
|
|
|
|
|
%endif
|
|
|
|
|
--enable-cups \
|
|
|
|
|
--enable-dfutool \
|
|
|
|
|
--enable-tools \
|
|
|
|
|
--enable-bccmd \
|
|
|
|
|
--enable-gstreamer \
|
|
|
|
|
--enable-hidd \
|
|
|
|
|
--enable-pand \
|
|
|
|
|
--enable-dund \
|
|
|
|
|
--enable-hid2hci \
|
|
|
|
|
--enable-pcmcia \
|
|
|
|
|
--enable-udevrules \
|
|
|
|
|
--enable-capng
|
|
|
|
|
|
|
|
|
|
%make
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
%makeinstall_std rulesdir=%{_sysconfdir}/udev/rules.d udevdir=/lib/udev
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}
|
|
|
|
|
mv %{buildroot}/%{_lib}/gstreamer-0.10 %{buildroot}%{_libdir}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cat << EOF > %{buildroot}%{_sysconfdir}/bluetooth/pin
|
|
|
|
|
1234
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
chmod 600 %{buildroot}%{_sysconfdir}/bluetooth/pin
|
|
|
|
|
|
|
|
|
|
rm -f %{buildroot}/etc/default/bluetooth %{buildroot}/etc/init.d/bluetooth
|
|
|
|
|
for a in dund hidd pand ; do
|
|
|
|
|
install -D -m0644 $RPM_SOURCE_DIR/$a.conf %{buildroot}%{_sysconfdir}/sysconfig/$a
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
rm -rf %{buildroot}/%{_lib}/pkgconfig
|
|
|
|
|
install -m644 bluez.pc -D %{buildroot}%{_libdir}/pkgconfig/bluez.pc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Remove the cups backend from libdir, and install it in /usr/lib whatever the install
|
|
|
|
|
if test -d %{buildroot}/%{_lib}/cups ; then
|
|
|
|
|
install -D -m0755 %{buildroot}/%{_lib}/cups/backend/bluetooth %{buildroot}/usr/lib/cups/backend/bluetooth
|
|
|
|
|
rm -rf %{buildroot}/%{_lib}/cups
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}/sbin
|
|
|
|
|
cp %{buildroot}%{_bindir}/hidd %{buildroot}/sbin/
|
|
|
|
|
cp %{buildroot}%{_sbindir}/bluetoothd %{buildroot}/sbin/
|
|
|
|
|
|
|
|
|
|
cp test/test-* %{buildroot}%{_bindir}
|
|
|
|
|
cp test/simple-agent %{buildroot}%{_bindir}/simple-agent
|
|
|
|
|
|
|
|
|
|
#install -D -m0755 %{SOURCE10} %{buildroot}/sbin/udev_bluetooth_helper
|
|
|
|
|
#install -D -m0644 %{SOURCE11} %{buildroot}%{_sysconfdir}/udev/rules.d/60-bluetooth.rules
|
|
|
|
|
|
|
|
|
|
#install more config files
|
|
|
|
|
install -m0644 audio/audio.conf %{buildroot}%{_sysconfdir}/bluetooth/
|
|
|
|
|
install -m0644 network/network.conf %{buildroot}%{_sysconfdir}/bluetooth/
|
|
|
|
|
install -m0644 input/input.conf %{buildroot}%{_sysconfdir}/bluetooth/
|
|
|
|
|
install -m0644 serial/serial.conf %{buildroot}%{_sysconfdir}/bluetooth/
|
|
|
|
|
|
|
|
|
|
%__mkdir -p %{buildroot}%{_libdir}/alsa-lib/
|
|
|
|
|
%__mv %{buildroot}/%{_lib}/alsa-lib/*.so %{buildroot}%{_libdir}/alsa-lib/
|
|
|
|
|
|
|
|
|
|
# remove unpackaged files
|
|
|
|
|
rm -f %{buildroot}/%{_libdir}/*/*.la
|
|
|
|
|
rm -f %{buildroot}/%{_lib}/*/*.la
|
|
|
|
|
|
|
|
|
|
install -d -m0755 %{buildroot}/%{_localstatedir}/lib/bluetooth
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -fr %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Wed Jun 29 2011 Michael Scherer <misc@mandriva.org> 4.93-2mdv2011.0
|
|
|
|
|
+ Revision: 688284
|
|
|
|
|
- fix requires
|
|
|
|
|
|
|
|
|
|
* Mon May 16 2011 Funda Wang <fwang@mandriva.org> 4.93-1
|
|
|
|
|
+ Revision: 675047
|
|
|
|
|
- rediff systemd patch
|
|
|
|
|
- update to new version 4.93
|
|
|
|
|
|
|
|
|
|
* Tue Apr 26 2011 Funda Wang <fwang@mandriva.org> 4.92-1
|
|
|
|
|
+ Revision: 659081
|
|
|
|
|
- update to new version 4.92
|
|
|
|
|
|
|
|
|
|
* Sun Feb 27 2011 Funda Wang <fwang@mandriva.org> 4.88-2
|
|
|
|
|
+ Revision: 640205
|
|
|
|
|
- rebuild to obsolete old packages
|
|
|
|
|
|
|
|
|
|
* Sun Feb 20 2011 Andrey Borzenkov <arvidjaar@mandriva.org> 4.88-1
|
|
|
|
|
+ Revision: 638875
|
|
|
|
|
- new version (mdv#62516)
|
|
|
|
|
|
|
|
|
|
* Sun Jan 30 2011 Andrey Borzenkov <arvidjaar@mandriva.org> 4.79-2
|
|
|
|
|
+ Revision: 634124
|
|
|
|
|
- enable systemd support
|
|
|
|
|
- update P100: skip rules if systemd is active
|
|
|
|
|
- update P101: let bluetooth.target pull bluetooth.service by default
|
|
|
|
|
- do not install bluetooth.conf as org.bluez.service
|
|
|
|
|
- P101: systemd support
|
|
|
|
|
|
|
|
|
|
* Tue Nov 23 2010 Eugeni Dodonov <eugeni@mandriva.com> 4.79-1mdv2011.0
|
|
|
|
|
+ Revision: 600266
|
|
|
|
|
- Updated to 4.79.
|
|
|
|
|
|
|
|
|
|
* Fri Sep 24 2010 Funda Wang <fwang@mandriva.org> 4.72-1mdv2011.0
|
|
|
|
|
+ Revision: 580826
|
|
|
|
|
- new version 4.72
|
|
|
|
|
|
|
|
|
|
* Thu Sep 23 2010 Funda Wang <fwang@mandriva.org> 4.71-1mdv2011.0
|
|
|
|
|
+ Revision: 580748
|
|
|
|
|
- new version 4.71
|
|
|
|
|
|
|
|
|
|
* Sun Jul 18 2010 Emmanuel Andry <eandry@mandriva.org> 4.69-1mdv2011.0
|
|
|
|
|
+ Revision: 554841
|
|
|
|
|
- New version 4.69
|
|
|
|
|
|
|
|
|
|
* Sun Jul 11 2010 Emmanuel Andry <eandry@mandriva.org> 4.67-1mdv2011.0
|
|
|
|
|
+ Revision: 550676
|
|
|
|
|
- New version 4.67
|
|
|
|
|
|
|
|
|
|
* Thu Apr 29 2010 Emmanuel Andry <eandry@mandriva.org> 4.64-1mdv2010.1
|
|
|
|
|
+ Revision: 540970
|
|
|
|
|
- New version 4.64
|
|
|
|
|
|
|
|
|
|
* Fri Mar 26 2010 Emmanuel Andry <eandry@mandriva.org> 4.63-1mdv2010.1
|
|
|
|
|
+ Revision: 527760
|
|
|
|
|
- New version 4.63
|
|
|
|
|
|
|
|
|
|
* Wed Mar 10 2010 Emmanuel Andry <eandry@mandriva.org> 4.62-1mdv2010.1
|
|
|
|
|
+ Revision: 517486
|
|
|
|
|
- New version 4.62
|
|
|
|
|
|
|
|
|
|
* Fri Feb 19 2010 Emmanuel Andry <eandry@mandriva.org> 4.61-2mdv2010.1
|
|
|
|
|
+ Revision: 508471
|
|
|
|
|
- BR libcap-ng-devel
|
|
|
|
|
- enable capng
|
|
|
|
|
- don't package cups backend build wrapper, but the binary (#51320)
|
|
|
|
|
|
|
|
|
|
* Sat Feb 13 2010 Emmanuel Andry <eandry@mandriva.org> 4.61-1mdv2010.1
|
|
|
|
|
+ Revision: 505525
|
|
|
|
|
- New version 4.61
|
|
|
|
|
|
|
|
|
|
* Tue Jan 12 2010 Emmanuel Andry <eandry@mandriva.org> 4.60-1mdv2010.1
|
|
|
|
|
+ Revision: 490296
|
|
|
|
|
- New version 4.60
|
|
|
|
|
|
|
|
|
|
* Sat Dec 26 2009 Emmanuel Andry <eandry@mandriva.org> 4.59-1mdv2010.1
|
|
|
|
|
+ Revision: 482487
|
|
|
|
|
- New version 4.59
|
|
|
|
|
|
|
|
|
|
* Thu Nov 12 2009 Frederik Himpe <fhimpe@mandriva.org> 4.57-1mdv2010.1
|
|
|
|
|
+ Revision: 465516
|
|
|
|
|
- update to new version 4.57
|
|
|
|
|
|
|
|
|
|
* Sat Nov 07 2009 Frederik Himpe <fhimpe@mandriva.org> 4.56-1mdv2010.1
|
|
|
|
|
+ Revision: 462594
|
|
|
|
|
- update to new version 4.56
|
|
|
|
|
|
|
|
|
|
+ Andrey Borzenkov <arvidjaar@mandriva.org>
|
|
|
|
|
- no reason to install udev rules manually when Makefile does it
|
|
|
|
|
- enable hid2hci
|
|
|
|
|
- buildrequires udev-devel (for pkg-config)
|
|
|
|
|
|
|
|
|
|
* Fri Sep 25 2009 Frederik Himpe <fhimpe@mandriva.org> 4.54-1mdv2010.0
|
|
|
|
|
+ Revision: 449221
|
|
|
|
|
- update to new version 4.54
|
|
|
|
|
|
|
|
|
|
* Tue Sep 22 2009 Andrey Borzenkov <arvidjaar@mandriva.org> 4.53-3mdv2010.0
|
|
|
|
|
+ Revision: 447391
|
|
|
|
|
- do not install source11 as well - not needed now when source10 was removed
|
|
|
|
|
- fix udev rules install - all of them were copied from the same source file
|
|
|
|
|
|
|
|
|
|
* Sun Sep 20 2009 Andrey Borzenkov <arvidjaar@mandriva.org> 4.53-2mdv2010.0
|
|
|
|
|
+ Revision: 445609
|
|
|
|
|
- patch100: add {fail_event_on_error} to bluetoothd udev rule to make sure
|
|
|
|
|
it is retried later
|
|
|
|
|
- disable source10 (udev_bluetooth_helper). There are no bluetooth services
|
|
|
|
|
anymore; they are started from within udev rules
|
|
|
|
|
|
|
|
|
|
* Fri Sep 11 2009 Emmanuel Andry <eandry@mandriva.org> 4.53-1mdv2010.0
|
|
|
|
|
+ Revision: 438326
|
|
|
|
|
- New version 4.53
|
|
|
|
|
|
|
|
|
|
* Mon Sep 07 2009 Emmanuel Andry <eandry@mandriva.org> 4.52-1mdv2010.0
|
|
|
|
|
+ Revision: 432540
|
|
|
|
|
- New version 4.52
|
|
|
|
|
|
|
|
|
|
* Wed Aug 26 2009 Emmanuel Andry <eandry@mandriva.org> 4.50-1mdv2010.0
|
|
|
|
|
+ Revision: 421561
|
|
|
|
|
- New version 4.50
|
|
|
|
|
- drop P3 (not needed)
|
|
|
|
|
|
|
|
|
|
* Thu Aug 20 2009 Emmanuel Andry <eandry@mandriva.org> 4.48-2mdv2010.0
|
|
|
|
|
+ Revision: 418506
|
|
|
|
|
- Remove hid2hci calls, they're in udev now
|
|
|
|
|
|
|
|
|
|
* Wed Aug 19 2009 Emmanuel Andry <eandry@mandriva.org> 4.48-1mdv2010.0
|
|
|
|
|
+ Revision: 418001
|
|
|
|
|
- New version 4.48
|
|
|
|
|
?\195- update files list
|
|
|
|
|
|
|
|
|
|
* Sun Aug 02 2009 Emmanuel Andry <eandry@mandriva.org> 4.47-1mdv2010.0
|
|
|
|
|
+ Revision: 407555
|
|
|
|
|
- New version 4.47
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2009 Emmanuel Andry <eandry@mandriva.org> 4.46-3mdv2010.0
|
|
|
|
|
+ Revision: 402829
|
|
|
|
|
- fix init uninstallation
|
|
|
|
|
|
|
|
|
|
* Sun Jul 26 2009 Emmanuel Andry <eandry@mandriva.org> 4.46-2mdv2010.0
|
|
|
|
|
+ Revision: 400341
|
|
|
|
|
- remove init from previous version
|
|
|
|
|
|
|
|
|
|
* Sat Jul 25 2009 Emmanuel Andry <eandry@mandriva.org> 4.46-1mdv2010.0
|
|
|
|
|
+ Revision: 399809
|
|
|
|
|
- New version 4.46
|
|
|
|
|
- don't package initscripts, daemon is now handled with udev
|
|
|
|
|
- update files list
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed May 13 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.39-2mdv2010.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 375382
|
|
|
|
|
- Install alsa libs at the good place
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed May 13 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.39-1mdv2010.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 375351
|
|
|
|
|
- Update to version 4.39
|
|
|
|
|
|
|
|
|
|
* Wed Apr 22 2009 Frederic Crozat <fcrozat@mandriva.com> 4.33-3mdv2009.1
|
|
|
|
|
+ Revision: 368734
|
|
|
|
|
- Fix incorrect provides / requires which could prevent installation of main package
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sun Apr 05 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.33-2mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 364106
|
|
|
|
|
- Fix dbus file
|
|
|
|
|
|
|
|
|
|
+ Thierry Vignaud <tv@mandriva.org>
|
|
|
|
|
- do not make udev rules executable, there's no reason for doing so
|
|
|
|
|
|
|
|
|
|
* Tue Mar 17 2009 Emmanuel Andry <eandry@mandriva.org> 4.33-1mdv2009.1
|
|
|
|
|
+ Revision: 356929
|
|
|
|
|
- New version 4.33
|
|
|
|
|
|
|
|
|
|
* Tue Mar 03 2009 Emmanuel Andry <eandry@mandriva.org> 4.32-1mdv2009.1
|
|
|
|
|
+ Revision: 347744
|
|
|
|
|
- New version 4.32
|
|
|
|
|
|
|
|
|
|
* Fri Feb 27 2009 Emmanuel Andry <eandry@mandriva.org> 4.31-1mdv2009.1
|
|
|
|
|
+ Revision: 345705
|
|
|
|
|
- New version 4.31
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Feb 18 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.30-4mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 342549
|
|
|
|
|
- Bump release
|
|
|
|
|
- remove my debugs :/
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Feb 18 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.30-3mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 342533
|
|
|
|
|
- Fix communication of bluez/dbus
|
|
|
|
|
- package simple-agent ( discussed on bluez irc channel )
|
|
|
|
|
|
|
|
|
|
* Mon Feb 16 2009 Frederic Crozat <fcrozat@mandriva.com> 4.30-2mdv2009.1
|
|
|
|
|
+ Revision: 340927
|
|
|
|
|
- Fix gstreamer plugin install when bootstrapping package
|
|
|
|
|
- Fix installation path for gstreamer plugin
|
|
|
|
|
|
|
|
|
|
* Fri Feb 13 2009 Guillaume Bedot <littletux@mandriva.org> 4.30-1mdv2009.1
|
|
|
|
|
+ Revision: 340046
|
|
|
|
|
- New version 4.30
|
|
|
|
|
- fix mixed-use-of-spaces-and-tabs
|
|
|
|
|
|
|
|
|
|
* Wed Feb 11 2009 Emmanuel Andry <eandry@mandriva.org> 4.29-1mdv2009.1
|
|
|
|
|
+ Revision: 339582
|
|
|
|
|
- New version 4.29
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
+ Nicolas Lécureuil <nlecureuil@mandriva.com>
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- Add more config files
|
|
|
|
|
|
|
|
|
|
* Wed Feb 04 2009 Guillaume Rousse <guillomovitch@mandriva.org> 4.28-2mdv2009.1
|
|
|
|
|
+ Revision: 337217
|
|
|
|
|
- fix build with new libtool
|
|
|
|
|
- keep bash completion in its own package
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
+ Nicolas Lécureuil <nlecureuil@mandriva.com>
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New version 4.28
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Jan 19 2009 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.27-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 331191
|
|
|
|
|
- update to new version 4.27
|
|
|
|
|
|
|
|
|
|
* Wed Jan 07 2009 Emmanuel Andry <eandry@mandriva.org> 4.25-1mdv2009.1
|
|
|
|
|
+ Revision: 326910
|
|
|
|
|
- New version 4.25
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Thu Dec 11 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.22-2mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 312872
|
|
|
|
|
- Rebuild for missing package
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Dec 10 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.22-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 312464
|
|
|
|
|
- update to new version 4.22
|
|
|
|
|
|
|
|
|
|
* Mon Dec 01 2008 Frederic Crozat <fcrozat@mandriva.com> 4.17-3mdv2009.1
|
|
|
|
|
+ Revision: 308865
|
|
|
|
|
- Remove patch4, not needed anymore
|
|
|
|
|
|
|
|
|
|
* Mon Dec 01 2008 Frederic Crozat <fcrozat@mandriva.com> 4.17-2mdv2009.1
|
|
|
|
|
+ Revision: 308855
|
|
|
|
|
- No longer start passkey-agent when starting X session
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
+ Nicolas Lécureuil <nlecureuil@mandriva.com>
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- Own /var/lib/bluetooth
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sun Oct 26 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.17-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 297440
|
|
|
|
|
- update to new version 4.17
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Oct 22 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.16-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 296374
|
|
|
|
|
- update to new version 4.16
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sun Oct 19 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.14-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 295366
|
|
|
|
|
- Update to 4.14
|
|
|
|
|
- Remove wrong -s arg
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Oct 15 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.13-3mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 293903
|
|
|
|
|
- Fix File list
|
|
|
|
|
- Fix service files
|
|
|
|
|
- Provides bluez-utils as suggested by Adam
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Oct 15 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.13-2mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 293832
|
|
|
|
|
- More Obsoletes
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Fri Oct 10 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 4.13-1mdv2009.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 291621
|
|
|
|
|
- clean configure
|
|
|
|
|
Fix file list
|
|
|
|
|
Fix hidd install path
|
|
|
|
|
- Update to bluez 4.13
|
|
|
|
|
- Update to Bluez 4.11
|
|
|
|
|
Merge Bluez-utils ( + patches )
|
|
|
|
|
Obsoletes Bluez-utils
|
|
|
|
|
|
|
|
|
|
* Sat Aug 02 2008 Emmanuel Andry <eandry@mandriva.org> 3.36-1mdv2009.0
|
|
|
|
|
+ Revision: 260785
|
|
|
|
|
- New version
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Thu Jul 03 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.35-1mdv2009.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 231283
|
|
|
|
|
- New version
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sun Jun 29 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.34-1mdv2009.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 230082
|
|
|
|
|
- New version 3.34
|
|
|
|
|
|
|
|
|
|
+ Pixel <pixel@mandriva.com>
|
|
|
|
|
- do not call ldconfig in %%post/%%postun, it is now handled by filetriggers
|
|
|
|
|
|
|
|
|
|
* Tue Jun 03 2008 Funda Wang <fwang@mandriva.org> 3.32-1mdv2009.0
|
|
|
|
|
+ Revision: 214627
|
|
|
|
|
- update to new version 3.32
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Thu May 08 2008 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.31-1mdv2009.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 204512
|
|
|
|
|
- New version 3.31
|
|
|
|
|
|
|
|
|
|
* Thu Mar 06 2008 Frederic Crozat <fcrozat@mandriva.com> 3.28-1mdv2008.1
|
|
|
|
|
+ Revision: 180967
|
|
|
|
|
- Release 3.28
|
|
|
|
|
|
|
|
|
|
* Sun Feb 24 2008 Emmanuel Andry <eandry@mandriva.org> 3.27-1mdv2008.1
|
|
|
|
|
+ Revision: 174389
|
|
|
|
|
- New version
|
|
|
|
|
|
|
|
|
|
+ Thierry Vignaud <tv@mandriva.org>
|
|
|
|
|
- fix no-buildroot-tag
|
|
|
|
|
|
|
|
|
|
* Mon Feb 11 2008 Frederic Crozat <fcrozat@mandriva.com> 3.26-1mdv2008.1
|
|
|
|
|
+ Revision: 165112
|
|
|
|
|
-Release 3.26
|
|
|
|
|
|
|
|
|
|
* Sun Feb 03 2008 Emmanuel Andry <eandry@mandriva.org> 3.25-1mdv2008.1
|
|
|
|
|
+ Revision: 161743
|
|
|
|
|
- New version
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Dec 25 2007 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.24-1mdv2008.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 137802
|
|
|
|
|
- New bugfix release
|
|
|
|
|
|
|
|
|
|
* Thu Dec 20 2007 Adam Williamson <awilliamson@mandriva.org> 3.23-1mdv2008.1
|
|
|
|
|
+ Revision: 135962
|
|
|
|
|
- new license policy
|
|
|
|
|
- new release 3.23
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sat Nov 10 2007 Jérôme Soyer <saispo@mandriva.org> 3.22-1mdv2008.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 107312
|
|
|
|
|
- New release
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Oct 10 2007 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.20-1mdv2008.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 96915
|
|
|
|
|
- New version 3.20
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Aug 27 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.15-1mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 71793
|
|
|
|
|
- new release: 3.15
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Aug 15 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.14-6mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 63901
|
|
|
|
|
- bah
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Aug 15 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.14-5mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 63893
|
|
|
|
|
+ rebuild (emptylog)
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Aug 15 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.14-4mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 63839
|
|
|
|
|
- bah, fix path headers
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Aug 15 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.14-3mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 63827
|
|
|
|
|
- fix location of library
|
|
|
|
|
|
|
|
|
|
* Wed Aug 15 2007 Funda Wang <fwang@mandriva.org> 3.14-2mdv2008.0
|
|
|
|
|
+ Revision: 63671
|
|
|
|
|
- fix upgrading
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed Aug 15 2007 Per Ãyvind Karlsen <peroyvind@mandriva.org> 3.14-1mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 63509
|
2012-02-05 10:52:02 +00:00
|
|
|
|
- new release: 3.16
|
2012-02-01 14:28:20 +04:00
|
|
|
|
|
|
|
|
|
* Thu Aug 02 2007 Olivier Blin <oblin@mandriva.com> 3.13-1mdv2008.0
|
|
|
|
|
+ Revision: 58035
|
|
|
|
|
- drop pkgconfig buildrequires, it's required by rpm-mandriva-setup-build
|
|
|
|
|
- 3.13
|
|
|
|
|
|
|
|
|
|
* Fri May 25 2007 Guillaume Rousse <guillomovitch@mandriva.org> 3.11-1mdv2008.0
|
|
|
|
|
+ Revision: 31134
|
|
|
|
|
- new version
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Thu May 10 2007 Nicolas Lécureuil <nlecureuil@mandriva.com> 3.10-1mdv2008.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 26147
|
|
|
|
|
- New version 3.10
|
|
|
|
|
|
|
|
|
|
* Wed May 02 2007 Guillaume Rousse <guillomovitch@mandriva.org> 3.9-2mdv2008.0
|
|
|
|
|
+ Revision: 20512
|
|
|
|
|
- build requires pkg-config for proper pkgconfig automatic dependencies computation
|
|
|
|
|
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Jan 29 2007 Nicolas Lécureuil <neoclust@mandriva.org> 3.9-1mdv2007.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 114833
|
|
|
|
|
- New version 3.9
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Dec 26 2006 Nicolas Lécureuil <neoclust@mandriva.org> 3.8-2mdv2007.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 102080
|
|
|
|
|
-x Rebuild
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Dec 25 2006 Nicolas Lécureuil <neoclust@mandriva.org> 3.8-1mdv2007.1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
+ Revision: 102036
|
|
|
|
|
- New Version 3.8
|
|
|
|
|
- New release 3.7
|
|
|
|
|
- bluez-3.4-2mdv2007.0
|
|
|
|
|
- Fix rpmlint warnings
|
|
|
|
|
- Import bluez
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sun Aug 27 2006 Nicolas Lécureuil <neoclust@mandriva.org> 3.4-1mdv2007.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 3.4
|
|
|
|
|
|
|
|
|
|
* Mon Aug 14 2006 Austin Acton <austin@mandriva.org> 3.2-1mdv2007.0
|
|
|
|
|
- 3.2
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Jun 19 2006 Nicolas Lécureuil <neoclust@mandriva.org> 3.1-1
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 3.1
|
|
|
|
|
|
|
|
|
|
* Wed Jun 14 2006 Frederic Crozat <fcrozat@mandriva.com> 3.0-2mdv2007.0
|
|
|
|
|
- Fix major
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Jun 13 2006 Nicolas Lécureuil <neoclust@mandriva.org> 3.0-1mdv2007.0
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 3.0
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Thu Jan 19 2006 Nicolas Lécureuil <neoclust@mandriva.org> 2.25-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.25
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sat Dec 24 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.24-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.24
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Mon Dec 12 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.23-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.23
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Nov 01 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.22-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.22
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Oct 04 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.21-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.21
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Aug 09 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.19-3mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- Revert previous changes
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Aug 09 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.19-2mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- Cosmetics
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Aug 09 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.19-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.19
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Tue Jul 05 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.18-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.18
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Wed May 11 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.17-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- New release 2.17
|
|
|
|
|
- Drop P0 ( Merged upstream )
|
|
|
|
|
|
|
|
|
|
* Tue May 10 2005 Pascal Terjan <pterjan@mandriva.org> 2.16-2mdk
|
|
|
|
|
- include stdio in bluetooth.h (P0)
|
|
|
|
|
|
2012-05-01 10:41:01 +04:00
|
|
|
|
* Sat Apr 30 2005 Nicolas Lécureuil <neoclust@mandriva.org> 2.16-1mdk
|
2012-02-01 14:28:20 +04:00
|
|
|
|
- 2.16
|
|
|
|
|
- Drop Patch0 ( Merged upstream )
|
|
|
|
|
|
|
|
|
|
* Thu Jan 27 2005 Frederic Crozat <fcrozat@mandrakesoft.com> 2.14-2mdk
|
|
|
|
|
- Patch0 (CVS): add removed calls needed by libbtctl
|
|
|
|
|
|
|
|
|
|
* Sat Jan 15 2005 Austin Acton <austin@mandrake.org> 2.14-1mdk
|
|
|
|
|
- 2.14
|
|
|
|
|
- fix summaries
|
|
|
|
|
- add automake macro
|
|
|
|
|
|
|
|
|
|
* Wed Sep 22 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 2.10-1mdk
|
|
|
|
|
- Release 2.10
|
|
|
|
|
- Move to /%%{_lib}, needed for initscript
|
|
|
|
|
|
|
|
|
|
* Fri Aug 13 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 2.9-1mdk
|
|
|
|
|
- Release 2.9
|
|
|
|
|
|
|
|
|
|
* Sun Jul 18 2004 Austin Acton <austin@mandrake.org> 2.8-1mdk
|
|
|
|
|
- 2.8
|
|
|
|
|
- add pkgconfig file
|
|
|
|
|
|
|
|
|
|
* Fri May 14 2004 Austin Acton <austin@mandrake.org> 2.7-1mdk
|
|
|
|
|
- 2.7
|
|
|
|
|
- configure 2.5
|
|
|
|
|
|
|
|
|
|
* Sun May 02 2004 Arnaud de Lorbeau <adelorbeau@mandrakesoft.com> 2.6-2mdk
|
|
|
|
|
- Obsoletes bluez-sdp libs
|
|
|
|
|
|
|
|
|
|
* Sat May 01 2004 Arnaud de Lorbeau <adelorbeau@mandrakesoft.com> 2.6-1mdk
|
|
|
|
|
- 2.6
|
|
|
|
|
|