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

2017-09-22 Thread Andreas Radke
Date: Friday, September 22, 2017 @ 20:27:36
  Author: andyrtr
Revision: 306123

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

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

-+
 /PKGBUILD   |  290 ++
 /bluetooth.modprobe |6 
 extra-i686/PKGBUILD |  141 --
 extra-i686/bluetooth.modprobe   |3 
 extra-x86_64/PKGBUILD   |  141 --
 extra-x86_64/bluetooth.modprobe |3 
 6 files changed, 296 insertions(+), 288 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-22 20:27:13 UTC (rev 306122)
+++ extra-i686/PKGBUILD 2017-09-22 20:27:36 UTC (rev 306123)
@@ -1,141 +0,0 @@
-# $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 \
-   

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

2016-07-18 Thread Andreas Radke
Date: Monday, July 18, 2016 @ 17:41:24
  Author: andyrtr
Revision: 271987

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

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

-+
 /PKGBUILD   |  286 ++
 /bluetooth.modprobe |6 
 extra-i686/PKGBUILD |  143 ---
 extra-i686/bluetooth.modprobe   |3 
 extra-x86_64/PKGBUILD   |  143 ---
 extra-x86_64/bluetooth.modprobe |3 
 6 files changed, 292 insertions(+), 292 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-18 17:41:11 UTC (rev 271986)
