[arch-commits] Commit in bluez/repos (6 files)

2017-09-14 Thread Andreas Radke
Date: Thursday, September 14, 2017 @ 12:14:57
  Author: andyrtr
Revision: 305548

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 305547, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 305547, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 305547, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 305547, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  141 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  141 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 288 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 305547, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-14 12:14:57 UTC (rev 305548)
@@ -0,0 +1,141 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.47
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('cf75bf7cd5d564f21cc4a2bd01d5c39ce425397335fd47d9bbe43af0a58342c8'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check || /bin/true # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   install-pkgconfigDATA
+}
+
+package_bluez-cups() {
+  pkgdesc="CUPS printer backend 

[arch-commits] Commit in bluez/repos (6 files)

2017-07-28 Thread Andreas Radke
Date: Friday, July 28, 2017 @ 21:03:51
  Author: andyrtr
Revision: 301345

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 301344, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 301344, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 301344, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 301344, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  141 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  141 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 288 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 301344, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-07-28 21:03:51 UTC (rev 301345)
@@ -0,0 +1,141 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.46
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('ddab3d3837c1afb8ae228a94ba17709a4650bd4db24211b6771ab735c8908e28'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   install-pkgconfigDATA
+}
+
+package_bluez-cups() {
+  pkgdesc="CUPS printer backend for Bluetooth printers"
+  depends=('cups')
+
+  cd ${pkgbase}-${pkgver}

[arch-commits] Commit in bluez/repos (6 files)

2017-05-05 Thread Andreas Radke
Date: Friday, May 5, 2017 @ 12:30:28
  Author: andyrtr
Revision: 295322

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 295321, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 295321, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 295321, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 295321, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  141 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  141 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 288 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 295321, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-05 12:30:28 UTC (rev 295322)
@@ -0,0 +1,141 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.45
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('4cacb00703a6bc149cb09502257d321597d43952374a16f3558766ffa85364e9'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   install-pkgconfigDATA
+}
+
+package_bluez-cups() {
+  pkgdesc="CUPS printer backend for Bluetooth printers"
+  depends=('cups')
+
+  cd ${pkgbase}-${pkgver}
+  

[arch-commits] Commit in bluez/repos (6 files)

2017-02-27 Thread Andreas Radke
Date: Monday, February 27, 2017 @ 16:49:43
  Author: andyrtr
Revision: 289627

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 289626, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 289626, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 289626, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 289626, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  141 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  141 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 288 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 289626, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-02-27 16:49:43 UTC (rev 289627)
@@ -0,0 +1,141 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.44
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('0c321e291f8b45e6a78e379dfe80592b65955a0f0ab191f1cca0edd8ec356c85'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   install-pkgconfigDATA
+}
+
+package_bluez-cups() {
+  pkgdesc="CUPS printer backend for Bluetooth printers"
+  depends=('cups')
+
+  cd 

[arch-commits] Commit in bluez/repos (6 files)

2016-11-06 Thread Evangelos Foutras
Date: Monday, November 7, 2016 @ 00:46:45
  Author: foutrelis
Revision: 279997

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  bluez/repos/staging-i686/
  bluez/repos/staging-i686/PKGBUILD
(from rev 279996, bluez/trunk/PKGBUILD)
  bluez/repos/staging-i686/bluetooth.modprobe
(from rev 279996, bluez/trunk/bluetooth.modprobe)
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 279996, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.modprobe
(from rev 279996, bluez/trunk/bluetooth.modprobe)

---+
 staging-i686/PKGBUILD |  143 
 staging-i686/bluetooth.modprobe   |3 
 staging-x86_64/PKGBUILD   |  143 
 staging-x86_64/bluetooth.modprobe |3 
 4 files changed, 292 insertions(+)

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 279996, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-07 00:46:45 UTC (rev 279997)
@@ -0,0 +1,143 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.43
+pkgrel=2
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('16c9c05d2a1da644ce3570d975ada3643d2e60c007a955bac09c0a0efeb58d15'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  # add gatttool usefulbdaddr with Bluetooth 4.0LE 
+  install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/attrib/gatttool 
${pkgdir}/usr/bin/gatttool
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   

[arch-commits] Commit in bluez/repos (6 files)

2016-10-28 Thread Andreas Radke
Date: Friday, October 28, 2016 @ 17:33:53
  Author: andyrtr
Revision: 279394

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 279393, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 279393, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 279393, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 279393, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  143 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  143 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 292 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 279393, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-28 17:33:53 UTC (rev 279394)
@@ -0,0 +1,143 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.43
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('16c9c05d2a1da644ce3570d975ada3643d2e60c007a955bac09c0a0efeb58d15'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-sixaxis \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
${pkgdir}/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/tools/$filename 
${pkgdir}/usr/bin/$filename
+  done
+  # add gatttool usefulbdaddr with Bluetooth 4.0LE 
+  install -Dm755 ${srcdir}/${pkgbase}-${pkgver}/attrib/gatttool 
${pkgdir}/usr/bin/gatttool
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   

[arch-commits] Commit in bluez/repos (6 files)

2013-11-18 Thread Tom Gundersen
Date: Monday, November 18, 2013 @ 22:56:02
  Author: tomegun
Revision: 199916

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 199915, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 199915, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 199915, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 199915, bluez/trunk/bluetooth.modprobe)

---+
 testing-i686/PKGBUILD |  116 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  116 
 testing-x86_64/bluetooth.modprobe |3 
 4 files changed, 238 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 199915, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-18 21:56:02 UTC (rev 199916)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
+pkgver=5.11
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+bluetooth.modprobe)
+md5sums=('c3675ed157a433b6de7391854b907b8c'
+ '671c15e99d7154c2df987b71c5851b3d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+#  --enable-experimental \
+
+  make all V=1
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-libexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
+}
+
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('dbus' 'systemd')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-binPROGRAMS \
+   install-man1
+
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf ${pkgdir}/usr/lib
+  
+  # move the hid2hci man page out
+  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-includeHEADERS \
+   install-libLTLIBRARIES \
+   install-pkgconfigDATA
+}
+
+package_bluez-cups() {
+  pkgdesc=CUPS printer backend for Bluetooth printers
+  depends=('cups')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install-cupsPROGRAMS
+}
+
+package_bluez-hid2hci() {
+  pkgdesc=Put HID proxying bluetooth HCI's into HCI mode
+  depends=('systemd')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-udevPROGRAMS \
+   install-rulesDATA
+  
+  install -dm755 ${pkgdir}/usr/share/man/man1
+  mv ${srcdir}/hid2hci.1 ${pkgdir}/usr/share/man/man1/hid2hci.1
+}

Copied: bluez/repos/testing-i686/bluetooth.modprobe (from rev 199915, 
bluez/trunk/bluetooth.modprobe)
===
--- testing-i686/bluetooth.modprobe (rev 0)
+++ testing-i686/bluetooth.modprobe 2013-11-18 21:56:02 UTC (rev 199916)
@@ -0,0 +1,3 @@
+# use reset=1 as default, since it should be safe for recent devices and
+# solves all kind of problems.
+options btusb reset=1

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 199915, 
bluez/trunk/PKGBUILD)

[arch-commits] Commit in bluez/repos (6 files)

2013-11-06 Thread Andreas Radke
Date: Wednesday, November 6, 2013 @ 20:33:41
  Author: andyrtr
Revision: 199029

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bluez/repos/testing-i686/PKGBUILD
(from rev 199028, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 199028, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 199028, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 199028, bluez/trunk/bluetooth.modprobe)
Deleted:
  bluez/repos/testing-i686/PKGBUILD
  bluez/repos/testing-x86_64/PKGBUILD

---+
 /PKGBUILD |  232 
 testing-i686/PKGBUILD |  107 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  107 
 testing-x86_64/bluetooth.modprobe |3 
 5 files changed, 238 insertions(+), 214 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-11-06 19:33:13 UTC (rev 199028)
+++ testing-i686/PKGBUILD   2013-11-06 19:33:41 UTC (rev 199029)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Geoffroy Carrier geoff...@archlinux.org
-
-pkgbase=bluez
-pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
-pkgver=5.10
-pkgrel=2
-url=http://www.bluez.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('dbus' 'libical' 'systemd')
-source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('7dce03b332b3a3e7465fb88352b8a404')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-library # this is deprecated
-#  --enable-experimental \
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-
-package_bluez() {
-  pkgdesc=Daemons for the bluetooth protocol stack
-  depends=('libical' 'dbus' 'glib2')
-  backup=('etc/dbus-1/system.d/bluetooth.conf')
-  conflicts=('obexd-client' 'obexd-server')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-libexecPROGRAMS \
-   install-dbussessionbusDATA \
-   install-systemdsystemunitDATA \
-   install-systemduserunitDATA \
-   install-dbussystembusDATA \
-   install-dbusDATA \
-   install-man8
-}
-
-package_bluez-utils() {
-  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
-  depends=('dbus' 'systemd')
-  conflicts=('bluez-hcidump')
-  provides=('bluez-hcidump')
-  replaces=('bluez-hcidump' 'bluez=4.101')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-binPROGRAMS \
-   install-man1
-
-  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
-  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
-  #rmdir ${pkgdir}/usr/lib
-  rm -rf ${pkgdir}/usr/lib
-  
-  # move the hid2hci man page out
-  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
-}
-
-package_bluez-libs() {
-  pkgdesc=Deprecated libraries for the bluetooth protocol stack
-  depends=('glibc')
-  license=('LGPL2.1')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-includeHEADERS \
-   install-libLTLIBRARIES \
-   install-pkgconfigDATA
-}
-
-package_bluez-cups() {
-  pkgdesc=CUPS printer backend for Bluetooth printers
-  depends=('cups')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-cupsPROGRAMS
-}
-
-package_bluez-hid2hci() {
-  pkgdesc=Put HID proxying bluetooth HCI's into HCI mode
-  depends=('systemd')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-udevPROGRAMS \
-   install-rulesDATA
-  
-  install -dm755 ${pkgdir}/usr/share/man/man1
-  mv ${srcdir}/hid2hci.1 ${pkgdir}/usr/share/man/man1/hid2hci.1
-}

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 199028, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-06 19:33:41 UTC (rev 199029)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
+pkgver=5.10
+pkgrel=3
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+bluetooth.modprobe)
+md5sums=('7dce03b332b3a3e7465fb88352b8a404'
+ '671c15e99d7154c2df987b71c5851b3d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  

[arch-commits] Commit in bluez/repos (6 files)

2012-05-27 Thread Dave Reisner
Date: Sunday, May 27, 2012 @ 09:10:35
  Author: dreisner
Revision: 159959

db-move: moved bluez from [staging] to [testing] (i686)

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/0001-udev-remove-deprecated-function.patch
(from rev 159958, 
bluez/repos/staging-i686/0001-udev-remove-deprecated-function.patch)
  bluez/repos/testing-i686/PKGBUILD
(from rev 159958, bluez/repos/staging-i686/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.conf.d
(from rev 159958, bluez/repos/staging-i686/bluetooth.conf.d)
  bluez/repos/testing-i686/rc.bluetooth
(from rev 159958, bluez/repos/staging-i686/rc.bluetooth)
Deleted:
  bluez/repos/staging-i686/

+
 0001-udev-remove-deprecated-function.patch |   27 +++
 PKGBUILD   |   89 
 bluetooth.conf.d   |   30 
 rc.bluetooth   |  100 +++
 4 files changed, 246 insertions(+)

Copied: bluez/repos/testing-i686/0001-udev-remove-deprecated-function.patch 
(from rev 159958, 
bluez/repos/staging-i686/0001-udev-remove-deprecated-function.patch)
===
--- testing-i686/0001-udev-remove-deprecated-function.patch 
(rev 0)
+++ testing-i686/0001-udev-remove-deprecated-function.patch 2012-05-27 
13:10:35 UTC (rev 159959)
@@ -0,0 +1,27 @@
+From 9e850650bd98e9d05fc937489692b26a64924d16 Mon Sep 17 00:00:00 2001
+From: Tom Gundersen t...@jklm.no
+Date: Sun, 27 May 2012 00:53:36 +0200
+Subject: [PATCH] udev: remove deprecated function
+
+This function has in the past returned /sys unconditionally. As of udev-183 
it
+is gone, so just replace it with the string.
+---
+ tools/hid2hci.c |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/hid2hci.c b/tools/hid2hci.c
+index 45a3a3d..e3a5b2e 100644
+--- a/tools/hid2hci.c
 b/tools/hid2hci.c
+@@ -291,7 +291,7 @@ int main(int argc, char *argv[])
+   if (udev == NULL)
+   goto exit;
+ 
+-  snprintf(syspath, sizeof(syspath), %s/%s, udev_get_sys_path(udev), 
devpath);
++  snprintf(syspath, sizeof(syspath), /sys/%s, devpath);
+   udev_dev = udev_device_new_from_syspath(udev, syspath);
+   if (udev_dev == NULL) {
+   fprintf(stderr, error: could not find '%s'\n, devpath);
+-- 
+1.7.10.2
+

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 159958, 
bluez/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-05-27 13:10:35 UTC (rev 159959)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgname=bluez
+pkgver=4.99
+pkgrel=5
+pkgdesc=Libraries and tools for the Bluetooth protocol stack
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core' 'python2' 'udev')
+makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile')
+optdepends=(gstreamer0.10-base: bluetooth GStreamer support
+alsa-lib: Audio bluetooth devices support
+dbus-python: to run bluez-simple-agent
+pygobject: to run bluez-simple-agent
+libusb-compat: USB adapters support
+cups: CUPS backend)
+conflicts=('bluez-libs' 'bluez-utils')
+provides=('bluez-libs' 'bluez-utils')
+replaces=('bluez-libs' 'bluez-utils')
+options=('!libtool')
+backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf
+'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+   '0001-udev-remove-deprecated-function.patch'
+'bluetooth.conf.d'
+   'rc.bluetooth')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/lib \
+--enable-gstreamer \
+--enable-alsa \
+--enable-usb \
+--enable-tools \
+--enable-bccmd \
+--enable-dfutool \
+--enable-hid2hci \
+--enable-hidd \
+--enable-pand \
+--enable-dund \
+--enable-cups \
+--enable-wiimote \
+--disable-test
+
+  patch -p1 -i ../0001-udev-remove-deprecated-function.patch
+
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 ${srcdir}/rc.bluetooth ${pkgdir}/etc/rc.d/bluetooth
+  
+  install -d ${pkgdir}/etc/bluetooth
+  install -m644 network/network.conf \
+input/input.conf \
+audio/audio.conf \
+serial/serial.conf \
+${pkgdir}/etc/bluetooth/
+  
+  install -Dm644 ${srcdir}/bluetooth.conf.d \
+${pkgdir}/etc/conf.d/bluetooth
+
+  # FS#27630
+  install -Dm755 

[arch-commits] Commit in bluez/repos (6 files)

2012-05-27 Thread Dave Reisner
Date: Sunday, May 27, 2012 @ 09:10:36
  Author: dreisner
Revision: 159960

db-move: moved bluez from [staging] to [testing] (x86_64)

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/0001-udev-remove-deprecated-function.patch
(from rev 159958, 
bluez/repos/staging-x86_64/0001-udev-remove-deprecated-function.patch)
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 159958, bluez/repos/staging-x86_64/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.conf.d
(from rev 159958, bluez/repos/staging-x86_64/bluetooth.conf.d)
  bluez/repos/testing-x86_64/rc.bluetooth
(from rev 159958, bluez/repos/staging-x86_64/rc.bluetooth)
Deleted:
  bluez/repos/staging-x86_64/

+
 0001-udev-remove-deprecated-function.patch |   27 +++
 PKGBUILD   |   89 
 bluetooth.conf.d   |   30 
 rc.bluetooth   |  100 +++
 4 files changed, 246 insertions(+)

Copied: bluez/repos/testing-x86_64/0001-udev-remove-deprecated-function.patch 
(from rev 159958, 
bluez/repos/staging-x86_64/0001-udev-remove-deprecated-function.patch)
===
--- testing-x86_64/0001-udev-remove-deprecated-function.patch   
(rev 0)
+++ testing-x86_64/0001-udev-remove-deprecated-function.patch   2012-05-27 
13:10:36 UTC (rev 159960)
@@ -0,0 +1,27 @@
+From 9e850650bd98e9d05fc937489692b26a64924d16 Mon Sep 17 00:00:00 2001
+From: Tom Gundersen t...@jklm.no
+Date: Sun, 27 May 2012 00:53:36 +0200
+Subject: [PATCH] udev: remove deprecated function
+
+This function has in the past returned /sys unconditionally. As of udev-183 
it
+is gone, so just replace it with the string.
+---
+ tools/hid2hci.c |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/hid2hci.c b/tools/hid2hci.c
+index 45a3a3d..e3a5b2e 100644
+--- a/tools/hid2hci.c
 b/tools/hid2hci.c
+@@ -291,7 +291,7 @@ int main(int argc, char *argv[])
+   if (udev == NULL)
+   goto exit;
+ 
+-  snprintf(syspath, sizeof(syspath), %s/%s, udev_get_sys_path(udev), 
devpath);
++  snprintf(syspath, sizeof(syspath), /sys/%s, devpath);
+   udev_dev = udev_device_new_from_syspath(udev, syspath);
+   if (udev_dev == NULL) {
+   fprintf(stderr, error: could not find '%s'\n, devpath);
+-- 
+1.7.10.2
+

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 159958, 
bluez/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-05-27 13:10:36 UTC (rev 159960)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgname=bluez
+pkgver=4.99
+pkgrel=5
+pkgdesc=Libraries and tools for the Bluetooth protocol stack
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core' 'python2' 'udev')
+makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile')
+optdepends=(gstreamer0.10-base: bluetooth GStreamer support
+alsa-lib: Audio bluetooth devices support
+dbus-python: to run bluez-simple-agent
+pygobject: to run bluez-simple-agent
+libusb-compat: USB adapters support
+cups: CUPS backend)
+conflicts=('bluez-libs' 'bluez-utils')
+provides=('bluez-libs' 'bluez-utils')
+replaces=('bluez-libs' 'bluez-utils')
+options=('!libtool')
+backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf
+'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+   '0001-udev-remove-deprecated-function.patch'
+'bluetooth.conf.d'
+   'rc.bluetooth')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/lib \
+--enable-gstreamer \
+--enable-alsa \
+--enable-usb \
+--enable-tools \
+--enable-bccmd \
+--enable-dfutool \
+--enable-hid2hci \
+--enable-hidd \
+--enable-pand \
+--enable-dund \
+--enable-cups \
+--enable-wiimote \
+--disable-test
+
+  patch -p1 -i ../0001-udev-remove-deprecated-function.patch
+
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 ${srcdir}/rc.bluetooth ${pkgdir}/etc/rc.d/bluetooth
+  
+  install -d ${pkgdir}/etc/bluetooth
+  install -m644 network/network.conf \
+input/input.conf \
+audio/audio.conf \
+serial/serial.conf \
+${pkgdir}/etc/bluetooth/
+  
+  install -Dm644 ${srcdir}/bluetooth.conf.d \
+${pkgdir}/etc/conf.d/bluetooth
+
+  

[arch-commits] Commit in bluez/repos (6 files)

2012-02-16 Thread Jan Steffens
Date: Thursday, February 16, 2012 @ 15:41:27
  Author: heftig
Revision: 150303

db-move: moved bluez from [staging] to [testing] (i686)

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 150302, bluez/repos/staging-i686/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.conf.d
(from rev 150302, bluez/repos/staging-i686/bluetooth.conf.d)
  bluez/repos/testing-i686/fix-a2dp.patch
(from rev 150302, bluez/repos/staging-i686/fix-a2dp.patch)
  bluez/repos/testing-i686/rc.bluetooth
(from rev 150302, bluez/repos/staging-i686/rc.bluetooth)
Deleted:
  bluez/repos/staging-i686/

--+
 PKGBUILD |   86 +
 bluetooth.conf.d |   30 +++
 fix-a2dp.patch   |   68 
 rc.bluetooth |  100 +
 4 files changed, 284 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 150302, 
bluez/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-16 20:41:27 UTC (rev 150303)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgname=bluez
+pkgver=4.98
+pkgrel=3
+pkgdesc=Libraries and tools for the Bluetooth protocol stack
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core')
+makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile')
+optdepends=(gstreamer0.10-base: bluetooth GStreamer support
+   alsa-lib: Audio bluetooth devices support
+   dbus-python: to run bluez-simple-agent
+   pygobject: to run bluez-simple-agent
+   libusb-compat: USB adapters support
+cups: CUPS backend)
+conflicts=('bluez-libs' 'bluez-utils')
+provides=('bluez-libs' 'bluez-utils')
+replaces=('bluez-libs' 'bluez-utils')
+options=('!libtool' 'emptydirs')
+backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf
+'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+'bluetooth.conf.d' 'rc.bluetooth' 'fix-a2dp.patch')
+md5sums=('4aca8a0929250212e9a75fb60dd75b05'
+ '7412982b440f29fa7f76a41a87fef985'
+ '8f9498707f809506928b2e480d3b6789'
+ 'd6a34317e56b7c2bd990791d89d6c3cb')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  patch -Np1 -i ${srcdir}/fix-a2dp.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/lib \
+--enable-gstreamer \
+--enable-alsa \
+--enable-usb \
+--enable-tools \
+--enable-bccmd \
+--enable-dfutool \
+--enable-hid2hci \
+--enable-hidd \
+--enable-pand \
+--enable-dund \
+--enable-cups \
+--enable-wiimote \
+--disable-test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 ${srcdir}/rc.bluetooth ${pkgdir}/etc/rc.d/bluetooth
+  
+  install -d ${pkgdir}/etc/bluetooth
+  install -m644 network/network.conf \
+input/input.conf \
+audio/audio.conf \
+serial/serial.conf \
+${pkgdir}/etc/bluetooth/
+  
+  install -Dm644 ${srcdir}/bluetooth.conf.d \
+${pkgdir}/etc/conf.d/bluetooth
+
+  # FS#27630
+  install -Dm755 test/simple-agent ${pkgdir}/usr/bin/bluez-simple-agent
+  install -Dm755 test/test-device ${pkgdir}/usr/bin/bluez-test-device
+  install -Dm755 test/test-input ${pkgdir}/usr/bin/bluez-test-input
+  sed -i 's#/usr/bin/python#/usr/bin/python2#' \
+${pkgdir}/usr/bin/bluez-simple-agent \
+${pkgdir}/usr/bin/bluez-test-device \
+${pkgdir}/usr/bin/bluez-test-input
+
+  # http://mailman.archlinux.org/pipermail/arch-general/2011-April/019787.html
+  rm ${pkgdir}/lib/udev/rules.d/97-bluetooth.rules
+}

Copied: bluez/repos/testing-i686/bluetooth.conf.d (from rev 150302, 
bluez/repos/staging-i686/bluetooth.conf.d)
===
--- testing-i686/bluetooth.conf.d   (rev 0)
+++ testing-i686/bluetooth.conf.d   2012-02-16 20:41:27 UTC (rev 150303)
@@ -0,0 +1,30 @@
+# Bluetooth configuraton file
+
+# Bluetooth services (allowed values are true and false)
+
+# Run the bluetoothd daemon (default: true)
+#DAEMON_ENABLE=false
+
+# Run the sdp daemon (default: false)
+# If this is disabled, hcid's internal sdp daemon will be used
+#SDPD_ENABLE=true
+
+# Run the bluetooth HID daemon (default: false)
+#HIDD_ENABLE=true
+
+# Activate rfcomm ports (default: false)
+#RFCOMM_ENABLE=true
+
+# Run bluetooth dial-up networking daemon (default: false)
+#DUND_ENABLE=true
+
+# Run bluetooth PAN daemon (default: false)
+#PAND_ENABLE=true
+
+# rfcomm configuration file (default: 

[arch-commits] Commit in bluez/repos (6 files)

2012-02-16 Thread Jan Steffens
Date: Thursday, February 16, 2012 @ 15:41:28
  Author: heftig
Revision: 150304

db-move: moved bluez from [staging] to [testing] (x86_64)

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 150302, bluez/repos/staging-x86_64/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.conf.d
(from rev 150302, bluez/repos/staging-x86_64/bluetooth.conf.d)
  bluez/repos/testing-x86_64/fix-a2dp.patch
(from rev 150302, bluez/repos/staging-x86_64/fix-a2dp.patch)
  bluez/repos/testing-x86_64/rc.bluetooth
(from rev 150302, bluez/repos/staging-x86_64/rc.bluetooth)
Deleted:
  bluez/repos/staging-x86_64/

--+
 PKGBUILD |   86 +
 bluetooth.conf.d |   30 +++
 fix-a2dp.patch   |   68 
 rc.bluetooth |  100 +
 4 files changed, 284 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 150302, 
bluez/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-16 20:41:28 UTC (rev 150304)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgname=bluez
+pkgver=4.98
+pkgrel=3
+pkgdesc=Libraries and tools for the Bluetooth protocol stack
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core')
+makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile')
+optdepends=(gstreamer0.10-base: bluetooth GStreamer support
+   alsa-lib: Audio bluetooth devices support
+   dbus-python: to run bluez-simple-agent
+   pygobject: to run bluez-simple-agent
+   libusb-compat: USB adapters support
+cups: CUPS backend)
+conflicts=('bluez-libs' 'bluez-utils')
+provides=('bluez-libs' 'bluez-utils')
+replaces=('bluez-libs' 'bluez-utils')
+options=('!libtool' 'emptydirs')
+backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf
+'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+'bluetooth.conf.d' 'rc.bluetooth' 'fix-a2dp.patch')
+md5sums=('4aca8a0929250212e9a75fb60dd75b05'
+ '7412982b440f29fa7f76a41a87fef985'
+ '8f9498707f809506928b2e480d3b6789'
+ 'd6a34317e56b7c2bd990791d89d6c3cb')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  patch -Np1 -i ${srcdir}/fix-a2dp.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/lib \
+--enable-gstreamer \
+--enable-alsa \
+--enable-usb \
+--enable-tools \
+--enable-bccmd \
+--enable-dfutool \
+--enable-hid2hci \
+--enable-hidd \
+--enable-pand \
+--enable-dund \
+--enable-cups \
+--enable-wiimote \
+--disable-test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 ${srcdir}/rc.bluetooth ${pkgdir}/etc/rc.d/bluetooth
+  
+  install -d ${pkgdir}/etc/bluetooth
+  install -m644 network/network.conf \
+input/input.conf \
+audio/audio.conf \
+serial/serial.conf \
+${pkgdir}/etc/bluetooth/
+  
+  install -Dm644 ${srcdir}/bluetooth.conf.d \
+${pkgdir}/etc/conf.d/bluetooth
+
+  # FS#27630
+  install -Dm755 test/simple-agent ${pkgdir}/usr/bin/bluez-simple-agent
+  install -Dm755 test/test-device ${pkgdir}/usr/bin/bluez-test-device
+  install -Dm755 test/test-input ${pkgdir}/usr/bin/bluez-test-input
+  sed -i 's#/usr/bin/python#/usr/bin/python2#' \
+${pkgdir}/usr/bin/bluez-simple-agent \
+${pkgdir}/usr/bin/bluez-test-device \
+${pkgdir}/usr/bin/bluez-test-input
+
+  # http://mailman.archlinux.org/pipermail/arch-general/2011-April/019787.html
+  rm ${pkgdir}/lib/udev/rules.d/97-bluetooth.rules
+}

Copied: bluez/repos/testing-x86_64/bluetooth.conf.d (from rev 150302, 
bluez/repos/staging-x86_64/bluetooth.conf.d)
===
--- testing-x86_64/bluetooth.conf.d (rev 0)
+++ testing-x86_64/bluetooth.conf.d 2012-02-16 20:41:28 UTC (rev 150304)
@@ -0,0 +1,30 @@
+# Bluetooth configuraton file
+
+# Bluetooth services (allowed values are true and false)
+
+# Run the bluetoothd daemon (default: true)
+#DAEMON_ENABLE=false
+
+# Run the sdp daemon (default: false)
+# If this is disabled, hcid's internal sdp daemon will be used
+#SDPD_ENABLE=true
+
+# Run the bluetooth HID daemon (default: false)
+#HIDD_ENABLE=true
+
+# Activate rfcomm ports (default: false)
+#RFCOMM_ENABLE=true
+
+# Run bluetooth dial-up networking daemon (default: false)
+#DUND_ENABLE=true
+
+# Run bluetooth PAN daemon (default: false)
+#PAND_ENABLE=true
+
+# rfcomm