File: use-hinawa-3.0.patch

package info (click to toggle)
hinawa-utils 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,696 kB
  • sloc: python: 14,945; makefile: 8
file content (315 lines) | stat: -rw-r--r-- 11,193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
From: Kentaro Hayashi <hayashi@clear-code.com>
Date: Sat, 12 Sep 2020 18:26:18 +0900
Subject: Bump required Hinawa version to 3.0

---
 hinawa_utils/bebob/apogee_protocol.py         | 2 +-
 hinawa_utils/bebob/bebob_unit.py              | 2 +-
 hinawa_utils/bebob/edirol_fa.py               | 2 +-
 hinawa_utils/bebob/focusrite_saffirepro_io.py | 2 +-
 hinawa_utils/bebob/maudio_protocol_normal.py  | 2 +-
 hinawa_utils/bebob/maudio_protocol_special.py | 2 +-
 hinawa_utils/dg00x/dg00x_unit.py              | 2 +-
 hinawa_utils/dice/alesis_io_unit.py           | 2 +-
 hinawa_utils/dice/dice_extended_unit.py       | 2 +-
 hinawa_utils/dice/dice_unit.py                | 2 +-
 hinawa_utils/dice/tcat_protocol_general.py    | 2 +-
 hinawa_utils/efw/efw_unit.py                  | 2 +-
 hinawa_utils/efw/transactions.py              | 2 +-
 hinawa_utils/fireface/ff_unit.py              | 2 +-
 hinawa_utils/misc/cli_kit.py                  | 2 +-
 hinawa_utils/motu/motu_protocol_abstract.py   | 2 +-
 hinawa_utils/motu/motu_unit.py                | 2 +-
 hinawa_utils/oxfw/apogee_protocol.py          | 2 +-
 hinawa_utils/oxfw/oxfw_unit.py                | 2 +-
 hinawa_utils/oxfw/tascam_protocol.py          | 2 +-
 hinawa_utils/ta1394/general.py                | 2 +-
 hinawa_utils/tscm/tscm_unit.py                | 2 +-
 22 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/hinawa_utils/bebob/apogee_protocol.py b/hinawa_utils/bebob/apogee_protocol.py
