rpms/bluez/devel .cvsignore, 1.37, 1.38 0001-Add-sixaxis-cable-pairing-plugin.patch, 1.2, 1.3 bluez-try-utf8-harder.patch, 1.1, 1.2 bluez.spec, 1.75, 1.76 sources, 1.37, 1.38 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch, 1.2, NONE

Bastien Nocera hadess at fedoraproject.org
Fri Jul 3 11:24:12 UTC 2009


Author: hadess

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

Modified Files:
	.cvsignore 0001-Add-sixaxis-cable-pairing-plugin.patch 
	bluez-try-utf8-harder.patch bluez.spec sources 
Removed Files:
	0001-Add-udev-rules-to-start-bluetooth-on-demand.patch 
Log Message:
* Fri Jul 03 2009 Bastien Nocera <bnocera at redhat.com> 4.43-1
- Update to 4.43


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/.cvsignore,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -p -r1.37 -r1.38
--- .cvsignore	21 Jun 2009 13:43:32 -0000	1.37
+++ .cvsignore	3 Jul 2009 11:24:08 -0000	1.38
@@ -1 +1 @@
-bluez-4.42.tar.gz
+bluez-4.43.tar.gz

0001-Add-sixaxis-cable-pairing-plugin.patch:

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.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- 0001-Add-sixaxis-cable-pairing-plugin.patch	29 Jun 2009 14:51:49 -0000	1.2
+++ 0001-Add-sixaxis-cable-pairing-plugin.patch	3 Jul 2009 11:24:10 -0000	1.3
@@ -17,59 +17,6 @@ address, and added to the database of th
  4 files changed, 388 insertions(+), 1 deletions(-)
  create mode 100644 plugins/cable.c
 
-diff --git a/acinclude.m4 b/acinclude.m4
-index eb7cdeb..dac1120 100644
---- a/acinclude.m4
-+++ b/acinclude.m4
-@@ -159,6 +159,12 @@ AC_DEFUN([AC_PATH_USB], [
- 			[Define to 1 if you need the usb_interrupt_read() function.]))
- ])
- 
-+AC_DEFUN([AC_PATH_CABLE], [
-+	PKG_CHECK_MODULES(CABLE, gudev-1.0 libusb-1.0, cable_found=yes, cable_found=no)
-+	AC_SUBST(CABLE_CFLAGS)
-+	AC_SUBST(CABLE_LIBS)
-+])
-+
- AC_DEFUN([AC_PATH_NETLINK], [
- 	PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no)
- 	AC_SUBST(NETLINK_CFLAGS)
-@@ -179,6 +185,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
- 	netlink_enable=no
- 	hal_enable=${hal_found}
- 	usb_enable=${usb_found}
-+	cable_enable=${cable_found}
- 	alsa_enable=${alsa_found}
- 	gstreamer_enable=${gstreamer_found}
- 	audio_enable=yes
-@@ -241,6 +248,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
- 		usb_enable=${enableval}
- 	])
- 
-+	AC_ARG_ENABLE(cable, AC_HELP_STRING([--enable-cable], [enable DeviceKit support]), [
-+		cable_enable=${enableval}
-+	])
-+
- 	AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [
- 		netlink_enable=${enableval}
- 	])
-@@ -324,6 +335,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
- 		AC_DEFINE(HAVE_LIBUSB, 1, [Define to 1 if you have USB library.])
- 	fi
- 
-+	if (test "${cable_enable}" = "yes" && test "${cable_found}" = "yes"); then
-+		AC_DEFINE(HAVE_CABLE, 1, [Define to 1 if you have libcable.])
-+	fi
-+
- 	AC_SUBST([BLUEZ_CFLAGS], ['-I$(top_builddir)/include'])
- 	AC_SUBST([BLUEZ_LIBS], ['$(top_builddir)/lib/libbluetooth.la'])
- 
-@@ -357,4 +372,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
- 	AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes")
- 	AM_CONDITIONAL(INITSCRIPTS, test "${initscripts_enable}" = "yes")
- 	AM_CONDITIONAL(PCMCIARULES, test "${pcmciarules_enable}" = "yes")
-+	AM_CONDITIONAL(CABLE, test "${cable_enable}" = "yes" && test "${cable_found}" = "yes")
- ])
 diff --git a/configure.ac b/configure.ac
 index 1686d18..339d45c 100644
 --- a/configure.ac
@@ -502,3 +449,54 @@ index 0000000..9f24b55
 -- 
 1.6.0.6
 
+--- bluez-4.43.old/acinclude.m4	2009-07-02 23:43:14.000000000 +0100
++++ bluez-4.43/acinclude.m4	2009-07-03 12:18:46.000000000 +0100
+@@ -162,6 +162,12 @@ AC_DEFUN([AC_PATH_USB], [
+ 			[Define to 1 if you need the usb_interrupt_read() function.]))
+ ])
+ 
++AC_DEFUN([AC_PATH_CABLE], [
++	PKG_CHECK_MODULES(CABLE, gudev-1.0 libusb-1.0, cable_found=yes, cable_found=no)
++	AC_SUBST(CABLE_CFLAGS)
++	AC_SUBST(CABLE_LIBS)
++])
++
+ AC_DEFUN([AC_PATH_NETLINK], [
+ 	PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no)
+ 	AC_SUBST(NETLINK_CFLAGS)
+@@ -182,6 +188,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+ 	netlink_enable=no
+ 	hal_enable=${hal_found}
+ 	usb_enable=${usb_found}
++	cable_enable=${cable_found}
+ 	alsa_enable=${alsa_found}
+ 	gstreamer_enable=${gstreamer_found}
+ 	audio_enable=yes
+@@ -244,6 +251,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+ 		usb_enable=${enableval}
+ 	])
+ 
++	AC_ARG_ENABLE(cable, AC_HELP_STRING([--enable-cable], [enable DeviceKit support]), [
++		cable_enable=${enableval}
++	])
++
+ 	AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [
+ 		netlink_enable=${enableval}
+ 	])
+@@ -327,6 +338,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+ 		AC_DEFINE(HAVE_LIBUSB, 1, [Define to 1 if you have USB library.])
+ 	fi
+ 
++	if (test "${cable_enable}" = "yes" && test "${cable_found}" = "yes"); then
++		AC_DEFINE(HAVE_CABLE, 1, [Define to 1 if you have libcable.])
++	fi
++
+ 	AC_SUBST([BLUEZ_CFLAGS], ['-I$(top_builddir)/include'])
+ 	AC_SUBST([BLUEZ_LIBS], ['$(top_builddir)/lib/libbluetooth.la'])
+ 
+@@ -360,4 +375,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
+ 	AM_CONDITIONAL(MANPAGES, test "${manpages_enable}" = "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")
+ ])

bluez-try-utf8-harder.patch:

Index: bluez-try-utf8-harder.patch
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/bluez-try-utf8-harder.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- bluez-try-utf8-harder.patch	5 Mar 2009 18:53:13 -0000	1.1
+++ bluez-try-utf8-harder.patch	3 Jul 2009 11:24:10 -0000	1.2
@@ -1,9 +1,9 @@
 diff --git a/src/security.c b/src/security.c
-index a61d75f..75908ba 100644
+index 905cf61..67fd266 100644
 --- a/src/security.c
 +++ b/src/security.c
-@@ -600,8 +600,16 @@ static inline void remote_name_information(int dev, bdaddr_t *sba, void *ptr)
- 		memcpy(name, evt->name, 248);
+@@ -705,8 +705,16 @@ static inline void remote_name_information(int dev, bdaddr_t *sba, void *ptr)
+ 		memcpy(name, evt->name, MAX_NAME_LENGTH);
  		/* It's ok to cast end between const and non-const since
  		 * we know it points to inside of name which is non-const */
 -		if (!g_utf8_validate(name, -1, (const char **) &end))


Index: bluez.spec
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -p -r1.75 -r1.76
--- bluez.spec	21 Jun 2009 23:01:22 -0000	1.75
+++ bluez.spec	3 Jul 2009 11:24:10 -0000	1.76
@@ -1,7 +1,7 @@
 Summary: Bluetooth utilities
 Name: bluez
-Version: 4.42
-Release: 2%{?dist}
+Version: 4.43
+Release: 1%{?dist}
 License: GPLv2+
 Group: Applications/System
 Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
@@ -24,8 +24,6 @@ Patch3: bluez-activate-wacom-mode2.patch
 Patch4: bluez-socket-mobile-cf-connection-kit.patch
 # http://thread.gmane.org/gmane.linux.bluez.kernel/2396
 Patch5: 0001-Add-sixaxis-cable-pairing-plugin.patch
-# http://thread.gmane.org/gmane.linux.bluez.kernel/2579
-Patch6: 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 URL: http://www.bluez.org/
@@ -131,7 +129,6 @@ This includes hidd, dund and pand.
 %patch3 -p1 -b .wacom
 %patch4 -p1 -b .socket-mobile
 %patch5 -p1 -b .cable-pairing
-%patch6 -p1 -b .udev
 
 %build
 libtoolize -f -c
@@ -272,6 +269,9 @@ fi
 %config(noreplace) %{_sysconfdir}/sysconfig/pand
 
 %changelog
+* Fri Jul 03 2009 Bastien Nocera <bnocera at redhat.com> 4.43-1
+- Update to 4.43
+
 * Sun Jun 21 2009 Bastien Nocera <bnocera at redhat.com> 4.42-2
 - Update to 4.42
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/bluez/devel/sources,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -p -r1.37 -r1.38
--- sources	21 Jun 2009 13:43:33 -0000	1.37
+++ sources	3 Jul 2009 11:24:11 -0000	1.38
@@ -1 +1 @@
-d24dfd3ca42847123e29f58b29af6948  bluez-4.42.tar.gz
+eee7f54a06f77d009c9938a653283171  bluez-4.43.tar.gz


--- 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch DELETED ---




More information about the scm-commits mailing list