[arch-commits] Commit in bluez/repos/extra-i686 (5 files)

2017-09-12 Thread Levente Polyak
Date: Tuesday, September 12, 2017 @ 21:14:20
  Author: anthraxx
Revision: 305389

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/CVE-2017-1000250.patch
(from rev 305388, bluez/trunk/CVE-2017-1000250.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 305388, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 305388, bluez/trunk/bluetooth.modprobe)
Deleted:
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe

+
 CVE-2017-1000250.patch |   55 
 PKGBUILD   |  289 ---
 bluetooth.modprobe |6 
 3 files changed, 206 insertions(+), 144 deletions(-)

Copied: bluez/repos/extra-i686/CVE-2017-1000250.patch (from rev 305388, 
bluez/trunk/CVE-2017-1000250.patch)
===
--- CVE-2017-1000250.patch  (rev 0)
+++ CVE-2017-1000250.patch  2017-09-12 21:14:20 UTC (rev 305389)
@@ -0,0 +1,55 @@
+From 6821472c7509c54c5b1ef4744af8f6eab9be4aa7 Mon Sep 17 00:00:00 2001
+From: Fedora Bluez maintainers 
+Date: Mon, 11 Sep 2017 11:19:18 -0400
+Subject: [PATCH] Out of bounds heap read in service_search_attr_req function
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+When a long response is returned to a specific search attribute request, a
+continuation state is returned to allow reception of additional fragments, via
+additional requests that contain the last continuation state sent. However, the
+incoming “cstate” that requests additional fragments isn’t validated properly,
+and thus an out-of-bounds read of the response buffer (pResponse) can be
+achieved, leading to information disclosure of the heap.
+---
+ src/sdpd-request.c | 23 ++-
+ 1 file changed, 14 insertions(+), 9 deletions(-)
+
+diff --git a/src/sdpd-request.c b/src/sdpd-request.c
+index 1eefdce..ddeea7f 100644
+--- a/src/sdpd-request.c
 b/src/sdpd-request.c
+@@ -918,15 +918,20 @@ static int service_search_attr_req(sdp_req_t *req, 
sdp_buf_t *buf)
+   /* continuation State exists -> get from cache */
+   sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
+   if (pCache) {
+-  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
+-  pResponse = pCache->data;
+-  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
+-  buf->data_size += sent;
+-  cstate->cStateValue.maxBytesSent += sent;
+-  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
+-  cstate_size = sdp_set_cstate_pdu(buf, NULL);
+-  else
+-  cstate_size = sdp_set_cstate_pdu(buf, cstate);
++  if (cstate->cStateValue.maxBytesSent >= 
pCache->data_size) {
++  status = SDP_INVALID_CSTATE;
++  SDPDBG("Got bad cstate with invalid size");
++  } else {
++  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
++  pResponse = pCache->data;
++  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
++  buf->data_size += sent;
++  cstate->cStateValue.maxBytesSent += sent;
++  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
++  cstate_size = sdp_set_cstate_pdu(buf, 
NULL);
++  else
++  cstate_size = sdp_set_cstate_pdu(buf, 
cstate);
++  }
+   } else {
+   status = SDP_INVALID_CSTATE;
+   SDPDBG("Non-null continuation state, but null cache 
buffer");
+-- 
+2.13.5
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 21:14:05 UTC (rev 305388)
+++ PKGBUILD2017-09-12 21:14:20 UTC (rev 305389)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Andrea Scarpino 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=bluez
-pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
-pkgver=5.46
-pkgrel=1
-url="http://www.bluez.org/";
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('dbus' 'libical' 'systemd')
-source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
-bluetooth.modprobe)
-# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
-sha256sums=('ddab3d3837c1afb8ae228a94ba17709a4650bd4db24211b6771ab735c8908e28'
-'SKIP'
-'46c021be659c9a1

[arch-commits] Commit in bluez/repos (extra-i686)

2011-08-01 Thread Andrea Scarpino
Date: Monday, August 1, 2011 @ 06:31:18
  Author: andrea
Revision: 134031

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-08-01 Thread Andrea Scarpino
Date: Monday, August 1, 2011 @ 06:30:15
  Author: andrea
Revision: 134030

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-07-07 Thread Andrea Scarpino
Date: Thursday, July 7, 2011 @ 17:27:22
  Author: andrea
Revision: 130706

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-07-07 Thread Andrea Scarpino
Date: Thursday, July 7, 2011 @ 17:27:07
  Author: andrea
Revision: 130705

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-06-16 Thread Andrea Scarpino
Date: Thursday, June 16, 2011 @ 11:50:39
  Author: andrea
Revision: 127568

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-06-16 Thread Andrea Scarpino
Date: Thursday, June 16, 2011 @ 11:50:26
  Author: andrea
Revision: 127567

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-05-29 Thread Andrea Scarpino
Date: Sunday, May 29, 2011 @ 08:01:39
  Author: andrea
Revision: 125760

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-05-29 Thread Andrea Scarpino
Date: Sunday, May 29, 2011 @ 08:01:07
  Author: andrea
Revision: 125759

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-05-03 Thread Andrea Scarpino
Date: Wednesday, May 4, 2011 @ 02:57:11
  Author: andrea
Revision: 122438

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-05-03 Thread Andrea Scarpino
Date: Wednesday, May 4, 2011 @ 02:56:56
  Author: andrea
Revision: 122437

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686 testing-i686)

2011-05-03 Thread Andrea Scarpino
Date: Wednesday, May 4, 2011 @ 02:55:47
  Author: andrea
Revision: 122433

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

Added:
  bluez/repos/extra-i686/
Deleted:
  bluez/repos/testing-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-05-03 Thread Andrea Scarpino
Date: Wednesday, May 4, 2011 @ 02:55:47
  Author: andrea
Revision: 122432

db-move: bluez removed by andrea for move to [extra] (i686)

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-29 Thread Andrea Scarpino
Date: Friday, April 29, 2011 @ 20:04:10
  Author: andrea
Revision: 121273

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-29 Thread Andrea Scarpino
Date: Friday, April 29, 2011 @ 20:03:56
  Author: andrea
Revision: 121272

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:28
  Author: andrea
Revision: 119037

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:15
  Author: andrea
Revision: 119036

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-03-17 Thread Andrea Scarpino
Date: Thursday, March 17, 2011 @ 11:35:43
  Author: andrea
Revision: 115266

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-03-17 Thread Andrea Scarpino
Date: Thursday, March 17, 2011 @ 11:35:24
  Author: andrea
Revision: 115265

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-02-21 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 00:32:24
  Author: andrea
Revision: 110777

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-02-21 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 00:32:10
  Author: andrea
Revision: 110776

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-02-15 Thread Andrea Scarpino
Date: Tuesday, February 15, 2011 @ 08:31:34
  Author: andrea
Revision: 110049

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-02-15 Thread Andrea Scarpino
Date: Tuesday, February 15, 2011 @ 08:31:19
  Author: andrea
Revision: 110048

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-30 Thread Andrea Scarpino
Date: Sunday, January 30, 2011 @ 09:50:01
  Author: andrea
Revision: 108234

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-30 Thread Andrea Scarpino
Date: Sunday, January 30, 2011 @ 09:49:48
  Author: andrea
Revision: 108233

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-20 Thread Andrea Scarpino
Date: Thursday, January 20, 2011 @ 07:19:01
  Author: andrea
Revision: 106990

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-20 Thread Andrea Scarpino
Date: Thursday, January 20, 2011 @ 07:19:13
  Author: andrea
Revision: 106991

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-11 Thread Andrea Scarpino
Date: Tuesday, January 11, 2011 @ 16:05:35
  Author: andrea
Revision: 105802

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-11 Thread Andrea Scarpino
Date: Tuesday, January 11, 2011 @ 16:05:21
  Author: andrea
Revision: 105801

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-03 Thread Andrea Scarpino
Date: Monday, January 3, 2011 @ 08:37:59
  Author: andrea
Revision: 104469

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-01-03 Thread Andrea Scarpino
Date: Monday, January 3, 2011 @ 08:37:46
  Author: andrea
Revision: 104468

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-12-19 Thread Andrea Scarpino
Date: Sunday, December 19, 2010 @ 06:05:54
  Author: andrea
Revision: 103425

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-12-19 Thread Andrea Scarpino
Date: Sunday, December 19, 2010 @ 06:05:40
  Author: andrea
Revision: 103424

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-12-18 Thread Andrea Scarpino
Date: Saturday, December 18, 2010 @ 14:32:40
  Author: andrea
Revision: 103388

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-12-18 Thread Andrea Scarpino
Date: Saturday, December 18, 2010 @ 14:32:20
  Author: andrea
Revision: 103387

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686 testing-i686)

