rbcdio 0.03 → 0.04
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +623 -289
- data/ChangeLog +342 -219
- data/INSTALL +35 -26
- data/Makefile.am +2 -3
- data/Makefile.in +61 -45
- data/NEWS +7 -3
- data/README +8 -9
- data/THANKS +1 -0
- data/VERSION +1 -1
- data/config.guess +21 -11
- data/config.sub +38 -6
- data/configure +1195 -1031
- data/configure.ac +1 -1
- data/example/README +5 -3
- data/example/audio.rb +0 -0
- data/example/cd-read.rb +0 -0
- data/example/cdchange.rb +0 -0
- data/example/cdtext.rb +70 -0
- data/example/device.rb +0 -0
- data/example/drives.rb +30 -32
- data/example/eject.rb +0 -0
- data/example/iso1.rb +0 -0
- data/example/iso2.rb +0 -0
- data/example/iso3.rb +0 -0
- data/example/tracks.rb +0 -0
- data/ext/cdio/Makefile +92 -56
- data/ext/cdio/rubycdio_wrap.c +387 -101
- data/ext/iso9660/Makefile +93 -57
- data/ext/iso9660/rubyiso9660_wrap.c +127 -70
- data/install-sh +355 -159
- data/lib/cdio.rb +877 -843
- data/missing +34 -27
- data/swig/Makefile +1 -1
- data/swig/cdtext.swg +67 -0
- data/swig/device.swg +3 -3
- data/swig/disc.swg +2 -2
- data/swig/rubycdio.swg +3 -1
- data/swig/track.swg +9 -4
- data/test/cdiotest.rb +214 -216
- data/test/cdtext.rb +44 -0
- data/test/isocopy.rb +8 -9
- data/test/isotest.rb +126 -107
- metadata +21 -29
- data/doc/created.rid +0 -1
- data/doc/fr_class_index.html +0 -42
- data/doc/fr_file_index.html +0 -41
- data/doc/fr_method_index.html +0 -133
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
- data/example/COPYING +0 -340
- data/example/copying +0 -340
- data/example/drivers.rb +0 -60
data/ChangeLog
CHANGED
@@ -1,425 +1,548 @@
|
|
1
|
-
|
2
|
-
## autogenerated ChangeLog -- don't edit
|
3
|
-
##
|
1
|
+
2009-05-17 R. Bernstein <rocky@gnu.org>
|
4
2
|
|
5
|
-
|
3
|
+
* NEWS: What's up.
|
6
4
|
|
7
|
-
|
5
|
+
2009-05-17 R. Bernstein <rocky@gnu.org>
|
8
6
|
|
9
|
-
|
7
|
+
* README: Doc update
|
8
|
+
|
9
|
+
2009-05-17 R. Bernstein <rocky@gnu.org>
|
10
|
+
|
11
|
+
* example/README: Minor doc change
|
12
|
+
|
13
|
+
2009-05-17 R. Bernstein <rocky@gnu.org>
|
14
|
+
|
15
|
+
* ChangeLog, Makefile.am: Revise Makefile.am Change for git
|
16
|
+
|
17
|
+
2009-05-17 R. Bernstein <rocky@gnu.org>
|
18
|
+
|
19
|
+
* NEWS, THANKS, configure.ac: Get ready for 0.04 release
|
20
|
+
|
21
|
+
2009-05-16 R. Bernstein <rocky@gnu.org>
|
22
|
+
|
23
|
+
* .gitignore, example/.gitignore, ext/cdio/.gitignore,
|
24
|
+
ext/iso9660/.gitignore: Administrivia - add .gitignore
|
25
|
+
|
26
|
+
2009-05-16 R. Bernstein <rocky@gnu.org>
|
27
|
+
|
28
|
+
* test/cdtext.rb: Administrivia
|
29
|
+
|
30
|
+
2009-05-16 R. Bernstein <rocky@gnu.org>
|
31
|
+
|
32
|
+
* test/cdtext.rb, test/isocopy.rb: Add a CDText unit test
|
33
|
+
|
34
|
+
2009-05-14 R. Bernstein <rocky@gnu.org>
|
35
|
+
|
36
|
+
* example/cdtext.rb, lib/cdio.rb, swig/track.swg: Closer to CDText
|
37
|
+
working
|
38
|
+
|
39
|
+
2009-05-14 R. Bernstein <rocky@gnu.org>
|
40
|
+
|
41
|
+
* example/cdtext.rb, lib/cdio.rb, swig/cdtext.swg,
|
42
|
+
swig/rubycdio.swg: CDtext closer to working - I hope.
|
43
|
+
|
44
|
+
2009-05-14 R. Bernstein <rocky@gnu.org>
|
45
|
+
|
46
|
+
* test/cdiotest.rb, test/isocopy.rb: A little more Rubyish
|
47
|
+
|
48
|
+
2009-05-13 R. Bernstein <rocky@gnu.org>
|
49
|
+
|
50
|
+
Merge branch 'master' of
|
51
|
+
git://git.savannah.gnu.org/libcdio/rbcdio
|
52
|
+
|
53
|
+
2009-05-13 R. Bernstein <rocky@gnu.org>
|
54
|
+
|
55
|
+
* lib/cdio.rb, swig/cdtext.swg: Perhaps closer to getting cdtext
|
56
|
+
working
|
57
|
+
|
58
|
+
2009-05-13 R. Bernstein <rocky@gnu.org>
|
59
|
+
|
60
|
+
* lib/cdio.rb, test/cdiotest.rb, test/isotest.rb: Changes to support
|
61
|
+
both Ruby 1.8 and 1.9
|
62
|
+
|
63
|
+
2009-05-13 rocky <rocky@sanchez.(none)>
|
64
|
+
|
65
|
+
* lib/cdio.rb, swig/cdtext.swg: Perhaps closer to getting cdtext
|
66
|
+
working
|
67
|
+
|
68
|
+
2009-05-13 rocky <rocky@sanchez.(none)>
|
69
|
+
|
70
|
+
* lib/cdio.rb, test/cdiotest.rb, test/isotest.rb: Changes to support
|
71
|
+
both Ruby 1.8 and Ruby 1.9
|
72
|
+
|
73
|
+
2009-05-13 R. Bernstein <rocky@gnu.org>
|
74
|
+
|
75
|
+
* example/cdchange.rb, example/device.rb, example/drives.rb,
|
76
|
+
example/iso2.rb, swig/cdtext.swg, swig/rubycdio.swg,
|
77
|
+
test/cdiotest.rb, test/cdtext.toc: Start CDText (from pycdio).
|
78
|
+
|
79
|
+
2008-11-30 rocky <rocky>
|
80
|
+
|
81
|
+
* example/drives.rb: Another small bug
|
82
|
+
|
83
|
+
2008-11-30 rocky <rocky>
|
84
|
+
|
85
|
+
* example/drivers.rb, example/drives.rb, swig/device.swg: drivers.rb
|
86
|
+
was really drives.rb. And while are at it fix a bug in the SWIG
|
87
|
+
device_capability code.
|
88
|
+
|
89
|
+
2008-11-30 rocky <rocky>
|
90
|
+
|
91
|
+
* example/drivers.rb, swig/disc.swg: Small changes in going over
|
92
|
+
pycdio companion
|
93
|
+
|
94
|
+
2008-09-22 rocky <rocky>
|
95
|
+
|
96
|
+
* NEWS: Get ready for 0.03 release
|
97
|
+
|
98
|
+
2008-09-22 rocky <rocky>
|
99
|
+
|
100
|
+
* ChangeLog, NEWS, configure.ac: Get ready for 0.03 release
|
101
|
+
|
102
|
+
2008-08-25 rocky <rocky>
|
10
103
|
|
11
104
|
* Makefile.am, Rakefile, configure.ac: Make make install work. Bump
|
12
|
-
|
105
|
+
revision number.
|
13
106
|
|
14
|
-
2008-05-02
|
107
|
+
2008-05-02 karl <karl>
|
15
108
|
|
16
109
|
* Makefile.am, example/audio.rb, example/cd-read.rb,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
110
|
+
example/cdchange.rb, example/device.rb, example/drivers.rb,
|
111
|
+
example/eject.rb, example/iso1.rb, example/iso2.rb,
|
112
|
+
example/iso3.rb, example/tracks.rb, lib/cdio.rb, lib/iso9660.rb,
|
113
|
+
swig/audio.swg, swig/compat.swg, swig/device.swg,
|
114
|
+
swig/device_const.swg, swig/disc.swg, swig/read.swg,
|
115
|
+
swig/rubycdio.swg, swig/rubyiso9660.swg, swig/track.swg,
|
116
|
+
swig/types.swg: gplv3+
|
24
117
|
|
25
|
-
2007-12-09
|
118
|
+
2007-12-09 rocky <rocky>
|
26
119
|
|
27
120
|
* lib/cdio.rb: Doc changes to make more rdoc friendly; some doc
|
28
|
-
|
121
|
+
typos corrected too
|
122
|
+
|
123
|
+
2007-11-19 rocky <rocky>
|
124
|
+
|
125
|
+
* htdocs/index.html: .
|
126
|
+
|
127
|
+
2007-11-19 rocky <rocky>
|
29
128
|
|
30
|
-
|
129
|
+
* htdocs/index.html: .
|
31
130
|
|
32
|
-
|
131
|
+
2007-11-19 rocky <rocky>
|
33
132
|
|
34
|
-
|
133
|
+
* htdocs/index.html: > Typo
|
134
|
+
|
135
|
+
2007-11-19 rocky <rocky>
|
136
|
+
|
137
|
+
* htdocs/index.html: > Typo
|
138
|
+
|
139
|
+
2007-11-19 rocky <rocky>
|
35
140
|
|
36
141
|
* htdocs/index.html: Make more 2.0y by using css.
|
37
142
|
|
38
|
-
2007-10-27
|
143
|
+
2007-10-27 rocky <rocky>
|
144
|
+
|
145
|
+
* ChangeLog: 0.02 release.
|
39
146
|
|
40
|
-
|
147
|
+
2007-10-27 rocky <rocky>
|
41
148
|
|
42
|
-
|
149
|
+
* ChangeLog, INSTALL, NEWS: Revise for 0.02 release.
|
43
150
|
|
44
|
-
|
151
|
+
2007-10-14 rocky <rocky>
|
45
152
|
|
46
|
-
|
153
|
+
* swig/device.swg, swig/rubycdio.swg: Update copyright.
|
154
|
+
|
155
|
+
2007-10-14 rocky <rocky>
|
47
156
|
|
48
157
|
* Makefile.am: Don't use :=, = is more portable.
|
49
158
|
|
50
|
-
2007-10-13
|
159
|
+
2007-10-13 rocky <rocky>
|
51
160
|
|
52
|
-
* example/cdchange.rb: Remove require_gem update
|
161
|
+
* ChangeLog, example/cdchange.rb: Remove require_gem update
|
162
|
+
ChangeLog.
|
53
163
|
|
54
|
-
2007-10-13
|
164
|
+
2007-10-13 rocky <rocky>
|
55
165
|
|
56
|
-
* example
|
57
|
-
|
58
|
-
|
166
|
+
* example/audio.rb, example/cd-read.rb, example/device.rb,
|
167
|
+
example/drivers.rb, example/drives.rb, example/eject.rb,
|
168
|
+
example/iso1.rb, example/iso2.rb, example/iso3.rb,
|
169
|
+
example/tracks.rb: Remove require_gem statements.
|
59
170
|
|
60
|
-
2007-10-13
|
171
|
+
2007-10-13 rocky <rocky>
|
61
172
|
|
62
173
|
* Makefile.am, NEWS, example/README, example/cdchange.rb,
|
63
|
-
|
64
|
-
|
174
|
+
lib/cdio.rb, lib/iso9660.rb: reduce doc warning messages
|
175
|
+
cdchange.rb: add example program from pycdio
|
65
176
|
|
66
|
-
2007-10-13
|
177
|
+
2007-10-13 rocky <rocky>
|
67
178
|
|
68
179
|
* Makefile.am, README, configure.ac, ext/cdio/extconf.rb,
|
69
|
-
|
70
|
-
|
71
|
-
|
180
|
+
ext/iso9660/extconf.rb: Mostly small changes Makefile.am: be
|
181
|
+
explicit about requiring mkmf configure.ac: typo extconf.rb: get
|
182
|
+
libs from pkg-config
|
72
183
|
|
73
|
-
2007-10-13
|
184
|
+
2007-10-13 rocky <rocky>
|
74
185
|
|
75
|
-
* NEWS, configure.ac, test/cdiotest.rb, test/isotest.rb:
|
76
|
-
|
77
|
-
|
186
|
+
* ChangeLog, NEWS, configure.ac, test/cdiotest.rb, test/isotest.rb:
|
187
|
+
test/*: reduce warnings by defining Mypath only once configure.ac,
|
188
|
+
NEWS: get ready for 0.02 release
|
78
189
|
|
79
|
-
2007-08-01
|
190
|
+
2007-08-01 rocky <rocky>
|
80
191
|
|
81
192
|
* swig/rubyiso9660.swg: Memory allocation was off by one in the
|
82
|
-
|
83
|
-
|
84
|
-
|
193
|
+
name_translate function. This could lead to a buffer overflow when
|
194
|
+
the translated name is as long as the original. Patch by Martin
|
195
|
+
Ferrari on the Perl code.
|
85
196
|
|
86
|
-
2007-06-19
|
197
|
+
2007-06-19 rocky <rocky>
|
87
198
|
|
88
199
|
* README: Small grammar changes.
|
89
200
|
|
90
|
-
2006-12-22
|
201
|
+
2006-12-22 rocky <rocky>
|
91
202
|
|
92
203
|
* htdocs/index.html: Uncomment $Id$ line.
|
93
204
|
|
94
|
-
2006-12-22
|
205
|
+
2006-12-22 rocky <rocky>
|
95
206
|
|
96
207
|
* README, htdocs/index.html: Doc changes.
|
97
208
|
|
98
|
-
2006-12-21
|
209
|
+
2006-12-21 rocky <rocky>
|
99
210
|
|
100
211
|
* README, example/cd-read.rb, ext/cdio/extconf.rb,
|
101
|
-
|
102
|
-
|
103
|
-
|
212
|
+
ext/iso9660/extconf.rb: README: note ginstall weirdness on Solaris
|
213
|
+
ext/*/extconf.rb: Do add cygwin-specific libraries
|
214
|
+
example/cd-read.rb: trailing blank was messing up ruby magic
|
104
215
|
|
105
|
-
2006-12-16
|
216
|
+
2006-12-16 rocky <rocky>
|
106
217
|
|
107
218
|
* Rakefile: Add test/cdda.toc
|
108
219
|
|
109
|
-
2006-12-16
|
220
|
+
2006-12-16 rocky <rocky>
|
110
221
|
|
111
222
|
* Rakefile, example/device.rb, example/drivers.rb,
|
112
|
-
|
113
|
-
|
223
|
+
example/drives.rb: Rakefile: add Makefile. example/*.rb: print an
|
224
|
+
error message if no CD-ROM devices.
|
225
|
+
|
226
|
+
2006-12-16 rocky <rocky>
|
227
|
+
|
228
|
+
* ChangeLog: ChangeLog
|
114
229
|
|
115
|
-
2006-12-16
|
230
|
+
2006-12-16 rocky <rocky>
|
116
231
|
|
117
232
|
* README, example/audio.rb, example/cd-read.rb, example/eject.rb,
|
118
|
-
|
119
|
-
|
120
|
-
|
233
|
+
example/iso1.rb, example/iso3.rb, example/tracks.rb,
|
234
|
+
ext/rbiso9660/.cvsignore, lib/cdio.rb, lib/iso9660.rb: Go over rdoc
|
235
|
+
one more time before release.
|
121
236
|
|
122
|
-
2006-12-16
|
237
|
+
2006-12-16 rocky <rocky>
|
123
238
|
|
124
239
|
* ext/rbiso9660/.cvsignore: cvs lint
|
125
240
|
|
126
|
-
2006-12-16
|
241
|
+
2006-12-16 rocky <rocky>
|
127
242
|
|
128
243
|
* example/audio.rb, example/cd-read.rb, example/device.rb,
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
244
|
+
example/drivers.rb, example/drives.rb, example/eject.rb,
|
245
|
+
example/iso1.rb, example/iso2.rb, example/iso3.rb,
|
246
|
+
example/tracks.rb, lib/cdio.rb, test/cdiotest.rb: Add Cdio module
|
247
|
+
for better name scoping.
|
133
248
|
|
134
|
-
2006-12-15
|
249
|
+
2006-12-15 rocky <rocky>
|
250
|
+
|
251
|
+
* lib/iso9660.rb: [no log message]
|
252
|
+
|
253
|
+
2006-12-15 rocky <rocky>
|
135
254
|
|
136
255
|
* README: Note that SWIG creates modules.
|
137
256
|
|
138
|
-
2006-12-14
|
257
|
+
2006-12-14 rocky <rocky>
|
139
258
|
|
140
259
|
* example/iso1.rb, lib/iso9660.rb, test/isotest.rb: Put ISO9660
|
141
|
-
|
260
|
+
functions in ISO9660 class for better name scoping.
|
142
261
|
|
143
|
-
2006-12-11
|
262
|
+
2006-12-11 rocky <rocky>
|
144
263
|
|
145
264
|
* lib/iso9660.rb: Use Ruby defacto indentation (not Python
|
146
|
-
|
265
|
+
indentation)
|
147
266
|
|
148
|
-
2006-12-11
|
267
|
+
2006-12-11 rocky <rocky>
|
149
268
|
|
150
269
|
* example/cd-read.rb: Fix bug in not setting read-mode.
|
151
270
|
|
152
|
-
2006-12-09
|
271
|
+
2006-12-09 rocky <rocky>
|
153
272
|
|
154
273
|
* example/cd-read.rb, example/drivers.rb, example/drives.rb,
|
155
|
-
|
156
|
-
|
157
|
-
$:
|
274
|
+
example/eject.rb, example/iso1.rb, example/iso2.rb,
|
275
|
+
example/iso3.rb, example/tracks.rb, lib/cdio.rb: Wrong paths in $:
|
158
276
|
|
159
|
-
2006-12-09
|
277
|
+
2006-12-09 rocky <rocky>
|
160
278
|
|
161
279
|
* Makefile.am, Rakefile, THANKS: Start the thank-yous.
|
162
280
|
|
163
|
-
2006-12-09
|
281
|
+
2006-12-09 rocky <rocky>
|
164
282
|
|
165
283
|
* Rakefile, example/audio.rb, example/cd-read.rb,
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
284
|
+
example/device.rb, example/drivers.rb, example/drives.rb,
|
285
|
+
example/eject.rb, example/iso1.rb, example/iso2.rb,
|
286
|
+
example/iso3.rb, example/tracks.rb: Allow example programs to be run
|
287
|
+
anywhere via rubygems
|
170
288
|
|
171
|
-
2006-12-09
|
289
|
+
2006-12-09 rocky <rocky>
|
172
290
|
|
173
|
-
* Makefile.am, Rakefile, lib/.cvsignore, lib/Makefile: More
|
174
|
-
|
291
|
+
* Makefile.am, Rakefile, lib/.cvsignore, lib/Makefile: More lib->ext
|
292
|
+
changes.
|
175
293
|
|
176
|
-
2006-12-09
|
294
|
+
2006-12-09 rocky <rocky>
|
177
295
|
|
178
296
|
* Makefile.am, ext/cdio/.cvsignore, ext/cdio/extconf.rb,
|
179
|
-
|
180
|
-
|
181
|
-
|
297
|
+
ext/iso9660/.cvsignore, ext/iso9660/extconf.rb,
|
298
|
+
lib/cdio/.cvsignore, lib/cdio/extconf.rb, lib/iso9660/.cvsignore,
|
299
|
+
lib/iso9660/extconf.rb, test/cdiotest.rb, test/isocopy.rb,
|
300
|
+
test/isotest.rb: lib/cdio -> ext/cdio, lib/iso9660 -> ext/iso9660
|
182
301
|
|
183
|
-
2006-12-09
|
302
|
+
2006-12-09 rocky <rocky>
|
184
303
|
|
185
|
-
* Rakefile: Add "rake all" for "./configure && make". Default
|
186
|
-
|
187
|
-
|
304
|
+
* Rakefile: Add "rake all" for "./configure && make". Default target
|
305
|
+
is "all" Remove symlinks in final packages. "rake check" is the same
|
306
|
+
as "rake test"
|
188
307
|
|
189
|
-
2006-12-09
|
308
|
+
2006-12-09 rocky <rocky>
|
190
309
|
|
191
310
|
* Makefile.am, Rakefile, test/cdiotest.rb, test/isocopy.rb,
|
192
|
-
|
311
|
+
test/isotest.rb: Rake test now works.
|
193
312
|
|
194
|
-
2006-12-08
|
313
|
+
2006-12-08 rocky <rocky>
|
195
314
|
|
196
315
|
* Rakefile: Chomp is really what I wanted. Should have guessed that
|
197
|
-
|
316
|
+
that would be in Ruby too.
|
317
|
+
|
318
|
+
2006-12-08 rocky <rocky>
|
319
|
+
|
320
|
+
* .cvsignore: [no log message]
|
198
321
|
|
199
|
-
2006-12-08
|
322
|
+
2006-12-08 rocky <rocky>
|
200
323
|
|
201
|
-
* Rakefile, example/drivers.rb, example/eject.rb, swig/device.swg:
|
202
|
-
|
203
|
-
|
204
|
-
|
324
|
+
* Rakefile, example/drivers.rb, example/eject.rb, swig/device.swg:
|
325
|
+
Rakefile: correct bug in making package example/drivers.rb:
|
326
|
+
get_devices is now devices example/eject.rb: change messages to
|
327
|
+
perhaps better reflect what's goign on device.swg: fix close_tray
|
205
328
|
|
206
|
-
2006-12-08
|
329
|
+
2006-12-08 rocky <rocky>
|
207
330
|
|
208
331
|
* configure.ac: Make example files executable by default.
|
209
332
|
|
210
|
-
2006-12-03
|
333
|
+
2006-12-03 rocky <rocky>
|
211
334
|
|
212
335
|
* Rakefile, test/Rakefile: Small rake fixes.
|
213
336
|
|
214
|
-
2006-12-03
|
337
|
+
2006-12-03 rocky <rocky>
|
215
338
|
|
216
339
|
* Makefile.am, VERSION.in, lib/cdio.rb, lib/iso9660.rb,
|
217
|
-
|
218
|
-
|
340
|
+
test/Rakefile: Add regression test via Rakefile. Perhaps not the
|
341
|
+
best, but it works for now.
|
219
342
|
|
220
|
-
2006-12-03
|
343
|
+
2006-12-03 rocky <rocky>
|
221
344
|
|
222
345
|
* lib/cdio.rb: Better defaults for get_devices.
|
223
346
|
|
224
|
-
2006-12-03
|
347
|
+
2006-12-03 rocky <rocky>
|
225
348
|
|
226
349
|
* Makefile.am: Add VERSION to distribution.
|
227
350
|
|
228
|
-
2006-12-03
|
351
|
+
2006-12-03 rocky <rocky>
|
229
352
|
|
230
353
|
* lib/iso9660.rb: rdoc.
|
231
354
|
|
232
|
-
2006-12-03
|
355
|
+
2006-12-03 rocky <rocky>
|
233
356
|
|
234
357
|
* Makefile.am, README, Rakefile, configure.ac, example/audio.rb,
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
358
|
+
example/cd-read.rb, example/device.rb, example/drivers.rb,
|
359
|
+
example/drives.rb, example/eject.rb, example/iso1.rb,
|
360
|
+
example/iso2.rb, example/iso3.rb, example/tracks.rb, lib/cdio.rb,
|
361
|
+
lib/iso9660.rb: More rdoc-ification.
|
239
362
|
|
240
|
-
2006-12-03
|
363
|
+
2006-12-03 rocky <rocky>
|
241
364
|
|
242
365
|
* example/README: rdocify
|
243
366
|
|
244
|
-
2006-12-03
|
367
|
+
2006-12-03 rocky <rocky>
|
245
368
|
|
246
369
|
* .cvsignore: Ignore doc.
|
247
370
|
|
248
|
-
2006-12-03
|
371
|
+
2006-12-03 rocky <rocky>
|
249
372
|
|
250
373
|
* .cvsignore: Ignore tarballs.
|
251
374
|
|
252
|
-
2006-12-03
|
375
|
+
2006-12-03 rocky <rocky>
|
253
376
|
|
254
377
|
* example/.cvsignore: Typo.
|
255
378
|
|
256
|
-
2006-12-03
|
379
|
+
2006-12-03 rocky <rocky>
|
257
380
|
|
258
|
-
*
|
259
|
-
example/drivers.rb: Misc fixes.
|
381
|
+
* lib/.cvsignore: [no log message]
|
260
382
|
|
261
|
-
2006-12-03
|
383
|
+
2006-12-03 rocky <rocky>
|
384
|
+
|
385
|
+
* Makefile.am, example/.cvsignore, example/drivers.rb,
|
386
|
+
lib/iso9660.rb: Misc fixes.
|
387
|
+
|
388
|
+
2006-12-03 rocky <rocky>
|
262
389
|
|
263
390
|
* Makefile.am, example/tracks.rb, lib/cdio.rb, lib/iso9660.rb: Add
|
264
|
-
|
391
|
+
class doc. More simplifications.
|
265
392
|
|
266
|
-
2006-12-03
|
393
|
+
2006-12-03 rocky <rocky>
|
267
394
|
|
268
|
-
* swig
|
395
|
+
* swig/device.swg, swig/track.swg, swig/types.swg: Remove bugs.
|
269
396
|
|
270
|
-
2006-12-03
|
397
|
+
2006-12-03 rocky <rocky>
|
271
398
|
|
272
399
|
* Makefile.am, example/audio.rb, example/device.rb,
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
400
|
+
example/drives.rb, example/eject.rb, example/iso1.rb,
|
401
|
+
example/tracks.rb, lib/cdio.rb, lib/iso9660.rb, swig/device.swg,
|
402
|
+
swig/track.swg, test/cdiotest.rb, test/isotest.rb: Remove get_.
|
403
|
+
Change some method names to bools with '?' suffix and a little more
|
404
|
+
rubydocification.
|
278
405
|
|
279
|
-
2006-12-02
|
406
|
+
2006-12-02 rocky <rocky>
|
280
407
|
|
281
408
|
* Makefile.am, example/audio.rb, example/cd-read.rb,
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
409
|
+
example/device.rb, example/drives.rb, example/eject.rb,
|
410
|
+
example/iso2.rb, example/iso3.rb, example/tracks.rb, lib/cdio.rb,
|
411
|
+
lib/cdio/cdio.rb, lib/iso9660.rb, lib/iso9660/iso9660.rb,
|
412
|
+
test/cdiotest.rb, test/isocopy.rb, test/isotest.rb: Move cdio.rb and
|
413
|
+
iso9660.rb up a level. More rubydoc-ification.
|
287
414
|
|
288
|
-
2006-12-02
|
415
|
+
2006-12-02 rocky <rocky>
|
289
416
|
|
290
|
-
* example/device.rb, test/cdiotest.rb: Start
|
291
|
-
|
417
|
+
* example/device.rb, lib/cdio/cdio.rb, test/cdiotest.rb: Start
|
418
|
+
rdocification. Some set_xxx's were turned into xxx=.
|
292
419
|
|
293
|
-
2006-11-29
|
420
|
+
2006-11-29 rocky <rocky>
|
294
421
|
|
295
|
-
* Makefile.am, configure.ac,
|
296
|
-
|
297
|
-
|
298
|
-
|
422
|
+
* Makefile.am, configure.ac, lib/iso9660/iso9660.rb,
|
423
|
+
swig/rubyiso9660.swg, test/isocopy.rb, test/isotest.rb: isocopy.rb:
|
424
|
+
ISO9660 copy test Makefile.am: add ruby test programs to
|
425
|
+
distribution iso9660.rb: reinstate stat test
|
299
426
|
|
300
|
-
2006-11-29
|
427
|
+
2006-11-29 rocky <rocky>
|
301
428
|
|
302
429
|
* Makefile.am, example/README, example/drivers.rb,
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
430
|
+
example/drives.rb, example/iso2.rb, example/iso3.rb,
|
431
|
+
swig/device.swg, swig/read.swg, swig/rubyiso9660.swg: Add iso9660
|
432
|
+
seek_read. Knock off iso3.rb. Update Makefile to include example
|
433
|
+
programs drivers.rb -> drives.rb
|
307
434
|
|
308
|
-
2006-11-28
|
435
|
+
2006-11-28 rocky <rocky>
|
309
436
|
|
310
|
-
* example
|
311
|
-
|
312
|
-
|
437
|
+
* example/iso1.rb, example/iso2.rb, lib/iso9660/iso9660.rb: iso2.rb:
|
438
|
+
Add CD-image reading example program ... iso9660.rb: (and get that
|
439
|
+
working - don't need an explicit initialization) iso1.rb: remove
|
440
|
+
unused getoptlong module
|
313
441
|
|
314
|
-
2006-11-28
|
442
|
+
2006-11-28 rocky <rocky>
|
315
443
|
|
316
|
-
* Makefile.am, example/iso1.rb,
|
317
|
-
|
444
|
+
* Makefile.am, example/iso1.rb, lib/iso9660/iso9660.rb,
|
445
|
+
swig/rubyiso9660.swg: Add string_or_nil routines.
|
318
446
|
|
319
|
-
2006-11-27
|
447
|
+
2006-11-27 rocky <rocky>
|
320
448
|
|
321
449
|
* swig/rubyiso9660.swg: First cut at ISO9660 library.
|
322
450
|
|
323
|
-
2006-11-27
|
451
|
+
2006-11-27 rocky <rocky>
|
324
452
|
|
325
453
|
* Makefile.am, data/copying.iso, data/isofs-m1.bin,
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
454
|
+
data/isofs-m1.cue, example/audio.rb, example/cd-read.rb,
|
455
|
+
example/device.rb, example/drivers.rb, example/eject.rb,
|
456
|
+
example/tracks.rb, lib/.cvsignore, lib/cdio.rb,
|
457
|
+
lib/cdio/.cvsignore, lib/cdio/cdio.rb, lib/cdio/extconf.rb,
|
458
|
+
lib/extconf.rb, lib/iso9660/.cvsignore, lib/iso9660/extconf.rb,
|
459
|
+
lib/iso9660/iso9660.rb, test/cdiotest.rb, test/isofs-m1.bin,
|
460
|
+
test/isofs-m1.cue, test/isotest.rb: 1st cut at ISO9660 library.
|
331
461
|
|
332
|
-
2006-11-20
|
462
|
+
2006-11-20 rocky <rocky>
|
333
463
|
|
334
464
|
* Makefile.am, example/audio.rb, example/cd-read.rb, lib/cdio.rb,
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
465
|
+
swig/read.swg, test/cdiotest.rb, test/isofs-m1.bin,
|
466
|
+
test/isofs-m1.cue: test/*, Makefile.am : add reading test and data
|
467
|
+
for that example/cd-read.rb: example reading program (not working
|
468
|
+
yet) read.swg: remove debug output audio.rb: fix bug in conversion
|
469
|
+
from Python
|
340
470
|
|
341
|
-
2006-11-19
|
471
|
+
2006-11-19 rocky <rocky>
|
342
472
|
|
343
473
|
* lib/cdio.rb, swig/device.swg, swig/read.swg: First cut at read
|
344
|
-
|
474
|
+
routines.
|
345
475
|
|
346
|
-
2006-11-18
|
476
|
+
2006-11-18 rocky <rocky>
|
347
477
|
|
348
478
|
* example/device.rb: Correct get_hwinfo
|
349
479
|
|
350
|
-
2006-11-18
|
480
|
+
2006-11-18 rocky <rocky>
|
351
481
|
|
352
482
|
* test/cdda.toc: cdrdao test format.
|
353
483
|
|
354
|
-
2006-11-18
|
484
|
+
2006-11-18 rocky <rocky>
|
355
485
|
|
356
486
|
* test/Makefile: Convenience makefile.
|
357
487
|
|
358
|
-
2006-11-18
|
488
|
+
2006-11-18 rocky <rocky>
|
489
|
+
|
490
|
+
* lib/cdio.rb, swig/device.swg, test/cdiotest.rb: get_hwinfo knocked
|
491
|
+
off.
|
492
|
+
|
493
|
+
2006-11-18 rocky <rocky>
|
359
494
|
|
360
|
-
*
|
361
|
-
|
495
|
+
* ChangeLog, Makefile.am, example/drivers.rb, lib/cdio.rb,
|
496
|
+
swig/device.swg, test/cdiotest.rb: device.swg: Add DeviceList_t
|
497
|
+
routines Makefile.am, example/drivers.rb: One more example program
|
498
|
+
cdio.rb, cdiotest.rb: prefer xxx= to set_xxx
|
362
499
|
|
363
|
-
2006-11-
|
500
|
+
2006-11-15 rocky <rocky>
|
364
501
|
|
365
|
-
*
|
366
|
-
test/cdiotest.rb: device.swg: Add DeviceList_t routines
|
367
|
-
Makefile.am, example/drivers.rb: One more example program
|
368
|
-
cdio.rb, cdiotest.rb: prefer xxx= to set_xxx
|
502
|
+
* ChangeLog: What's happened
|
369
503
|
|
370
|
-
2006-11-15
|
504
|
+
2006-11-15 rocky <rocky>
|
371
505
|
|
372
|
-
* Makefile.am, cvs2cl_header, cvs2cl_usermap: Hack on build system
|
373
|
-
|
506
|
+
* Makefile.am, cvs2cl_header, cvs2cl_usermap: Hack on build system a
|
507
|
+
bit. Added the following: make check/test make dist
|
374
508
|
|
375
|
-
2006-11-15
|
509
|
+
2006-11-15 rocky <rocky>
|
376
510
|
|
377
511
|
* lib/cdio.rb, swig/device.swg, test/cdiotest.rb: Remove move bugs
|
378
|
-
|
512
|
+
(but also comment out more tests for now).
|
379
513
|
|
380
|
-
2006-11-15
|
514
|
+
2006-11-15 rocky <rocky>
|
381
515
|
|
382
516
|
* lib/cdio.rb, test/cdiotest.rb: Fix some errors, punt on some
|
383
|
-
|
517
|
+
errors.
|
384
518
|
|
385
|
-
2006-11-13
|
519
|
+
2006-11-13 rocky <rocky>
|
386
520
|
|
387
|
-
* test
|
388
|
-
|
521
|
+
* test/cdda.bin, test/cdda.cue, test/cdiotest.rb: First draft
|
522
|
+
regressions tests. All fail except maybe one.
|
389
523
|
|
390
|
-
2006-11-13
|
524
|
+
2006-11-13 rocky <rocky>
|
391
525
|
|
392
526
|
* Makefile.am, example/README, example/audio.rb, lib/.cvsignore,
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
527
|
+
lib/cdio.rb, swig/device.swg, swig/read.swg, swig/rubycdio.swg,
|
528
|
+
swig/track.swg: read.swg: add read routines example/*: more samples
|
529
|
+
ported over Makefile.am: include more of the SWIG files lib/cdio.rb:
|
530
|
+
turn some of the is_xx routines into xx? Many bugs still need
|
531
|
+
fixing though.
|
397
532
|
|
398
|
-
|
399
|
-
|
400
|
-
2006-11-13 Monday 05:24 Rocky Bernstein <rocky@gnu.org>
|
533
|
+
2006-11-13 rocky <rocky>
|
401
534
|
|
402
535
|
* .cvsignore: See above.
|
403
536
|
|
404
|
-
2006-11-13
|
537
|
+
2006-11-13 rocky <rocky>
|
405
538
|
|
406
|
-
* .cvsignore
|
539
|
+
* .cvsignore: See above.
|
407
540
|
|
408
|
-
2006-11-13
|
541
|
+
2006-11-13 rocky <rocky>
|
409
542
|
|
410
|
-
*
|
411
|
-
rubycdio.m4, lib/cdio.rb, lib/extconf.rb, swig/Makefile,
|
412
|
-
swig/compat.swg, example/device.rb, example/eject.rb,
|
413
|
-
example/tracks.rb, swig/audio.swg, swig/device.swg,
|
414
|
-
swig/device_const.swg, swig/disc.swg, swig/rubycdio.swg,
|
415
|
-
swig/track.swg, swig/types.swg: Initial import
|
543
|
+
* .cvsignore, swig/.cvsignore: Add some .cvsignores
|
416
544
|
|
417
|
-
2006-11-13
|
545
|
+
2006-11-13 rocky <rocky>
|
418
546
|
|
419
|
-
*
|
420
|
-
rubycdio.m4, lib/cdio.rb, lib/extconf.rb, swig/Makefile,
|
421
|
-
swig/compat.swg, example/device.rb, example/eject.rb,
|
422
|
-
example/tracks.rb, swig/audio.swg, swig/device.swg,
|
423
|
-
swig/device_const.swg, swig/disc.swg, swig/rubycdio.swg,
|
424
|
-
swig/track.swg, swig/types.swg: Initial revision
|
547
|
+
* Initial revision
|
425
548
|
|