rpms/bluez/devel .cvsignore, 1.48, 1.49 0001-Add-sixaxis-cable-pairing-plugin.patch, 1.5, 1.6 bluez.spec, 1.98, 1.99 sources, 1.48, 1.49

Bastien Nocera hadess at fedoraproject.org
Mon Oct 5 10:01:03 UTC 2009


Author: hadess

Update of /cvs/pkgs/rpms/bluez/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24306

Modified Files:
	.cvsignore 0001-Add-sixaxis-cable-pairing-plugin.patch 
	bluez.spec sources 
Log Message:
* Mon Oct 05 2009 Bastien Nocera <bnocera at redhat.com> 4.55-1
- Update to 4.55
- Add libcap-ng support to drop capabilities (#517660)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/.cvsignore,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -p -r1.48 -r1.49
--- .cvsignore	24 Sep 2009 21:56:50 -0000	1.48
+++ .cvsignore	5 Oct 2009 10:01:02 -0000	1.49
@@ -1 +1 @@
-bluez-4.54.tar.gz
+bluez-4.55.tar.gz

0001-Add-sixaxis-cable-pairing-plugin.patch:
 Makefile.am     |    9 +
 acinclude.m4    |   16 ++
 configure.ac    |    1 
 plugins/cable.c |  363 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 4 files changed, 388 insertions(+), 1 deletion(-)

Index: 0001-Add-sixaxis-cable-pairing-plugin.patch
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/0001-Add-sixaxis-cable-pairing-plugin.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- 0001-Add-sixaxis-cable-pairing-plugin.patch	16 Sep 2009 10:07:26 -0000	1.5
+++ 0001-Add-sixaxis-cable-pairing-plugin.patch	5 Oct 2009 10:01:03 -0000	1.6
@@ -1,4 +1,4 @@
-From 0cb2225079979cc3c85c02a981ebad7742c1ff72 Mon Sep 17 00:00:00 2001
+From df50f89ea8967fa0ba0d21aac0ce905801d31c70 Mon Sep 17 00:00:00 2001
 From: Bastien Nocera <hadess at hadess.net>
 Date: Tue, 1 Sep 2009 17:32:48 +0100
 Subject: [PATCH] Add sixaxis cable-pairing plugin
@@ -18,7 +18,7 @@ address, and added to the database of th
  create mode 100644 plugins/cable.c
 
 diff --git a/Makefile.am b/Makefile.am
-index 09eb7ec..ad6fe25 100644
+index c8337d6..0bdf694 100644
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -162,6 +162,15 @@ builtin_modules += service
@@ -38,7 +38,7 @@ index 09eb7ec..ad6fe25 100644
  builtin_sources += plugins/hciops.c
  
 diff --git a/acinclude.m4 b/acinclude.m4
-index 44f7c72..465fb67 100644
+index e7d1c32..3feddf8 100644
 --- a/acinclude.m4
 +++ b/acinclude.m4
 @@ -142,6 +142,12 @@ AC_DEFUN([AC_PATH_USB], [
@@ -54,7 +54,7 @@ index 44f7c72..465fb67 100644
  AC_DEFUN([AC_PATH_NETLINK], [
  	PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no)
  	AC_SUBST(NETLINK_CFLAGS)
-@@ -163,6 +169,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+@@ -170,6 +176,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
  	netlink_enable=no
  	hal_enable=${hal_found}
  	usb_enable=${usb_found}
@@ -62,7 +62,7 @@ index 44f7c72..465fb67 100644
  	alsa_enable=${alsa_found}
  	gstreamer_enable=${gstreamer_found}
  	audio_enable=yes
-@@ -228,6 +235,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+@@ -239,6 +246,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
  		usb_enable=${enableval}
  	])
  
@@ -73,8 +73,8 @@ index 44f7c72..465fb67 100644
  	AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [
  		netlink_enable=${enableval}
  	])
-@@ -311,6 +322,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
- 		AC_DEFINE(HAVE_LIBUSB, 1, [Define to 1 if you have USB library.])
+@@ -326,6 +337,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+ 		AC_DEFINE(HAVE_CAPNG, 1, [Define to 1 if you have capabilities library.])
  	fi
  
 +	if (test "${cable_enable}" = "yes" && test "${cable_found}" = "yes"); then
@@ -84,14 +84,14 @@ index 44f7c72..465fb67 100644
  	AM_CONDITIONAL(SNDFILE, test "${sndfile_enable}" = "yes" && test "${sndfile_found}" = "yes")
  	AM_CONDITIONAL(NETLINK, test "${netlink_enable}" = "yes" && test "${netlink_found}" = "yes")
  	AM_CONDITIONAL(USB, test "${usb_enable}" = "yes" && test "${usb_found}" = "yes")
-@@ -335,4 +350,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+@@ -350,4 +365,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
  	AM_CONDITIONAL(DFUTOOL, test "${dfutool_enable}" = "yes" && test "${usb_found}" = "yes")
  	AM_CONDITIONAL(UDEVRULES, test "${udevrules_enable}" = "yes")
  	AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes")
 +	AM_CONDITIONAL(CABLE, test "${cable_enable}" = "yes" && test "${cable_found}" = "yes")
  ])
 diff --git a/configure.ac b/configure.ac