2010-12-18 Thread Andrea Scarpino
Date: Saturday, December 18, 2010 @ 14:30:04
  Author: andrea
Revision: 103383

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

Added:
  bluez/repos/extra-i686/
Deleted:
  bluez/repos/testing-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-12-18 Thread Andrea Scarpino
Date: Saturday, December 18, 2010 @ 14:30:03
  Author: andrea
Revision: 103382

db-move: bluez removed by andrea for move to [extra] (i686)

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-23 Thread Andrea Scarpino
Date: Tuesday, November 23, 2010 @ 11:27:49
  Author: andrea
Revision: 100442

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-23 Thread Andrea Scarpino
Date: Tuesday, November 23, 2010 @ 11:27:31
  Author: andrea
Revision: 100441

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-18 Thread Andrea Scarpino
Date: Thursday, November 18, 2010 @ 16:09:21
  Author: andrea
Revision: 99858

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-18 Thread Andrea Scarpino
Date: Thursday, November 18, 2010 @ 16:09:03
  Author: andrea
Revision: 99857

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-12 Thread Andrea Scarpino
Date: Friday, November 12, 2010 @ 11:56:19
  Author: andrea
Revision: 98684

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-11-12 Thread Andrea Scarpino
Date: Friday, November 12, 2010 @ 11:56:01
  Author: andrea
Revision: 98683

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-26 Thread Andrea Scarpino
Date: Tuesday, October 26, 2010 @ 15:23:50
  Author: andrea
Revision: 97138

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-26 Thread Andrea Scarpino
Date: Tuesday, October 26, 2010 @ 15:23:31
  Author: andrea
Revision: 97137

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-17 Thread Andrea Scarpino
Date: Sunday, October 17, 2010 @ 05:47:45
  Author: andrea
Revision: 95223

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-17 Thread Andrea Scarpino
Date: Sunday, October 17, 2010 @ 05:47:23
  Author: andrea
Revision: 95222

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-11 Thread Andrea Scarpino
Date: Monday, October 11, 2010 @ 17:01:16
  Author: andrea
Revision: 94871

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-10-11 Thread Andrea Scarpino
Date: Monday, October 11, 2010 @ 17:00:59
  Author: andrea
Revision: 94870

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-25 Thread Andrea Scarpino
Date: Saturday, September 25, 2010 @ 15:02:46
  Author: andrea
Revision: 91267

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-25 Thread Andrea Scarpino
Date: Saturday, September 25, 2010 @ 15:02:25
  Author: andrea
Revision: 91266

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-10 Thread Andrea Scarpino
Date: Friday, September 10, 2010 @ 16:10:45
  Author: andrea
Revision: 90351

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-10 Thread Andrea Scarpino
Date: Friday, September 10, 2010 @ 16:10:29
  Author: andrea
Revision: 90350

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-01 Thread Andrea Scarpino
Date: Wednesday, September 1, 2010 @ 05:00:45
  Author: andrea
Revision: 89450

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-09-01 Thread Andrea Scarpino
Date: Wednesday, September 1, 2010 @ 05:00:21
  Author: andrea
Revision: 89449

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-14 Thread Andrea Scarpino
Date: Wednesday, July 14, 2010 @ 04:39:06
  Author: andrea
Revision: 85473

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-14 Thread Andrea Scarpino
Date: Wednesday, July 14, 2010 @ 04:38:49
  Author: andrea
Revision: 85472

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-13 Thread Andrea Scarpino
Date: Tuesday, July 13, 2010 @ 14:38:55
  Author: andrea
Revision: 85456

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-13 Thread Andrea Scarpino
Date: Tuesday, July 13, 2010 @ 14:38:33
  Author: andrea
Revision: 85455

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-13 Thread Andrea Scarpino
Date: Tuesday, July 13, 2010 @ 08:38:16
  Author: andrea