+++ extra-i686/PKGBUILD 2016-07-18 17:41:24 UTC (rev 271987)
@@ -1,143 +0,0 @@
-# $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.40
-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=('dada8b812055afcad4546d9966f9a763e4723169e89706e2b240c7b7e998dc27'
-'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 

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

2016-06-04 Thread Andreas Radke
Date: Saturday, June 4, 2016 @ 22:29:16
  Author: andyrtr
Revision: 268962

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

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

-+
 /PKGBUILD   |  286 ++
 /bluetooth.modprobe |6 
 extra-i686/PKGBUILD |  143 ---
 extra-i686/bluetooth.modprobe   |3 
 extra-x86_64/PKGBUILD   |  143 ---
 extra-x86_64/bluetooth.modprobe |3 
 6 files changed, 292 insertions(+), 292 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-04 20:28:51 UTC (rev 268961)
+++ extra-i686/PKGBUILD 2016-06-04 20:29:16 UTC (rev 268962)
@@ -1,143 +0,0 @@
-# $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.39
-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=('21d1bc9150d3576296595217efb98a746b592389d25d5637e8bee5da7272593b'
-'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 

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

2016-03-25 Thread Andreas Radke
Date: Friday, March 25, 2016 @ 11:18:00
  Author: andyrtr
Revision: 262521

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

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

--+
 testing-i686/PKGBUILD|  151 ++
 testing-i686/bluetooth.modprobe  |3 
 testing-i686/fix_crash_when_connecting_to_controllers.diff   |   37 ++
 testing-x86_64/PKGBUILD  |  151 ++
 testing-x86_64/bluetooth.modprobe|3 
 testing-x86_64/fix_crash_when_connecting_to_controllers.diff |   37 ++
 6 files changed, 382 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 262520, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-25 10:18:00 UTC (rev 262521)
@@ -0,0 +1,151 @@
+# $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.38
+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
+fix_crash_when_connecting_to_controllers.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('0618c5440be6715805060ab5eea930526f34089c437bf61819447b160254f4df'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'27296fb6cce5e62a04fbeb0779d852995779ecef553cc2e692d91d89eff8c673')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # FS#48644, 
http://git.kernel.org/cgit/bluetooth/bluez.git/commit/?id=177d27c8c3db4588ec13dae0368f240902c42825
+  patch -Np1 -i ${srcdir}/fix_crash_when_connecting_to_controllers.diff
+}
+
+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, 

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

2016-01-08 Thread Andreas Radke
Date: Friday, January 8, 2016 @ 18:57:12
  Author: andyrtr
Revision: 257640

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

Added:
  bluez/repos/staging-i686/
  
bluez/repos/staging-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 257639, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/staging-i686/PKGBUILD
(from rev 257639, bluez/trunk/PKGBUILD)
  bluez/repos/staging-i686/bluetooth.modprobe
(from rev 257639, bluez/trunk/bluetooth.modprobe)
  bluez/repos/staging-x86_64/
  
bluez/repos/staging-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 257639, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 257639, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.modprobe
(from rev 257639, bluez/trunk/bluetooth.modprobe)

-+
 staging-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch  
 |   59 +++
 staging-i686/PKGBUILD  
 |  153 ++
 staging-i686/bluetooth.modprobe
 |3 
 
staging-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|   59 +++
 staging-x86_64/PKGBUILD
 |  153 ++
 staging-x86_64/bluetooth.modprobe  
 |3 
 6 files changed, 430 insertions(+)

Copied: 
bluez/repos/staging-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 (from rev 257639, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
===
--- 
staging-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
(rev 0)
+++ 
staging-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
2016-01-08 17:57:12 UTC (rev 257640)
@@ -0,0 +1,59 @@
+From 3027cb7141fb65cf3eeda69c688db8c4045e2d3f Mon Sep 17 00:00:00 2001
+From: Giovanni Campagna 
+Date: Sat, 12 Oct 2013 17:45:25 +0200
+Subject: [PATCH] Allow using obexd without systemd in the user session
+
+Not all sessions run systemd --user (actually, the majority
+doesn't), so the dbus daemon must be able to spawn obexd
+directly, and to do so it needs the full path of the daemon.
+---
+ Makefile.obexd  | 4 ++--
+ obexd/src/org.bluez.obex.service| 4 
+ obexd/src/org.bluez.obex.service.in | 4 
+ 3 files changed, 6 insertions(+), 6 deletions(-)
+ delete mode 100644 obexd/src/org.bluez.obex.service
+ create mode 100644 obexd/src/org.bluez.obex.service.in
+
+diff --git a/Makefile.obexd b/Makefile.obexd
+index 3760867..142e7c3 100644
+--- a/Makefile.obexd
 b/Makefile.obexd
+@@ -2,12 +2,12 @@
+ if SYSTEMD
+ systemduserunitdir = @SYSTEMD_USERUNITDIR@
+ systemduserunit_DATA = obexd/src/obex.service
++endif
+ 
+ dbussessionbusdir = @DBUS_SESSIONBUSDIR@
+ dbussessionbus_DATA = obexd/src/org.bluez.obex.service
+-endif
+ 
+-EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
++EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
+ 
+ obex_plugindir = $(libdir)/obex/plugins
+ 
+diff --git a/obexd/src/org.bluez.obex.service 
b/obexd/src/org.bluez.obex.service
+deleted file mode 100644
+index a538088..000
+--- a/obexd/src/org.bluez.obex.service
 /dev/null
+@@ -1,4 +0,0 @@
+-[D-BUS Service]
+-Name=org.bluez.obex
+-Exec=/bin/false
+-SystemdService=dbus-org.bluez.obex.service
+diff --git a/obexd/src/org.bluez.obex.service.in 
b/obexd/src/org.bluez.obex.service.in
+new file mode 100644
+index 000..9c815f2
+--- /dev/null
 b/obexd/src/org.bluez.obex.service.in
+@@ -0,0 +1,4 @@
++[D-BUS Service]
++Name=org.bluez.obex
++Exec=@libexecdir@/obexd
++SystemdService=dbus-org.bluez.obex.service
+-- 
+1.8.3.1
+
+

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 257639, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-01-08 17:57:12 UTC (rev 257640)
@@ -0,0 +1,153 @@
+# $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.37
+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}
+

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

2015-09-23 Thread Andreas Radke
Date: Wednesday, September 23, 2015 @ 21:52:22
  Author: andyrtr
Revision: 247175

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

Added:
  bluez/repos/testing-i686/
  
bluez/repos/testing-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 247174, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/testing-i686/PKGBUILD
(from rev 247174, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 247174, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/
  
bluez/repos/testing-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 247174, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 247174, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 247174, bluez/trunk/bluetooth.modprobe)

-+
 testing-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch  
 |   59 +++
 testing-i686/PKGBUILD  
 |  153 ++
 testing-i686/bluetooth.modprobe
 |3 
 
testing-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|   59 +++
 testing-x86_64/PKGBUILD
 |  153 ++
 testing-x86_64/bluetooth.modprobe  
 |3 
 6 files changed, 430 insertions(+)

Copied: 
bluez/repos/testing-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 (from rev 247174, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
===
--- 
testing-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
(rev 0)
+++ 
testing-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
2015-09-23 19:52:22 UTC (rev 247175)
@@ -0,0 +1,59 @@
+From 3027cb7141fb65cf3eeda69c688db8c4045e2d3f Mon Sep 17 00:00:00 2001
+From: Giovanni Campagna 
+Date: Sat, 12 Oct 2013 17:45:25 +0200
+Subject: [PATCH] Allow using obexd without systemd in the user session
+
+Not all sessions run systemd --user (actually, the majority
+doesn't), so the dbus daemon must be able to spawn obexd
+directly, and to do so it needs the full path of the daemon.
+---
+ Makefile.obexd  | 4 ++--
+ obexd/src/org.bluez.obex.service| 4 
+ obexd/src/org.bluez.obex.service.in | 4 
+ 3 files changed, 6 insertions(+), 6 deletions(-)
+ delete mode 100644 obexd/src/org.bluez.obex.service
+ create mode 100644 obexd/src/org.bluez.obex.service.in
+
+diff --git a/Makefile.obexd b/Makefile.obexd
+index 3760867..142e7c3 100644
+--- a/Makefile.obexd
 b/Makefile.obexd
+@@ -2,12 +2,12 @@
+ if SYSTEMD
+ systemduserunitdir = @SYSTEMD_USERUNITDIR@
+ systemduserunit_DATA = obexd/src/obex.service
++endif
+ 
+ dbussessionbusdir = @DBUS_SESSIONBUSDIR@
+ dbussessionbus_DATA = obexd/src/org.bluez.obex.service
+-endif
+ 
+-EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
++EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
+ 
+ obex_plugindir = $(libdir)/obex/plugins
+ 
+diff --git a/obexd/src/org.bluez.obex.service 
b/obexd/src/org.bluez.obex.service
+deleted file mode 100644
+index a538088..000
+--- a/obexd/src/org.bluez.obex.service
 /dev/null
+@@ -1,4 +0,0 @@
+-[D-BUS Service]
+-Name=org.bluez.obex
+-Exec=/bin/false
+-SystemdService=dbus-org.bluez.obex.service
+diff --git a/obexd/src/org.bluez.obex.service.in 
b/obexd/src/org.bluez.obex.service.in
+new file mode 100644
+index 000..9c815f2
+--- /dev/null
 b/obexd/src/org.bluez.obex.service.in
+@@ -0,0 +1,4 @@
++[D-BUS Service]
++Name=org.bluez.obex
++Exec=@libexecdir@/obexd
++SystemdService=dbus-org.bluez.obex.service
+-- 
+1.8.3.1
+
+

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 247174, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-23 19:52:22 UTC (rev 247175)
@@ -0,0 +1,153 @@
+# $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.34
+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}
+

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

2013-05-30 Thread Tom Gundersen
Date: Thursday, May 30, 2013 @ 14:10:13
  Author: tomegun
Revision: 186635

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

Added:
  bluez/repos/staging-i686/
  bluez/repos/staging-i686/PKGBUILD
(from rev 186634, bluez/trunk/PKGBUILD)
  bluez/repos/staging-i686/bluetooth.conf.d
(from rev 186634, bluez/trunk/bluetooth.conf.d)
  bluez/repos/staging-i686/rc.bluetooth
(from rev 186634, bluez/trunk/rc.bluetooth)
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 186634, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.conf.d
(from rev 186634, bluez/trunk/bluetooth.conf.d)
  bluez/repos/staging-x86_64/rc.bluetooth
(from rev 186634, bluez/trunk/rc.bluetooth)

-+
 staging-i686/PKGBUILD   |   88 +++
 staging-i686/bluetooth.conf.d   |   30 
 staging-i686/rc.bluetooth   |   93 ++
 staging-x86_64/PKGBUILD |   88 +++
 staging-x86_64/bluetooth.conf.d |   30 
 staging-x86_64/rc.bluetooth |   93 ++
 6 files changed, 422 insertions(+)

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 186634, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-05-30 12:10:13 UTC (rev 186635)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgname=bluez
+pkgver=4.101
+pkgrel=2
+pkgdesc=Libraries and tools for the Bluetooth protocol stack
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core' 'python2' 'systemd-tools')
+makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile' 'libusbx')
+optdepends=(gstreamer0.10-base: bluetooth GStreamer support
+alsa-lib: Audio bluetooth devices support
+python2-dbus: to run bluez-simple-agent
+python2-gobject: 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;
+'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 \
+--with-systemdunitdir=/usr/lib/systemd/system
+
+  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
+
+# usrmove
+cd $pkgdir
+mv usr/sbin/* usr/bin
+rmdir usr/sbin
+}
+md5sums=('902b390af95c6c5d6d1a17d94c8344ab'
+ '7412982b440f29fa7f76a41a87fef985'
+ '864cbd24e6efc3592e9284b0b5fb2cfd')

Copied: bluez/repos/staging-i686/bluetooth.conf.d (from rev 186634, 
bluez/trunk/bluetooth.conf.d)
===
--- staging-i686/bluetooth.conf.d   (rev 0)
+++ staging-i686/bluetooth.conf.d   2013-05-30 12:10:13 UTC (rev 186635)
@@ -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)

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

2012-06-01 Thread Dave Reisner
Date: Friday, June 1, 2012 @ 08:58:11
  Author: dreisner
Revision: 160352

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

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

+
 0001-udev-remove-deprecated-function.patch |   27 +++
 PKGBUILD   |  174 ---
 bluetooth.conf.d   |   60 
 rc.bluetooth   |  200 +--
 4 files changed, 247 insertions(+), 214 deletions(-)

Copied: bluez/repos/extra-i686/0001-udev-remove-deprecated-function.patch (from 
rev 160351, bluez/repos/testing-i686/0001-udev-remove-deprecated-function.patch)
===
--- extra-i686/0001-udev-remove-deprecated-function.patch   
(rev 0)
+++ extra-i686/0001-udev-remove-deprecated-function.patch   2012-06-01 
12:58:11 UTC (rev 160352)
@@ -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
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-01 12:56:50 UTC (rev 160351)
+++ extra-i686/PKGBUILD 2012-06-01 12:58:11 UTC (rev 160352)
@@ -1,84 +0,0 @@
-# $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=2
-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;
-'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
-  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 

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

2012-06-01 Thread Dave Reisner
Date: Friday, June 1, 2012 @ 08:58:12
  Author: dreisner
Revision: 160353

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

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

+
 0001-udev-remove-deprecated-function.patch |   27 +++
 PKGBUILD   |  174 ---
 bluetooth.conf.d   |   60 
 rc.bluetooth   |  200 +--
 4 files changed, 247 insertions(+), 214 deletions(-)

Copied: bluez/repos/extra-x86_64/0001-udev-remove-deprecated-function.patch 
(from rev 160351, 
bluez/repos/testing-x86_64/0001-udev-remove-deprecated-function.patch)
===
--- extra-x86_64/0001-udev-remove-deprecated-function.patch 
(rev 0)
+++ extra-x86_64/0001-udev-remove-deprecated-function.patch 2012-06-01 
12:58:12 UTC (rev 160353)
@@ -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
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-01 12:58:11 UTC (rev 160352)
+++ extra-x86_64/PKGBUILD   2012-06-01 12:58:12 UTC (rev 160353)
@@ -1,84 +0,0 @@
-# $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=2
-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;
-'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
-  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
-  

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

2012-05-26 Thread Tom Gundersen
Date: Saturday, May 26, 2012 @ 08:43:04
  Author: tomegun
Revision: 159751

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

Added:
  bluez/repos/staging-i686/
  bluez/repos/staging-i686/PKGBUILD
(from rev 159750, bluez/trunk/PKGBUILD)
  bluez/repos/staging-i686/bluetooth.conf.d
(from rev 159750, bluez/trunk/bluetooth.conf.d)
  bluez/repos/staging-i686/rc.bluetooth
(from rev 159750, bluez/trunk/rc.bluetooth)
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 159750, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.conf.d
(from rev 159750, bluez/trunk/bluetooth.conf.d)
  bluez/repos/staging-x86_64/rc.bluetooth
(from rev 159750, bluez/trunk/rc.bluetooth)

-+
 staging-i686/PKGBUILD   |   87 +
 staging-i686/bluetooth.conf.d   |   30 +++
 staging-i686/rc.bluetooth   |  100 ++
 staging-x86_64/PKGBUILD |   87 +
 staging-x86_64/bluetooth.conf.d |   30 +++
 staging-x86_64/rc.bluetooth |  100 ++
 6 files changed, 434 insertions(+)

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 159750, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-05-26 12:43:04 UTC (rev 159751)
@@ -0,0 +1,87 @@
+# $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=3
+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;
+'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
+
+  sed -ri 's,udev_get_(dev|sys)_path([^)]+\)),/\1,g' tools/hid2hci.c
+
+  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}/usr/lib/udev/rules.d/97-bluetooth.rules
+}
+md5sums=('2387053eb5a7b02f37df4871df022a02'
+ '7412982b440f29fa7f76a41a87fef985'
+ '8f9498707f809506928b2e480d3b6789')

Copied: bluez/repos/staging-i686/bluetooth.conf.d (from rev 159750, 
bluez/trunk/bluetooth.conf.d)
===
--- staging-i686/bluetooth.conf.d   (rev 0)
+++ staging-i686/bluetooth.conf.d   2012-05-26 12:43:04 UTC (rev 159751)
@@ -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 

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

2012-03-06 Thread Tom Gundersen
Date: Tuesday, March 6, 2012 @ 18:09:43
  Author: tomegun
Revision: 152440

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 152439, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.conf.d
(from rev 152439, bluez/trunk/bluetooth.conf.d)
  bluez/repos/testing-i686/rc.bluetooth
(from rev 152439, bluez/trunk/rc.bluetooth)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 152439, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.conf.d
(from rev 152439, bluez/trunk/bluetooth.conf.d)
  bluez/repos/testing-x86_64/rc.bluetooth
(from rev 152439, bluez/trunk/rc.bluetooth)

-+
 testing-i686/PKGBUILD   |   84 +++
 testing-i686/bluetooth.conf.d   |   30 +++
 testing-i686/rc.bluetooth   |  100 ++
 testing-x86_64/PKGBUILD |   84 +++
 testing-x86_64/bluetooth.conf.d |   30 +++
 testing-x86_64/rc.bluetooth |  100 ++
 6 files changed, 428 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 152439, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-06 23:09:43 UTC (rev 152440)
@@ -0,0 +1,84 @@
+# $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=1
+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;
+'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
+  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
+}
+md5sums=('2387053eb5a7b02f37df4871df022a02'
+ '7412982b440f29fa7f76a41a87fef985'
+ '8f9498707f809506928b2e480d3b6789')

Copied: bluez/repos/testing-i686/bluetooth.conf.d (from rev 152439, 
bluez/trunk/bluetooth.conf.d)
===
--- testing-i686/bluetooth.conf.d   (rev 0)
+++ testing-i686/bluetooth.conf.d   2012-03-06 23:09:43 UTC (rev 152440)
@@ -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: