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

2020-04-25 Thread Andreas Radke via arch-commits
Date: Saturday, April 25, 2020 @ 09:46:01
  Author: andyrtr
Revision: 381536

archrelease: copy trunk to staging-x86_64

Added:
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 381535, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.modprobe
(from rev 381535, bluez/trunk/bluetooth.modprobe)
  bluez/repos/staging-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 381535, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  157 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 212 insertions(+)

Copied: bluez/repos/staging-x86_64/PKGBUILD (from rev 381535, 
bluez/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-04-25 09:46:01 UTC (rev 381536)
@@ -0,0 +1,157 @@
+# 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.54
+pkgrel=2
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('68cdab9e63e8832b130d5979dc8c96fdb087b31278f342874d992af3e56656dc'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd "${pkgname}"-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib' 'json-c')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   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 

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

2020-03-16 Thread Andreas Radke via arch-commits
Date: Monday, March 16, 2020 @ 12:09:29
  Author: andyrtr
Revision: 377780

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 39, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 39, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 39, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  157 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 212 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 39, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-16 12:09:29 UTC (rev 377780)
@@ -0,0 +1,157 @@
+# 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.54
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('68cdab9e63e8832b130d5979dc8c96fdb087b31278f342874d992af3e56656dc'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd "${pkgname}"-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib' 'json-c')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   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 

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

2020-02-17 Thread Andreas Radke via arch-commits
Date: Monday, February 17, 2020 @ 18:38:25
  Author: andyrtr
Revision: 375756

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 375755, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 375755, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 375755, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  157 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 212 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 375755, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-17 18:38:25 UTC (rev 375756)
@@ -0,0 +1,157 @@
+# 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.53
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('38aa2da8302fefad53116bb281a11968732a42eeb19c5fb3668342f39b7938bc'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd "${pkgname}"-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib' 'json-c')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   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 

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

2019-12-22 Thread Andreas Radke via arch-commits
Date: Sunday, December 22, 2019 @ 14:45:40
  Author: andyrtr
Revision: 372071

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 372070, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 372070, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 372070, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  157 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 212 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 372070, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-22 14:45:40 UTC (rev 372071)
@@ -0,0 +1,157 @@
+# 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.52
+pkgrel=2
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('f7144ce2039202cfac18ccb52426efea11c98e4f6e1bb8041bcb994b8378560a'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd "${pkgname}"-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib' 'json-c')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   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 

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

2019-10-31 Thread Andreas Radke via arch-commits
Date: Thursday, October 31, 2019 @ 10:20:21
  Author: andyrtr
Revision: 366215

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 366214, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 366214, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 366214, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  157 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 212 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 366214, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-31 10:20:21 UTC (rev 366215)
@@ -0,0 +1,157 @@
+# 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.52
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('f7144ce2039202cfac18ccb52426efea11c98e4f6e1bb8041bcb994b8378560a'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd "${pkgname}"-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   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} 

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

2019-09-22 Thread Andreas Radke via arch-commits
Date: Sunday, September 22, 2019 @ 20:46:33
  Author: andyrtr
Revision: 363260

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 363259, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 363259, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 363259, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  156 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 211 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 363259, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-22 20:46:33 UTC (rev 363260)
@@ -0,0 +1,156 @@
+# 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.51
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha512sums=('8b14eea98f541b981162abce728e0f917654ad3c990721ec398fe41bdd68069fe55ff64b61bc3c3b9f813facf42c995b07619f6d5d153965de27154b1a7b578f'
+'SKIP'
+
'5370ea87fc3f76ab46f2d549c5396b6204a21b629d4765de658fe8e90331b936a36aa8624de8bb2304cc1b78ac2fa6e84f2411f247dff1aab2daf7aa21b2c650'
+
'c6ef673956963725edc52d667648e51df5b99f820e87705096b4b9338e8a4540722e734f1e8e67998c2fbbefec30645ff1fa064789c8a858f770d1214399561d')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # tests segfault and hang
+#  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' 'alsa-lib')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  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
+  

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

2019-01-10 Thread Evangelos Foutras via arch-commits
Date: Thursday, January 10, 2019 @ 16:09:16
  Author: foutrelis
Revision: 343507

archrelease: copy trunk to staging-x86_64

Added:
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 343506, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.modprobe
(from rev 343506, bluez/trunk/bluetooth.modprobe)
  bluez/repos/staging-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 343506, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  155 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 210 insertions(+)

Copied: bluez/repos/staging-x86_64/PKGBUILD (from rev 343506, 
bluez/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-10 16:09:16 UTC (rev 343507)
@@ -0,0 +1,155 @@
+# 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.50
+pkgrel=4
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha512sums=('64a680e4b3c270bc2439610c91ad2aef36131d84401e4bbdf6c2b7ec8708a19dfc942b31b9189c38a97ca072c761c669ae1aace5f4ff5d06de3ccbf33184be45'
+'SKIP'
+
'5370ea87fc3f76ab46f2d549c5396b6204a21b629d4765de658fe8e90331b936a36aa8624de8bb2304cc1b78ac2fa6e84f2411f247dff1aab2daf7aa21b2c650'
+
'c6ef673956963725edc52d667648e51df5b99f820e87705096b4b9338e8a4540722e734f1e8e67998c2fbbefec30645ff1fa064789c8a858f770d1214399561d')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  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
+  
+  # 

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

2018-06-11 Thread Christian Hesse via arch-commits
Date: Monday, June 11, 2018 @ 13:43:52
  Author: eworm
Revision: 326721

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 326720, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 326720, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 326720, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  156 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 211 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 326720, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-11 13:43:52 UTC (rev 326721)
@@ -0,0 +1,156 @@
+# $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.50
+pkgrel=3
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha512sums=('64a680e4b3c270bc2439610c91ad2aef36131d84401e4bbdf6c2b7ec8708a19dfc942b31b9189c38a97ca072c761c669ae1aace5f4ff5d06de3ccbf33184be45'
+'SKIP'
+
'5370ea87fc3f76ab46f2d549c5396b6204a21b629d4765de658fe8e90331b936a36aa8624de8bb2304cc1b78ac2fa6e84f2411f247dff1aab2daf7aa21b2c650'
+
'c6ef673956963725edc52d667648e51df5b99f820e87705096b4b9338e8a4540722e734f1e8e67998c2fbbefec30645ff1fa064789c8a858f770d1214399561d')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  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* 

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

2018-06-03 Thread Felix Yan via arch-commits
Date: Sunday, June 3, 2018 @ 17:00:24
  Author: felixonmars
Revision: 325660

archrelease: copy trunk to staging-x86_64

Added:
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 325659, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/bluetooth.modprobe
(from rev 325659, bluez/trunk/bluetooth.modprobe)
  bluez/repos/staging-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 325659, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  156 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 211 insertions(+)

Copied: bluez/repos/staging-x86_64/PKGBUILD (from rev 325659, 
bluez/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-06-03 17:00:24 UTC (rev 325660)
@@ -0,0 +1,156 @@
+# $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.49
+pkgrel=5
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha512sums=('bc2988649420232b92e2c6836857027369f05ace005972f575ed0601c02cc97a07a3b7a0707a8bad72be73df7e8096c8bf023530443556e87c2ccb667981b37d'
+'SKIP'
+
'5370ea87fc3f76ab46f2d549c5396b6204a21b629d4765de658fe8e90331b936a36aa8624de8bb2304cc1b78ac2fa6e84f2411f247dff1aab2daf7aa21b2c650'
+
'c6ef673956963725edc52d667648e51df5b99f820e87705096b4b9338e8a4540722e734f1e8e67998c2fbbefec30645ff1fa064789c8a858f770d1214399561d')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  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
+  
+  # 

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

2018-06-03 Thread Andreas Radke via arch-commits
Date: Sunday, June 3, 2018 @ 13:21:34
  Author: andyrtr
Revision: 325632

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 325631, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 325631, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/refresh_adv_manager_for_non-LE_devices.diff
(from rev 325631, bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff)

-+
 PKGBUILD|  156 ++
 bluetooth.modprobe  |3 
 refresh_adv_manager_for_non-LE_devices.diff |   52 
 3 files changed, 211 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 325631, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-03 13:21:34 UTC (rev 325632)
@@ -0,0 +1,156 @@
+# $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.50
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+refresh_adv_manager_for_non-LE_devices.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('5ffcaae18bbb6155f1591be8c24898dc12f062075a40b538b745bfd477481911'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')
+  optdepends=('ell: for btpclient')
+  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 

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

2018-04-04 Thread Andreas Radke via arch-commits
Date: Wednesday, April 4, 2018 @ 12:07:08
  Author: andyrtr
Revision: 320929

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 320928, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 320928, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/gatt_fix_crash.diff
(from rev 320928, bluez/trunk/gatt_fix_crash.diff)

-+
 PKGBUILD|  153 ++
 bluetooth.modprobe  |3 
 gatt_fix_crash.diff |   43 ++
 3 files changed, 199 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 320928, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-04 12:07:08 UTC (rev 320929)
@@ -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.49
+pkgrel=2
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe
+gatt_fix_crash.diff)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('33301d7a514c73d535ee1f91c2aed1af1f2e53efe11d3ac06bcf0d7abed2ce95'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'f40030e01136271e8009cc322c584369ed1101a5710a48509d89079606b6d666')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../gatt_fix_crash.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-midi \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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')

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

2018-02-11 Thread Andreas Radke via arch-commits
Date: Sunday, February 11, 2018 @ 09:16:15
  Author: andyrtr
Revision: 316603

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 316602, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 316602, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/fixes_order_InterfaceAdded.diff
(from rev 316602, bluez/trunk/fixes_order_InterfaceAdded.diff)

-+
 PKGBUILD|  153 ++
 bluetooth.modprobe  |3 
 fixes_order_InterfaceAdded.diff |   72 +
 3 files changed, 228 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 316602, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-02-11 09:16:15 UTC (rev 316603)
@@ -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.48
+pkgrel=2
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+fixes_order_InterfaceAdded.diff
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('b9a8723072ef66bae7ec301c774902ebcb444c9c5b149b5a199e60a1ba970e90'
+'SKIP'
+'56e4bf467b285e4c6bc50eafc88f471e3683f3c3c76afe0ffe2bd6f0d17a1eae'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i $srcdir/fixes_order_InterfaceAdded.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-midi \
+  --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' 'alsa-lib')
+  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
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 $pkgdir/usr/lib/modules-load.d
+  echo "crypto_user" > $pkgdir/usr/lib/modules-load.d/bluez.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() {

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

2013-11-03 Thread Andreas Radke
Date: Sunday, November 3, 2013 @ 19:24:43
  Author: andyrtr
Revision: 198766

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

Added:
  bluez/repos/testing-i686/PKGBUILD
(from rev 198765, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 198765, bluez/trunk/PKGBUILD)
Deleted:
  bluez/repos/testing-i686/PKGBUILD
  bluez/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  214 ++
 testing-i686/PKGBUILD   |   74 ---
 testing-x86_64/PKGBUILD |   74 ---
 3 files changed, 214 insertions(+), 148 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-11-03 18:24:14 UTC (rev 198765)
+++ testing-i686/PKGBUILD   2013-11-03 18:24:43 UTC (rev 198766)
@@ -1,74 +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')
-pkgver=5.10
-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;)
-md5sums=('7dce03b332b3a3e7465fb88352b8a404')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-library # this is deprecated
-
-  make
-}
-
-package_bluez() {
-  pkgdesc=Daemons for the bluetooth protocol stack
-  depends=('libical' 'dbus' 'glib2')
-  optdepends=(cups: CUPS backend)
-  backup=('etc/dbus-1/system.d/bluetooth.conf')
-  conflicts=('obexd-client' 'obexd-server')
-
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  ### split out bluez-utils
-  rm -rf $srcdir/_utils
-  install -dm755 $srcdir/_utils/usr/share/man
-  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
-  install -dm755 $srcdir/_utils/usr/bin
-  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
-  $srcdir/_utils/usr/bin/
-  install -dm755 $srcdir/_utils/usr/lib
-  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
-
-  ### split out bluez-libs
-  rm -rf $srcdir/_libs
-  install -dm755 $srcdir/_libs/usr/lib/
-  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
-  $srcdir/_libs/usr/lib/
-  mv $pkgdir/usr/include \
-  $srcdir/_libs/usr/
-}
-
-package_bluez-libs() {
-  pkgdesc=Deprecated libraries for the bluetooth protocol stack
-  depends=('glibc')
-
-  mv $srcdir/_libs/* $pkgdir
-}
-package_bluez-utils() {
-  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
-  depends=('systemd')
-  conflicts=('bluez-hcidump')
-  provides=('bluez-hcidump')
-  replaces=('bluez-hcidump' 'bluez=4.101')
-
-  mv $srcdir/_utils/* $pkgdir
-}

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 198765, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-03 18:24:43 UTC (rev 198766)
@@ -0,0 +1,107 @@
+# $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')
+  

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

2013-11-02 Thread Andreas Radke
Date: Saturday, November 2, 2013 @ 09:32:49
  Author: andyrtr
Revision: 198709

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 198708, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 198708, bluez/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   74 ++
 testing-x86_64/PKGBUILD |   74 ++
 2 files changed, 148 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 198708, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-02 08:32:49 UTC (rev 198709)
@@ -0,0 +1,74 @@
+# $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')
+pkgver=5.10
+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;)
+md5sums=('7dce03b332b3a3e7465fb88352b8a404')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  mv $srcdir/_utils/* $pkgdir
+}

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 198708, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-02 08:32:49 UTC (rev 198709)
@@ -0,0 +1,74 @@
+# $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')
+pkgver=5.10
+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;)
+md5sums=('7dce03b332b3a3e7465fb88352b8a404')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install 

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

2013-09-18 Thread Tom Gundersen
Date: Wednesday, September 18, 2013 @ 13:31:58
  Author: tomegun
Revision: 194546

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 194545, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 194545, bluez/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   75 ++
 testing-x86_64/PKGBUILD |   75 ++
 2 files changed, 150 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 194545, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-18 11:31:58 UTC (rev 194546)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.9
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  mv $srcdir/_utils/* $pkgdir
+}
+md5sums=('6edaf60d09ee32942a739f80ea847db1')

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 194545, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-09-18 11:31:58 UTC (rev 194546)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.9
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 

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

2013-09-14 Thread Tom Gundersen
Date: Saturday, September 14, 2013 @ 14:11:36
  Author: tomegun
Revision: 194354

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 194353, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 194353, bluez/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   75 ++
 testing-x86_64/PKGBUILD |   75 ++
 2 files changed, 150 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 194353, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-14 12:11:36 UTC (rev 194354)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.8
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd' 'libusb-compat')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  mv $srcdir/_utils/* $pkgdir
+}
+md5sums=('ed9ebe57d02a243c92af21cc13d3ee69')

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 194353, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-09-14 12:11:36 UTC (rev 194354)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.8
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out 

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

2013-07-02 Thread Tom Gundersen
Date: Tuesday, July 2, 2013 @ 14:37:05
  Author: tomegun
Revision: 189292

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 189291, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 189291, bluez/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   75 ++
 testing-x86_64/PKGBUILD |   75 ++
 2 files changed, 150 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 189291, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-02 12:37:05 UTC (rev 189292)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.7
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd' 'libusb-compat')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  mv $srcdir/_utils/* $pkgdir
+}
+md5sums=('eb883ce61753bd3f300a531bcc2af49e')

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 189291, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-07-02 12:37:05 UTC (rev 189292)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.7
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  

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

2013-06-11 Thread Tom Gundersen
Date: Tuesday, June 11, 2013 @ 18:25:35
  Author: tomegun
Revision: 188173

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

Added:
  bluez/repos/testing-i686/
  bluez/repos/testing-i686/PKGBUILD
(from rev 188172, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 188172, bluez/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   75 ++
 testing-x86_64/PKGBUILD |   75 ++
 2 files changed, 150 insertions(+)

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 188172, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-06-11 16:25:35 UTC (rev 188173)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.5
+pkgrel=3
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd' 'libusb-compat')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez=4.101')
+
+  mv $srcdir/_utils/* $pkgdir
+}
+md5sums=('cfe6bd2f7f3f45f689b3a21a6ba59edd')

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 188172, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-06-11 16:25:35 UTC (rev 188173)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.5
+pkgrel=3
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+ 

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

2013-06-01 Thread Tom Gundersen
Date: Saturday, June 1, 2013 @ 11:09:18
  Author: tomegun
Revision: 186933

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

Added:
  bluez/repos/staging-i686/
  bluez/repos/staging-i686/PKGBUILD
(from rev 186932, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 186932, bluez/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   77 ++
 staging-x86_64/PKGBUILD |   77 ++
 2 files changed, 154 insertions(+)

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 186932, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-06-01 09:09:18 UTC (rev 186933)
@@ -0,0 +1,77 @@
+# $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')
+pkgver=5.5
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+  provides=('obexd-client' 'obexd-server')
+  replaces=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 $srcdir/_utils/usr/lib
+  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
+
+  ### split out bluez-libs
+  rm -rf $srcdir/_libs
+  install -dm755 $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
+  $srcdir/_libs/usr/lib/
+  mv $pkgdir/usr/include \
+  $srcdir/_libs/usr/
+}
+
+package_bluez-libs() {
+  pkgdesc=Deprecated libraries for the bluetooth protocol stack
+  depends=('glibc')
+
+  mv $srcdir/_libs/* $pkgdir
+}
+package_bluez-utils() {
+  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
+  depends=('systemd' 'libusb-compat')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump')
+
+  mv $srcdir/_utils/* $pkgdir
+}
+md5sums=('cfe6bd2f7f3f45f689b3a21a6ba59edd')

Copied: bluez/repos/staging-x86_64/PKGBUILD (from rev 186932, 
bluez/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-06-01 09:09:18 UTC (rev 186933)
@@ -0,0 +1,77 @@
+# $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')
+pkgver=5.5
+pkgrel=1
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+  provides=('obexd-client' 'obexd-server')
+  replaces=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 

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

2013-06-01 Thread Tom Gundersen
Date: Saturday, June 1, 2013 @ 16:46:33
  Author: tomegun
Revision: 186959

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

Added:
  bluez/repos/staging-i686/PKGBUILD
(from rev 186958, bluez/trunk/PKGBUILD)
  bluez/repos/staging-x86_64/PKGBUILD
(from rev 186958, bluez/trunk/PKGBUILD)
Deleted:
  bluez/repos/staging-i686/PKGBUILD
  bluez/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |  150 ++
 staging-i686/PKGBUILD   |   77 ---
 staging-x86_64/PKGBUILD |   77 ---
 3 files changed, 150 insertions(+), 154 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2013-06-01 14:46:22 UTC (rev 186958)
+++ staging-i686/PKGBUILD   2013-06-01 14:46:33 UTC (rev 186959)
@@ -1,77 +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')
-pkgver=5.5
-pkgrel=1
-url=http://www.bluez.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
-options=(!libtool)
-source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-library # this is deprecated
-
-  make
-}
-
-package_bluez() {
-  pkgdesc=Daemons for the bluetooth protocol stack
-  depends=('libical' 'dbus' 'glib2')
-  optdepends=(cups: CUPS backend)
-  backup=('etc/dbus-1/system.d/bluetooth.conf')
-  conflicts=('obexd-client' 'obexd-server')
-  provides=('obexd-client' 'obexd-server')
-  replaces=('obexd-client' 'obexd-server')
-
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  ### split out bluez-utils
-  rm -rf $srcdir/_utils
-  install -dm755 $srcdir/_utils/usr/share/man
-  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
-  install -dm755 $srcdir/_utils/usr/bin
-  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
-  $srcdir/_utils/usr/bin/
-  install -dm755 $srcdir/_utils/usr/lib
-  mv $pkgdir/usr/lib/udev $srcdir/_utils/usr/lib/
-
-  ### split out bluez-libs
-  rm -rf $srcdir/_libs
-  install -dm755 $srcdir/_libs/usr/lib/
-  mv $pkgdir/usr/lib/{pkgconfig,libbluetooth*} \
-  $srcdir/_libs/usr/lib/
-  mv $pkgdir/usr/include \
-  $srcdir/_libs/usr/
-}
-
-package_bluez-libs() {
-  pkgdesc=Deprecated libraries for the bluetooth protocol stack
-  depends=('glibc')
-
-  mv $srcdir/_libs/* $pkgdir
-}
-package_bluez-utils() {
-  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
-  depends=('systemd' 'libusb-compat')
-  conflicts=('bluez-hcidump')
-  provides=('bluez-hcidump')
-  replaces=('bluez-hcidump')
-
-  mv $srcdir/_utils/* $pkgdir
-}
-md5sums=('cfe6bd2f7f3f45f689b3a21a6ba59edd')

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 186958, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-06-01 14:46:33 UTC (rev 186959)
@@ -0,0 +1,75 @@
+# $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')
+pkgver=5.5
+pkgrel=2
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('libusb-compat' 'dbus' 'libical' 'systemd')
+options=(!libtool)
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-library # this is deprecated
+
+  make
+}
+
+package_bluez() {
+  pkgdesc=Daemons for the bluetooth protocol stack
+  depends=('libical' 'dbus' 'glib2')
+  optdepends=(cups: CUPS backend)
+  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  ### split out bluez-utils
+  rm -rf $srcdir/_utils
+  install -dm755 $srcdir/_utils/usr/share/man
+  mv $pkgdir/usr/share/man/man1 $srcdir/_utils/usr/share/man/
+  install -dm755 $srcdir/_utils/usr/bin
+  mv 
$pkgdir/usr/bin/{bccmd,ciptool,hciattach,hciconfig,hcidump,hcitool,l2ping,l2test,rctest,rfcomm,sdptool}\
+  $srcdir/_utils/usr/bin/
+  install -dm755 

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

2012-03-31 Thread Tom Gundersen
Date: Saturday, March 31, 2012 @ 18:34:45
  Author: tomegun
Revision: 154961

archrelease: copy trunk to staging-i686

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

--+
 PKGBUILD |   84 
 bluetooth.conf.d |   30 +++
 rc.bluetooth |  100 +
 3 files changed, 214 insertions(+)

Copied: bluez/repos/staging-i686/PKGBUILD (from rev 154960, 
bluez/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-03-31 22:34:45 UTC (rev 154961)
@@ -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=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 ${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 154960, 
bluez/trunk/bluetooth.conf.d)
===
--- staging-i686/bluetooth.conf.d   (rev 0)
+++ staging-i686/bluetooth.conf.d   2012-03-31 22:34:45 UTC (rev 154961)
@@ -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: /etc/bluetooth/rfcomm.conf)
+#RFCOMM_CONFIG=/etc/bluetooth/rfcomm.conf
+
+# Options for hidd, dund and pand (default: none)
+HIDD_OPTIONS=--server
+#DUND_OPTIONS=
+#PAND_OPTIONS=

Copied: bluez/repos/staging-i686/rc.bluetooth (from rev 154960, 
bluez/trunk/rc.bluetooth)