index ea2e81d..c8be379 100644
--- a/hinawa_utils/bebob/apogee_protocol.py
+++ b/hinawa_utils/bebob/apogee_protocol.py
@@ -5,7 +5,7 @@ from struct import pack
 from enum import Enum
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.ta1394.general import AvcGeneral
diff --git a/hinawa_utils/bebob/bebob_unit.py b/hinawa_utils/bebob/bebob_unit.py
index 902ce05..0934eec 100644
--- a/hinawa_utils/bebob/bebob_unit.py
+++ b/hinawa_utils/bebob/bebob_unit.py
@@ -6,7 +6,7 @@ from struct import unpack
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.ta1394.general import AvcGeneral, AvcConnection
diff --git a/hinawa_utils/bebob/edirol_fa.py b/hinawa_utils/bebob/edirol_fa.py
index e112e8f..88fdb15 100644
--- a/hinawa_utils/bebob/edirol_fa.py
+++ b/hinawa_utils/bebob/edirol_fa.py
@@ -2,7 +2,7 @@
 # Copyright (C) 2018 Takashi Sakamoto
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.bebob.bebob_unit import BebobUnit
diff --git a/hinawa_utils/bebob/focusrite_saffirepro_io.py b/hinawa_utils/bebob/focusrite_saffirepro_io.py
index 262eb66..18a664b 100644
--- a/hinawa_utils/bebob/focusrite_saffirepro_io.py
+++ b/hinawa_utils/bebob/focusrite_saffirepro_io.py
@@ -4,7 +4,7 @@
 from struct import pack, unpack
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.bebob.bebob_unit import BebobUnit
diff --git a/hinawa_utils/bebob/maudio_protocol_normal.py b/hinawa_utils/bebob/maudio_protocol_normal.py
index 7e99a8e..8f85165 100644
--- a/hinawa_utils/bebob/maudio_protocol_normal.py
+++ b/hinawa_utils/bebob/maudio_protocol_normal.py
@@ -5,7 +5,7 @@ from re import match
 from struct import unpack
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.bebob.maudio_protocol_abstract import MaudioProtocolAbstract
diff --git a/hinawa_utils/bebob/maudio_protocol_special.py b/hinawa_utils/bebob/maudio_protocol_special.py
index 9cead67..044e838 100644
--- a/hinawa_utils/bebob/maudio_protocol_special.py
+++ b/hinawa_utils/bebob/maudio_protocol_special.py
@@ -5,7 +5,7 @@ from struct import unpack, pack
 from pathlib import Path
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.bebob.maudio_protocol_abstract import MaudioProtocolAbstract
diff --git a/hinawa_utils/dg00x/dg00x_unit.py b/hinawa_utils/dg00x/dg00x_unit.py
index 08b55e0..42b7a0f 100644
--- a/hinawa_utils/dg00x/dg00x_unit.py
+++ b/hinawa_utils/dg00x/dg00x_unit.py
@@ -5,7 +5,7 @@ from threading import Thread
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.dg00x.config_rom_parser import Dg00xConfigRomParser
diff --git a/hinawa_utils/dice/alesis_io_unit.py b/hinawa_utils/dice/alesis_io_unit.py
index 329de86..ed6686e 100644
--- a/hinawa_utils/dice/alesis_io_unit.py
+++ b/hinawa_utils/dice/alesis_io_unit.py
@@ -4,7 +4,7 @@
 from struct import pack, unpack
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.dice.dice_unit import DiceUnit
diff --git a/hinawa_utils/dice/dice_extended_unit.py b/hinawa_utils/dice/dice_extended_unit.py
index 264bed6..4b93d3b 100644
--- a/hinawa_utils/dice/dice_extended_unit.py
+++ b/hinawa_utils/dice/dice_extended_unit.py
@@ -4,7 +4,7 @@
 from threading import Timer
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.dice.dice_unit import DiceUnit
diff --git a/hinawa_utils/dice/dice_unit.py b/hinawa_utils/dice/dice_unit.py
index 9de849b..148e6c2 100644
--- a/hinawa_utils/dice/dice_unit.py
+++ b/hinawa_utils/dice/dice_unit.py
@@ -5,7 +5,7 @@ from threading import Thread
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.dice.tcat_protocol_general import TcatProtocolGeneral
diff --git a/hinawa_utils/dice/tcat_protocol_general.py b/hinawa_utils/dice/tcat_protocol_general.py
index b20596d..be7a1d7 100644
--- a/hinawa_utils/dice/tcat_protocol_general.py
+++ b/hinawa_utils/dice/tcat_protocol_general.py
@@ -4,7 +4,7 @@
 from struct import unpack
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 __all__ = ['TcatProtocolGeneral']
diff --git a/hinawa_utils/efw/efw_unit.py b/hinawa_utils/efw/efw_unit.py
index 3f165a8..8a4bfe8 100644
--- a/hinawa_utils/efw/efw_unit.py
+++ b/hinawa_utils/efw/efw_unit.py
@@ -5,7 +5,7 @@ from threading import Thread
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.efw.transactions import EftInfo
diff --git a/hinawa_utils/efw/transactions.py b/hinawa_utils/efw/transactions.py
index 1d253bf..6974439 100644
--- a/hinawa_utils/efw/transactions.py
+++ b/hinawa_utils/efw/transactions.py
@@ -2,7 +2,7 @@
 # Copyright (C) 2018 Takashi Sakamoto
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from array import array
diff --git a/hinawa_utils/fireface/ff_unit.py b/hinawa_utils/fireface/ff_unit.py
index 933f030..0afb642 100644
--- a/hinawa_utils/fireface/ff_unit.py
+++ b/hinawa_utils/fireface/ff_unit.py
@@ -8,7 +8,7 @@ from pathlib import Path
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.fireface.ff_config_rom_parser import FFConfigRomParser
diff --git a/hinawa_utils/misc/cli_kit.py b/hinawa_utils/misc/cli_kit.py
index c262c92..89ac94e 100644
--- a/hinawa_utils/misc/cli_kit.py
+++ b/hinawa_utils/misc/cli_kit.py
@@ -8,7 +8,7 @@ from signal import SIGINT
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 __all__ = ['CliKit']
diff --git a/hinawa_utils/motu/motu_protocol_abstract.py b/hinawa_utils/motu/motu_protocol_abstract.py
index 632edd2..60b6230 100644
--- a/hinawa_utils/motu/motu_protocol_abstract.py
+++ b/hinawa_utils/motu/motu_protocol_abstract.py
@@ -4,7 +4,7 @@
 from abc import ABCMeta, abstractmethod
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 __all__ = ['MotuProtocolAbstract']
diff --git a/hinawa_utils/motu/motu_unit.py b/hinawa_utils/motu/motu_unit.py
index b2ab8ff..1cd633a 100644
--- a/hinawa_utils/motu/motu_unit.py
+++ b/hinawa_utils/motu/motu_unit.py
@@ -5,7 +5,7 @@ from threading import Thread
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.motu.motu_protocol_v1 import MotuProtocolV1
diff --git a/hinawa_utils/oxfw/apogee_protocol.py b/hinawa_utils/oxfw/apogee_protocol.py
index f27dc3e..7787a86 100644
--- a/hinawa_utils/oxfw/apogee_protocol.py
+++ b/hinawa_utils/oxfw/apogee_protocol.py
@@ -5,7 +5,7 @@ from enum import Enum
 from struct import pack, unpack
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.ta1394.general import AvcGeneral
diff --git a/hinawa_utils/oxfw/oxfw_unit.py b/hinawa_utils/oxfw/oxfw_unit.py
index de59eb5..c000e9d 100644
--- a/hinawa_utils/oxfw/oxfw_unit.py
+++ b/hinawa_utils/oxfw/oxfw_unit.py
@@ -7,7 +7,7 @@ from time import sleep
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.ta1394.config_rom_parser import Ta1394ConfigRomParser
diff --git a/hinawa_utils/oxfw/tascam_protocol.py b/hinawa_utils/oxfw/tascam_protocol.py
index 5f75b0a..12dca33 100644
--- a/hinawa_utils/oxfw/tascam_protocol.py
+++ b/hinawa_utils/oxfw/tascam_protocol.py
@@ -4,7 +4,7 @@
 from enum import Enum
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 from hinawa_utils.ta1394.general import AvcGeneral
diff --git a/hinawa_utils/ta1394/general.py b/hinawa_utils/ta1394/general.py
index 62637bf..f928b7d 100644
--- a/hinawa_utils/ta1394/general.py
+++ b/hinawa_utils/ta1394/general.py
@@ -2,7 +2,7 @@
 # Copyright (C) 2018 Takashi Sakamoto
 
 import gi
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import Hinawa
 
 __all__ = ['AvcGeneral', 'AvcConnection']
diff --git a/hinawa_utils/tscm/tscm_unit.py b/hinawa_utils/tscm/tscm_unit.py
index b714946..14f914a 100644
--- a/hinawa_utils/tscm/tscm_unit.py
+++ b/hinawa_utils/tscm/tscm_unit.py
@@ -7,7 +7,7 @@ from math import log10, pow
 
 import gi
 gi.require_version('GLib', '2.0')
-gi.require_version('Hinawa', '2.0')
+gi.require_version('Hinawa', '3.0')
 from gi.repository import GLib, Hinawa
 
 from hinawa_utils.tscm.config_rom_parser import TscmConfigRomParser