forked from pool/bluez
Accepting request 18609 from Base:System
Copy from Base:System/bluez based on submit request 18609 from user seife OBS-URL: https://build.opensuse.org/request/show/18609 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bluez?expand=0&rev=40
This commit is contained in:
parent
663a18fcdc
commit
ced641de49
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7b325d089043759e70825047383d21f6ca147973f849ce1c645ea06f272c58e
|
||||
size 845372
|
3
bluez-4.50.tar.bz2
Normal file
3
bluez-4.50.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f862bd9f2bd1f292b6651093b6059fd5016400b2d4a329397f4271fee8ff73e6
|
||||
size 774004
|
41
bluez-coldplug.init
Normal file
41
bluez-coldplug.init
Normal file
@ -0,0 +1,41 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# /etc/init.d/bluez-coldplug
|
||||
#
|
||||
# Copyright (c) 2009, SUSE Linux Products GmbH Nuernberg, Germany. All rights reserved.
|
||||
#
|
||||
#
|
||||
### BEGIN INIT INFO
|
||||
# Provides: bluez-coldplug
|
||||
# Required-Start: dbus $remote_fs
|
||||
# Should-Start: $network $syslog
|
||||
# Required-Stop: $null
|
||||
# Should-Stop: $null
|
||||
# Default-Start: 2 3 5
|
||||
# Default-Stop:
|
||||
# Description: handles udev coldplug of bluetooth dongles
|
||||
### END INIT INFO
|
||||
|
||||
. /etc/rc.status
|
||||
|
||||
case "$1" in
|
||||
start|restart|try-restart)
|
||||
udevadm trigger --subsystem-match=bluetooth
|
||||
rc_status -v
|
||||
;;
|
||||
stop)
|
||||
rc_status -v
|
||||
;;
|
||||
force-reload|reload)
|
||||
rc_status -v
|
||||
;;
|
||||
status)
|
||||
rc_status -v
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0" \
|
||||
"{start|stop|status|try-restart|restart|force-reload|reload}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
rc_exit
|
@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 25 07:35:04 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.50:
|
||||
- Fix various build issues
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 24 14:57:50 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.49:
|
||||
- Add simple test program for basic GAP testing.
|
||||
- Add support for confirmation requests to agent example.
|
||||
- Add support for full non-recursive build.
|
||||
- Add five millisecond delay for Simple Pairing auto-accept.
|
||||
- Fix Class of Device setting when InitiallyPowered=false.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 23 00:46:19 CEST 2009 - seife@suse.de
|
||||
|
||||
- fix init script LSB tags
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 20 18:07:48 CEST 2009 - seife@suse.de
|
||||
|
||||
- try to fix enablement of the coldplug init script
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 19 15:32:37 CEST 2009 - seife@suse.de
|
||||
|
||||
- add init script so that coldplugging works again (bnc#527856)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 17 09:00:05 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.48:
|
||||
- Add library function for comparing UUID values.
|
||||
- Add support for creating all plugins as builtins.
|
||||
- Add support for async handling of service class changes.
|
||||
- Add support for source interface to audio IPC.
|
||||
- Fix device name settings when device is off or down.
|
||||
- Fix issue with enabled SCO server when not necessary.
|
||||
- Fix missing D-Bus access policy for CUPS backend.
|
||||
- Fix discovery results of CUPS backend.
|
||||
- Fix initialization handling of Maemo telephony.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 3 09:32:48 CEST 2009 - seife@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package bluez-gstreamer (Version 4.47)
|
||||
# spec file for package bluez-gstreamer (Version 4.50)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -24,7 +24,7 @@ BuildRequires: glib2-devel libnl-devel libusb-devel
|
||||
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
||||
BuildRequires: gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel
|
||||
Url: http://www.bluez.org
|
||||
Version: 4.47
|
||||
Version: 4.50
|
||||
Release: 1
|
||||
Summary: Bluetooth Sound Support
|
||||
Group: Productivity/Multimedia/Sound/Utilities
|
||||
|
@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 25 07:35:04 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.50:
|
||||
- Fix various build issues
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 24 14:57:50 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.49:
|
||||
- Add simple test program for basic GAP testing.
|
||||
- Add support for confirmation requests to agent example.
|
||||
- Add support for full non-recursive build.
|
||||
- Add five millisecond delay for Simple Pairing auto-accept.
|
||||
- Fix Class of Device setting when InitiallyPowered=false.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 23 00:46:19 CEST 2009 - seife@suse.de
|
||||
|
||||
- fix init script LSB tags
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 20 18:07:48 CEST 2009 - seife@suse.de
|
||||
|
||||
- try to fix enablement of the coldplug init script
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 19 15:32:37 CEST 2009 - seife@suse.de
|
||||
|
||||
- add init script so that coldplugging works again (bnc#527856)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 17 09:00:05 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.48:
|
||||
- Add library function for comparing UUID values.
|
||||
- Add support for creating all plugins as builtins.
|
||||
- Add support for async handling of service class changes.
|
||||
- Add support for source interface to audio IPC.
|
||||
- Fix device name settings when device is off or down.
|
||||
- Fix issue with enabled SCO server when not necessary.
|
||||
- Fix missing D-Bus access policy for CUPS backend.
|
||||
- Fix discovery results of CUPS backend.
|
||||
- Fix initialization handling of Maemo telephony.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 3 09:32:48 CEST 2009 - seife@suse.de
|
||||
|
||||
|
16
bluez.spec
16
bluez.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package bluez (Version 4.47)
|
||||
# spec file for package bluez (Version 4.50)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -23,7 +23,7 @@ BuildRequires: dbus-1-devel flex
|
||||
BuildRequires: glib2-devel libnl-devel libusb-devel
|
||||
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
||||
Url: http://www.bluez.org
|
||||
Version: 4.47
|
||||
Version: 4.50
|
||||
Release: 1
|
||||
Summary: Bluetooth Stack for Linux
|
||||
Group: Hardware/Mobile
|
||||
@ -31,6 +31,7 @@ License: GPL v2 or later
|
||||
Group: Hardware/Mobile
|
||||
AutoReqProv: on
|
||||
Source: http://www.kernel.org/pub/linux/bluetooth/bluez-%{version}.tar.bz2
|
||||
Source2: bluez-coldplug.init
|
||||
Source3: bluetooth.sysconfig
|
||||
Source4: bluetooth.sh
|
||||
Source6: README.SUSE
|
||||
@ -218,18 +219,22 @@ cd ..
|
||||
rm -v $RPM_BUILD_ROOT/%{_libdir}/bluetooth/plugins/*.la $RPM_BUILD_ROOT/%{_libdir}/libbluetooth.la
|
||||
rm -rvf $RPM_BUILD_ROOT/%{_libdir}/gstreamer-*
|
||||
rm -v $RPM_BUILD_ROOT/%{_libdir}/alsa-lib/*.la
|
||||
install --mode=0755 -D %{S:2} $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/bluez-coldplug
|
||||
install --mode=0644 -D %{S:3} $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.bluetooth
|
||||
install --mode=0755 -D %{S:4} $RPM_BUILD_ROOT/lib/udev/bluetooth.sh
|
||||
install --mode=0644 -D %{S:7} $RPM_BUILD_ROOT/%{_sysconfdir}/modprobe.d/50-bluetooth.conf
|
||||
rm -v $RPM_BUILD_ROOT/%{_mandir}/man1/dfubabel.1*
|
||||
rm -v $RPM_BUILD_ROOT/%{_mandir}/man8/avctrl.8*
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%{fillup_only -n bluetooth}
|
||||
%{insserv_force_if_yast bluez-coldplug}
|
||||
|
||||
%preun
|
||||
%stop_on_removal bluetooth
|
||||
%stop_on_removal bluez-coldplug
|
||||
|
||||
%postun
|
||||
%{insserv_cleanup}
|
||||
@ -258,13 +263,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%dir %{_sysconfdir}/udev/rules.d
|
||||
%config %{_sysconfdir}/udev/rules.d/*
|
||||
%endif
|
||||
%{_sysconfdir}/init.d/bluez-coldplug
|
||||
%dir %{_libdir}/bluetooth
|
||||
%dir %{_libdir}/bluetooth/plugins
|
||||
%{_libdir}/bluetooth/plugins/audio.so
|
||||
%{_libdir}/bluetooth/plugins/input.so
|
||||
%{_libdir}/bluetooth/plugins/netlink.so
|
||||
%{_libdir}/bluetooth/plugins/network.so
|
||||
%{_libdir}/bluetooth/plugins/serial.so
|
||||
%doc %{_mandir}/man8/hciattach.8.gz
|
||||
%doc %{_mandir}/man8/hciconfig.8.gz
|
||||
#%doc %{_mandir}/man5/hcid.conf.5.gz
|
||||
|
Loading…
Reference in New Issue
Block a user