Revision: 85426

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-13 Thread Andrea Scarpino
Date: Tuesday, July 13, 2010 @ 08:37:52
  Author: andrea
Revision: 85425

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-04 Thread Andrea Scarpino
Date: Sunday, July 4, 2010 @ 19:15:51
  Author: andrea
Revision: 84857

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-07-04 Thread Andrea Scarpino
Date: Sunday, July 4, 2010 @ 19:15:33
  Author: andrea
Revision: 84856

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-06-21 Thread Andrea Scarpino
Date: Monday, June 21, 2010 @ 14:56:55
  Author: andrea
Revision: 83468

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-06-21 Thread Andrea Scarpino
Date: Monday, June 21, 2010 @ 14:56:38
  Author: andrea
Revision: 83467

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-06-21 Thread Andrea Scarpino
Date: Monday, June 21, 2010 @ 13:11:49
  Author: andrea
Revision: 83435

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-06-21 Thread Andrea Scarpino
Date: Monday, June 21, 2010 @ 13:11:32
  Author: andrea
Revision: 83434

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-05-24 Thread Andrea Scarpino
Date: Tuesday, May 25, 2010 @ 02:44:05
  Author: andrea
Revision: 81006

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-05-24 Thread Andrea Scarpino
Date: Tuesday, May 25, 2010 @ 02:43:49
  Author: andrea
Revision: 81005

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-04-29 Thread Andrea Scarpino
Date: Thursday, April 29, 2010 @ 22:27:50
  Author: andrea
Revision: 79027

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-04-29 Thread Andrea Scarpino
Date: Thursday, April 29, 2010 @ 22:27:34
  Author: andrea
Revision: 79026

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-03-26 Thread Andrea Scarpino
Date: Friday, March 26, 2010 @ 05:49:53
  Author: andrea
Revision: 73464

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-03-26 Thread Andrea Scarpino
Date: Friday, March 26, 2010 @ 05:49:37
  Author: andrea
Revision: 73463

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-03-19 Thread Andrea Scarpino
Date: Friday, March 19, 2010 @ 10:35:55
  Author: andrea
Revision: 72749

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-03-19 Thread Andrea Scarpino
Date: Friday, March 19, 2010 @ 10:35:27
  Author: andrea
Revision: 72748

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-02-21 Thread Giovanni Scafora
Date: Sunday, February 21, 2010 @ 06:35:54
  Author: giovanni
Revision: 69593

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2010-02-21 Thread Giovanni Scafora
Date: Sunday, February 21, 2010 @ 06:35:35
  Author: giovanni
Revision: 69592

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686 extra-i686/PKGBUILD)

2010-01-24 Thread Giovanni Scafora
Date: Sunday, January 24, 2010 @ 17:38:59
  Author: giovanni
Revision: 65186

Merged revisions 65185 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bluez/trunk


  r65185 | giovanni | 2010-01-24 23:38:12 +0100 (dom, 24 gen 2010) | 2 lines
  
  upgpkg: bluez 4.60-1
  upstream release


Modified:
  bluez/repos/extra-i686/   (properties)
  bluez/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)


Property changes on: bluez/repos/extra-i686
___
Modified: svnmerge-integrated
   - /bluez/trunk:1-62024
   + /bluez/trunk:1-65185

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2010-01-24 22:38:12 UTC (rev 65185)
+++ extra-i686/PKGBUILD 2010-01-24 22:38:59 UTC (rev 65186)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=bluez
-pkgver=4.59
+pkgver=4.60
 pkgrel=1
 pkgdesc="Libraries and tools for the Bluetooth protocol stack"
 url="http://www.bluez.org/";
@@ -21,12 +21,13 @@
 source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2
 bluetooth.conf.d
 rc.bluetooth)
-md5sums=('e112cf5abba1ec9145f72666d246e783'
+md5sums=('6d15e18ec50920231d9a9e06f1edd94b'
  'd12be5b494525bb1ba6eac5c3983dd3e'
  'b67bd953082befea6ae57c6fe25993e8')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \



[arch-commits] Commit in bluez/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-30 Thread Andrea Scarpino
Date: Wednesday, December 30, 2009 @ 14:05:19
  Author: andrea
Revision: 62025

Merged revisions 62024 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bluez/trunk


  r62024 | andrea | 2009-12-30 20:04:24 +0100 (Wed, 30 Dec 2009) | 2 lines
  
  upgpkg: bluez 4.59-1
  upstream release


Modified:
  bluez/repos/extra-i686/   (properties)
  bluez/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Property changes on: bluez/repos/extra-i686
___
Modified: svnmerge-integrated
   - /bluez/trunk:1-59212
   + /bluez/trunk:1-62024

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-30 19:04:24 UTC (rev 62024)
+++ extra-i686/PKGBUILD 2009-12-30 19:05:19 UTC (rev 62025)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=bluez
-pkgver=4.58
+pkgver=4.59
 pkgrel=1
 pkgdesc="Libraries and tools for the Bluetooth protocol stack"
 url="http://www.bluez.org/";
@@ -21,7 +21,7 @@
 source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2
 bluetooth.conf.d
 rc.bluetooth)
-md5sums=('39e88ac1cdefbb34b52969a8a6627b73'
+md5sums=('e112cf5abba1ec9145f72666d246e783'
  'd12be5b494525bb1ba6eac5c3983dd3e'
  'b67bd953082befea6ae57c6fe25993e8')
 



[arch-commits] Commit in bluez/repos (extra-i686 extra-i686/PKGBUILD)

2009-11-21 Thread Andrea Scarpino
Date: Saturday, November 21, 2009 @ 08:53:25
  Author: andrea
Revision: 59213

Merged revisions 59212 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bluez/trunk


  r59212 | andrea | 2009-11-21 14:52:45 +0100 (Sat, 21 Nov 2009) | 2 lines
  
  upgpkg: bluez 4.58-1
  upstream release


Modified:
  bluez/repos/extra-i686/   (properties)
  bluez/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Property changes on: bluez/repos/extra-i686
___
Modified: svnmerge-integrated
   - /bluez/trunk:1-58105
   + /bluez/trunk:1-59212

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-11-21 13:52:45 UTC (rev 59212)
+++ extra-i686/PKGBUILD 2009-11-21 13:53:25 UTC (rev 59213)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=bluez
-pkgver=4.57
+pkgver=4.58
 pkgrel=1
 pkgdesc="Libraries and tools for the Bluetooth protocol stack"
 url="http://www.bluez.org/";
@@ -21,7 +21,7 @@
 source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2
 bluetooth.conf.d
 rc.bluetooth)
-md5sums=('e98e81fc7ac319b442a1c69fc153b85f'
+md5sums=('39e88ac1cdefbb34b52969a8a6627b73'
  'd12be5b494525bb1ba6eac5c3983dd3e'
  'b67bd953082befea6ae57c6fe25993e8')
 



[arch-commits] Commit in bluez/repos (extra-i686 extra-i686/PKGBUILD)

2009-11-03 Thread Andrea Scarpino
Date: Tuesday, November 3, 2009 @ 13:48:52
  Author: andrea
Revision: 58106

Merged revisions 58105 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bluez/trunk


  r58105 | andrea | 2009-11-03 19:48:10 +0100 (Tue, 03 Nov 2009) | 2 lines
  
  upgpkg: bluez 4.57-1
  upstream release


Modified:
  bluez/repos/extra-i686/   (properties)
  bluez/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Property changes on: bluez/repos/extra-i686
___
Modified: svnmerge-integrated
   - /bluez/trunk:1-55720
   + /bluez/trunk:1-58105

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-11-03 18:48:10 UTC (rev 58105)
+++ extra-i686/PKGBUILD 2009-11-03 18:48:52 UTC (rev 58106)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=bluez
-pkgver=4.56
+pkgver=4.57
 pkgrel=1
 pkgdesc="Libraries and tools for the Bluetooth protocol stack"
 url="http://www.bluez.org/";
@@ -21,7 +21,7 @@
 source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2
 bluetooth.conf.d
 rc.bluetooth)
-md5sums=('c9927a43237b0d510d27492971d44765'
+md5sums=('e98e81fc7ac319b442a1c69fc153b85f'
  'd12be5b494525bb1ba6eac5c3983dd3e'
  'b67bd953082befea6ae57c6fe25993e8')