Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/bluez/files/
Date: Sun, 29 Jan 2017 17:40:15
Message-Id: 1485711603.c82f2c107f426f69cd82ba2b4ad569ca78d0d1bf.kensington@gentoo
1 commit: c82f2c107f426f69cd82ba2b4ad569ca78d0d1bf
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 27 15:41:06 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 17:40:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c82f2c10
7
8 net-wireless/bluez: remove unused patches
9
10 ...-Logitech-diNovo-Edge-keyboard-firmware-i.patch | 29 ------------
11 net-wireless/bluez/files/bluez-5.37-endian.patch | 51 ----------------------
12 2 files changed, 80 deletions(-)
13
14 diff --git a/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch b/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch
15 deleted file mode 100644
16 index 55d5af6..00000000
17 --- a/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch
18 +++ /dev/null
19 @@ -1,29 +0,0 @@
20 -From aa73bf5039dfd2cf0a52dd6fd22501d955cc1a00 Mon Sep 17 00:00:00 2001
21 -From: Tommy <mesilliac@×××××.com>
22 -Date: Thu, 10 Jan 2013 09:18:43 +0100
23 -Subject: [PATCH] work around Logitech diNovo Edge keyboard firmware issue
24 -
25 -https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/269851
26 ----
27 - tools/hid2hci.rules | 5 ++++-
28 - 1 files changed, 4 insertions(+), 1 deletions(-)
29 -
30 -diff --git a/tools/hid2hci.rules b/tools/hid2hci.rules
31 -index db6bb03..7db4572 100644
32 ---- a/tools/hid2hci.rules
33 -+++ b/tools/hid2hci.rules
34 -@@ -11,7 +11,10 @@ ATTR{bInterfaceClass}=="03", ATTR{bInterfaceSubClass}=="01", ATTR{bInterfaceProt
35 - RUN+="hid2hci --method=dell --devpath=%p", ENV{HID2HCI_SWITCH}="1"
36 -
37 - # Logitech devices
38 --KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[34bc]", \
39 -+KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[5e]", \
40 -+ RUN+="hid2hci --method=logitech-hid --devpath=%p"
41 -+# Logitech, Inc. RAW communicating devices
42 -+KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[34abc]|c71[34bc]", \
43 - RUN+="hid2hci --method=logitech-hid --devpath=%p"
44 -
45 - ENV{DEVTYPE}!="usb_device", GOTO="hid2hci_end"
46 ---
47 -1.8.0.1
48 -
49
50 diff --git a/net-wireless/bluez/files/bluez-5.37-endian.patch b/net-wireless/bluez/files/bluez-5.37-endian.patch
51 deleted file mode 100644
52 index 1ffa350..00000000
53 --- a/net-wireless/bluez/files/bluez-5.37-endian.patch
54 +++ /dev/null
55 @@ -1,51 +0,0 @@
56 ---- a/profiles/audio/a2dp-codecs.h
57 -+++ b/profiles/audio/a2dp-codecs.h
58 -@@ -149,6 +149,17 @@
59 - uint16_t codec_id;
60 - } __attribute__ ((packed)) a2dp_vendor_codec_t;
61 -
62 -+typedef struct {
63 -+ a2dp_vendor_codec_t info;
64 -+ uint8_t channel_mode:4;
65 -+ uint8_t frequency:4;
66 -+} __attribute__ ((packed)) a2dp_aptx_t;
67 -+
68 -+typedef struct {
69 -+ a2dp_vendor_codec_t info;
70 -+ uint8_t unknown[2];
71 -+} __attribute__ ((packed)) a2dp_ldac_t;
72 -+
73 - #if __BYTE_ORDER == __LITTLE_ENDIAN
74 -
75 - typedef struct {
76 -@@ -183,17 +194,6 @@
77 - uint8_t bitrate3;
78 - } __attribute__ ((packed)) a2dp_aac_t;
79 -
80 --typedef struct {
81 -- a2dp_vendor_codec_t info;
82 -- uint8_t channel_mode:4;
83 -- uint8_t frequency:4;
84 --} __attribute__ ((packed)) a2dp_aptx_t;
85 --
86 --typedef struct {
87 -- a2dp_vendor_codec_t info;
88 -- uint8_t unknown[2];
89 --} __attribute__ ((packed)) a2dp_ldac_t;
90 --
91 - #elif __BYTE_ORDER == __BIG_ENDIAN
92 -
93 - typedef struct {
94 -@@ -228,12 +228,6 @@
95 - uint8_t bitrate3;
96 - } __attribute__ ((packed)) a2dp_aac_t;
97 -
98 --typedef struct {
99 -- a2dp_vendor_codec_t info;
100 -- uint8_t frequency:4;
101 -- uint8_t channel_mode:4;
102 --} __attribute__ ((packed)) a2dp_aptx_t;
103 --
104 - #else
105 - #error "Unknown byte order"
106 - #endif