-index 9e5279d..8b17659 100644
+index b93cca0..5df134f 100644
 --- a/configure.ac
 +++ b/configure.ac
 @@ -40,6 +40,7 @@ AC_PATH_GLIB
@@ -101,7 +101,7 @@ index 9e5279d..8b17659 100644
 +AC_PATH_CABLE
  AC_PATH_NETLINK
  AC_PATH_SNDFILE
- 
+ AC_PATH_CAPNG
 diff --git a/plugins/cable.c b/plugins/cable.c
 new file mode 100644
 index 0000000..6e81ba0
@@ -471,5 +471,5 @@ index 0000000..6e81ba0
 +BLUETOOTH_PLUGIN_DEFINE(cable, VERSION,
 +			BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, cable_init, cable_exit)
 -- 
-1.6.2.5
+1.6.4.4
 


Index: bluez.spec
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -p -r1.98 -r1.99
--- bluez.spec	24 Sep 2009 21:56:51 -0000	1.98
+++ bluez.spec	5 Oct 2009 10:01:03 -0000	1.99
@@ -1,6 +1,6 @@
 Summary: Bluetooth utilities
 Name: bluez
-Version: 4.54
+Version: 4.55
 Release: 1%{?dist}
 License: GPLv2+
 Group: Applications/System
@@ -32,6 +32,7 @@ BuildRequires: dbus-devel >= 0.90
 BuildRequires: libusb-devel, glib2-devel, alsa-lib-devel
 BuildRequires: gstreamer-plugins-base-devel, gstreamer-devel
 BuildRequires: libsndfile-devel
+BuildRequires: libcap-ng-devel
 # For cable pairing
 BuildRequires: libgudev-devel 
 %ifnarch s390 s390x
@@ -271,6 +272,10 @@ fi
 %config(noreplace) %{_sysconfdir}/sysconfig/pand
 
 %changelog
+* Mon Oct 05 2009 Bastien Nocera <bnocera at redhat.com> 4.55-1
+- Update to 4.55
+- Add libcap-ng support to drop capabilities (#517660)
+
 * Thu Sep 24 2009 Bastien Nocera <bnocera at redhat.com> 4.54-1
 - Update to 4.54
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/sources,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -p -r1.48 -r1.49
--- sources	24 Sep 2009 21:56:51 -0000	1.48
+++ sources	5 Oct 2009 10:01:03 -0000	1.49
@@ -1 +1 @@
-a2d5a88fb1058f2b0422bfcce335b3a2  bluez-4.54.tar.gz
+febbbbb512eb5ed9c28aa8008ae952a7  bluez-4.55.tar.gz




More information about the fedora-extras-commits mailing list