File: ChangeLog

package info (click to toggle)
randomize-lines 0.2.7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 600 kB
  • ctags: 76
  • sloc: sh: 3,823; ansic: 741; makefile: 73
file content (923 lines) | stat: -rw-r--r-- 21,866 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
2008-07-26 13:14  arthur

	* [r210] debian/copyright, rl.1.in, rl.c: update copyright year

2008-07-26 13:14  arthur

	* [r209] rl.1.in, rl.c: remove trailing spaces

2008-07-26 12:58  arthur

	* [r208] debian/control: add deprecation notice to package
	  description

2008-07-26 12:50  arthur

	* [r207] README: add a more prominent note on shuf, update
	  copyright year and add results of quick comparison

2008-07-26 11:30  arthur

	* [r206] INSTALL, autogen.sh, config.guess, config.sub,
	  configure.ac, depcomp, install-sh, missing, mkinstalldirs:
	  upgrade to automake 1.10

2008-06-15 17:30  arthur

	* [r205] debian/control: upgrade to standards-version 3.8.0 (no
	  changes needed)

2008-06-15 17:27  arthur

	* [r204] debian/control: fix Vcs-* links to point to the trunk

2008-06-15 17:26  arthur

	* [r203] debian/copyright: take a shot at making debian/copyright
	  machine parseable

2007-12-07 13:53  arthur

	* [r202] README, rl.c: don't use backtick as quote character

2007-11-20 21:53  arthur

	* [r201] debian/control: remove XS- prefix from version control
	  fields

2007-11-20 21:48  arthur

	* [r200] debian/control: put Homepage field in source stanza

2007-07-23 15:25  arthur

	* [r199] autogen.sh: force regeneration of all files

2007-07-23 15:25  arthur

	* [r198] debian/control: add XS-Vcs-Svn and XS-Vcs-Browser as
	  specified in #391023

2007-07-23 15:24  arthur

	* [r197] debian/rules: use stricter distclean run in clean target
	  as suggested by lintian

2007-06-14 21:08  arthur

	* [r195] ChangeLog, NEWS, TODO, configure.ac, debian/changelog: get
	  files ready for 0.2.6 release

2007-06-14 21:05  arthur

	* [r194] config.guess, config.sub: include updated files

2007-06-14 21:01  arthur

	* [r193] Makefile.am, debian/copyright, rl.c: bump copyright year

2007-06-14 20:55  arthur

	* [r192] rl.1.in: remove the dangerous example and add some benign
	  ones by A. Costa <agcosta@gis.net>

2007-06-14 20:52  arthur

	* [r191] Makefile.am: take out the signeddeb line and just use
	  debuild

2007-06-14 18:54  arthur

	* [r190] README: update version information on Debian and fix
	  spelling mistake

2007-06-14 18:52  arthur

	* [r189] README: change reporting bugs section and add a
	  development status section

2007-06-14 18:34  arthur

	* [r188] alloc.c, alloc.h: remove xstrdup() as it's not used

2006-09-30 07:54  arthur

	* [r186] ChangeLog, NEWS, configure.ac, debian/changelog: get files
	  ready for 0.2.5 release

2006-09-30 07:52  arthur

	* [r185] .: also ignore .build files

2006-09-30 07:50  arthur

	* [r184] Makefile.am: switch to using debuild

2006-09-30 07:49  arthur

	* [r183] debian/control: upgrade to standards-version 3.7.2 (no
	  changes needed)

2006-09-29 21:40  arthur

	* [r182] README, TODO, rl.1.in: some documentation (wrapping and
	  other) improvements

2006-09-29 18:41  arthur

	* [r181] INSTALL, autogen.sh, config.guess, config.sub,
	  configure.ac, depcomp, install-sh, missing, mkinstalldirs:
	  upgrade to autoconf 2.60a and automake 1.9.6 (makeing
	  configure.ac simpler and more readable)

2006-09-29 10:26  arthur

	* [r180] debian/control: include link to homepage in package
	  description

2006-09-29 09:49  arthur

	* [r179] debian/copyright: add a notice as to where rl can be
	  downloaded

2006-09-29 09:48  arthur

	* [r178] README, configure.ac, debian/copyright, rl.1.in, rl.c:
	  update copyright year (as a preperation for a release that is
	  scheduled somewhere this year)

2006-09-29 09:46  arthur

	* [r177] Makefile.am: include revision numbers in ChangeLog

2006-09-29 09:20  arthur

	* [r176] NEWS, README, TODO, debian/changelog: fix some spelling
	  problems

2006-09-29 09:18  arthur

	* [r175] debian: ignore backup files

2006-09-29 09:13  arthur

	* [r174] .: ignore backup files

2006-09-29 09:03  arthur

	* [r173] rl.1.in: fix some typos

2005-07-29 09:48  arthur

	* [r172] AUTHORS, README, configure.ac, rl.spec.in: change email
	  address from arthur@tiefighter.et.tudelft.nl to
	  arthur@ch.tudelft.nl (including urls etc)

2005-07-29 09:46  arthur

	* [r171] rl.1.in: remove email address from manual page

2005-06-25 21:42  arthur

	* [r170] COPYING, Makefile.am, README, alloc.c, alloc.h, buffer.c,
	  buffer.h, configure.ac, getopt_long.c, getopt_long.h, random.c,
	  random.h, rl.1.in, rl.c, rl.h: update COPYING from the FSF
	  (postal address change) and update copyright headers along with
	  it (also correcting indenting)

2005-05-17 13:51  arthur

	* [r169] buffer.c, buffer.h, rl.1.in, rl.c: implement --line-number
	  option to dump line numbers (plus some consitency code fixes)

2005-04-23 15:51  arthur

	* [r166] ChangeLog: check in latest changes for release

2005-04-23 15:51  arthur

	* [r165] NEWS, configure.ac, debian/changelog: bump version number
	  to 0.2.4

2005-04-23 15:48  arthur

	* [r164] rl.1.in: add note about specifying multiple input files to
	  bugs section

2005-04-22 20:13  arthur

	* [r163] Makefile.am: use svn2cl to generate ChangeLog

2005-04-22 19:57  arthur

	* [r162] rl.c: check for errors during and after reading input

2005-04-22 19:16  arthur

	* [r161] rl.c: check results of write operations, thanks to Zygo
	  Blaxell <zblaxell@ashura.furryterror.org> for reporting this
	  problem

2005-04-02 11:46  arthur

	* [r159] ChangeLog: check in latest changes for ChangeLog

2005-04-02 11:45  arthur

	* [r158] ChangeLog, NEWS, TODO, configure.ac, debian/changelog:
	  bump version number for release 0.2.3

2005-04-02 11:41  arthur

	* [r157] Makefile.am: do not ship rl.1 since it is generated

2005-04-01 21:44  arthur

	* [r156] rl.c: upgrade copyrights notice

2005-04-01 21:10  arthur

	* [r155] README: remove cvs section since we're not using it any
	  more

2005-04-01 21:03  arthur

	* [r154] README, debian/copyright, rl.1.in: upgrade copyrights
	  notices

2005-04-01 20:20  arthur

	* [r153] ChangeLog: regenerate ChangeLog using svn2cl

2005-04-01 20:15  arthur

	* [r152] INSTALL, autogen.sh, config.guess, config.sub,
	  configure.ac, depcomp, install-sh, missing, mkinstalldirs:
	  upgrade to automake 1.9 and most recent autoconf

2005-04-01 20:10  arthur

	* [r151] debian/control: bump dephelper dependency to 4

2005-04-01 19:01  arthur

	* [r150] Makefile.am: clean up makefile

2005-04-01 18:55  arthur

	* [r149] debian/control: start short description with lower case
	  letter (thanks lintian)

2004-11-28 00:16  arthur

	* [r148] configure.ac, random.c: make it possible to choose random
	  number generator at configure time

2004-11-27 19:56  arthur

	* [r147] configure.ac: check sizeof(int) instead of sizeof(int *)

2004-11-26 16:47  arthur

	* [r146] ., .cvsignore, debian, debian/.cvsignore: remove cvsignore
	  files

2004-11-21 16:26  arthur

	* [r145] rl.1.in: add a BUGS section documenting some of the
	  current shortcomings

2004-11-21 16:24  arthur

	* [r144] configure.ac: also print some extra information in
	  configure run (wrote my own test_

2004-11-21 15:06  arthur

	* [r143] README: remove section that is now in manual page and some
	  small improvements

2004-11-21 15:05  arthur

	* [r142] config.guess, config.sub, depcomp, install-sh,
	  mkinstalldirs: upgrade file from automake/autoconf

2004-11-21 15:00  arthur

	* [r141] ChangeLog: cvs generated Changelog (changes up to r139)

2004-03-15 19:32  arthur

	* [r139] autogen.sh, depcomp, install-sh, missing, mkinstalldirs:
	  upgrade to automake 1.8

2004-01-31 20:02  arthur

	* [r138] config.guess, config.sub, configure.ac: upgrade to using
	  autoconf 2.59

2004-01-31 19:50  arthur

	* [r137] rl.c: fix typo and update copyrights notice

2004-01-31 19:47  arthur

	* [r136] README: rl is not really alpha software any more but keep
	  warning on command line options changes, update copyrights and
	  find usage of debian

2003-10-13 18:46  arthur

	* [r134] ChangeLog, NEWS, configure.ac, debian/changelog: release
	  0.2.2

2003-10-13 18:38  arthur

	* [r133] debian, debian/.cvsignore: clean out .cvsignore file

2003-10-13 18:36  arthur

	* [r132] ChangeLog: regenerated ChangeLog and compacted some parts

2003-10-13 18:24  arthur

	* [r131] debian/docs: do not ship ChangeLog along with binary

2003-10-13 18:22  arthur

	* [r130] Makefile.am: also ship debian/compat in source tarballs so
	  comaptibility is actually set and rl is included as binary

2003-10-12 19:59  arthur

	* [r128] ChangeLog, NEWS, TODO, configure.ac, debian/changelog:
	  release 0.2.1

2003-10-12 16:22  arthur

	* [r127] ., .cvsignore: generate rl manual page from rl.1.in to
	  easily set version and month

2003-10-12 16:13  arthur

	* [r126] rl.spec.in: redid cpec file for rpm building also based on
	  suggestions by Chris Knowles <knowlesc@scaredsheep.net>

2003-10-12 16:11  arthur

	* [r125] configure.ac, rl.1, rl.1.in: generate rl manual page from
	  rl.1.in to easily set version and month

2003-10-12 16:06  arthur

	* [r124] debian/control: upgrade to standards-version 3.6.1 (no
	  changes needed)

2003-10-12 16:06  arthur

	* [r123] debian/control: modify package description slightly

2003-10-12 16:05  arthur

	* [r122] debian/rules: pass --build and --host options to configure

2003-10-12 16:04  arthur

	* [r121] debian/compat, debian/rules: save debhelper compatibily
	  level in debian/compat

2003-10-12 15:50  arthur

	* [r120] Makefile.am, README, alloc.c, buffer.c, debian/copyright,
	  rl.1, rl.c, rl.h: updated copyrights

2003-10-12 15:44  arthur

	* [r119] autogen.sh, config.guess, config.sub, configure.ac,
	  depcomp, install-sh, missing, mkinstalldirs: upgrade to autoconf
	  2.57 and automake 1.7

2003-09-21 20:03  arthur

	* [r118] Makefile.am, debian/control: change maintainer address to
	  adejong@debian.org

2003-05-18 18:11  arthur

	* [r117] configure.ac: check for all used headers

2003-05-18 18:10  arthur

	* [r116] buffer.c: also include string.h for memcpy()

2003-05-18 18:07  arthur

	* [r115] README, TODO: moved TODO items from README to TODO

2003-05-18 18:02  arthur

	* [r114] README: updated cvs section

2003-05-18 17:27  arthur

	* [r113] rl.c: removed maximum to --count command line option

2002-10-27 17:00  arthur

	* [r111] ChangeLog, NEWS, TODO, configure.ac, debian/changelog:
	  release 0.2.0

2002-10-27 16:47  arthur

	* [r110] getopt_long.h: remove unneeded spaces and update copyright

2002-10-27 16:38  arthur

	* [r109] rl.1, rl.c: add --reselect option to replace --uniq option
	  and change default behaviour to select lines only once instead of
	  multiple times

2002-10-27 16:21  arthur

	* [r108] Makefile.am, random.c, random.h, rl.c, rl.h: move
	  definitions of random related funtions from rl.h to random.h

2002-10-27 16:16  arthur

	* [r107] debian/rules: enable extra compiler warnings by default

2002-10-27 16:14  arthur

	* [r106] rl.c, rl.h: updated function declarations

2002-10-27 16:04  arthur

	* [r105] INSTALL, config.guess, config.sub, install-sh: newer
	  versions from autoconf and automake

2002-10-27 15:54  arthur

	* [r104] rl.1: add example section to manual

2002-10-27 15:54  arthur

	* [r103] rl.1, rl.c: add --output, --delimiter and --null command
	  line options

2002-10-27 15:53  arthur

	* [r102] autogen.sh: add warnings when calling autoheader and
	  autoconf

2002-10-19 23:15  arthur

	* [r101] Makefile.am, buffer.c, buffer.h, rl.c, rl.h: add delimiter
	  paramater to buffer_readline() function and move definitions of
	  buffer functions to buffer.h

2002-10-19 23:05  arthur

	* [r100] Makefile.am, alloc.c, alloc.h, buffer.c, getopt_long.c,
	  random.c, rl.c, rl.h: add xstrdup() function, move alloc function
	  definitions to alloc.h, fix copyright notices and include
	  "config.h" instead of <config.h>

2002-10-13 17:52  arthur

	* [r99] debian/control: fixed typo

2002-10-06 19:12  arthur

	* [r97] debian/changelog: release 0.1.7

2002-10-06 19:05  arthur

	* [r96] ChangeLog, NEWS, TODO, configure.ac, debian/changelog:
	  release 0.1.7

2002-10-06 19:03  arthur

	* [r95] config.guess, config.sub: newer versions

2002-10-06 18:50  arthur

	* [r94] debian/docs: added NEWS file to docs

2002-10-06 18:49  arthur

	* [r93] debian/control: made description a bit more verbose

2002-10-06 14:39  arthur

	* [r92] ., .cvsignore: ignore new package name

2002-10-06 14:32  arthur

	* [r91] debian/changelog, debian/control, debian/rules: renamed
	  debian package to randomize-lines

2002-09-26 11:41  arthur

	* [r90] README, rl.c: updated copyright statements

2002-09-26 11:36  arthur

	* [r89] NEWS: changed layout

2002-09-26 11:35  arthur

	* [r88] debian/rules: cleaned out old stuff and installing
	  debian/changelog

2002-09-26 11:34  arthur

	* [r87] Makefile.am, debian/copyright: added debian/copyright file
	  describing copyright info

2002-09-15 16:43  arthur

	* [r86] ., .cvsignore, INSTALL, autogen.sh, config.guess,
	  config.sub, configure.ac, configure.in, missing: latest versions
	  of autoconf, automake and related files

2002-09-15 16:22  arthur

	* [r85] rl.c: --help string is now better OPTIONS->OPTION

2002-09-15 16:19  arthur

	* [r84] Makefile.am: make deb now doesn't use dpkg-buildpackage any
	  more

2002-09-15 16:18  arthur

	* [r83] ChangeLog, Makefile.am, NEWS: ChangeLog file renamed to
	  NEWS and Changelog is now generated by make changelog

2001-10-05 11:30  arthur

	* [r82] ChangeLog, Makefile.am, debian/docs: * added simple docs to
	  debian package

2001-10-05 11:28  arthur

	* [r81] ChangeLog, debian/rules: * fixed bug installing debian
	  package wrong

2001-10-01 20:33  arthur

	* [r79] ChangeLog, TODO, configure.in, debian/changelog: * general
	  stuff for release 0.1.6

2001-10-01 20:26  arthur

	* [r78] rl.1: * fixed typo

2001-10-01 17:36  arthur

	* [r77] ., .cvsignore, Makefile.am, debian, debian/.cvsignore,
	  debian/changelog, debian/control, debian/rules: added debian
	  package stuff

2001-07-18 19:39  arthur

	* [r76] alloc.c, buffer.c, getopt_long.c, getopt_long.h, random.c,
	  rl.c, rl.h: * tried to abide by GNU coding standards

2001-03-25 23:20  arthur

	* [r74] ChangeLog, configure.in: * changes for release 0.1.5

2001-03-25 23:19  arthur

	* [r73] rl.1: * improved documentation

2001-03-25 20:30  arthur

	* [r72] TODO: * added even more to TODO

2001-03-25 20:30  arthur

	* [r71] README: * improved README

2001-03-25 20:30  arthur

	* [r70] rl.c: * improved --help messages

2001-03-23 13:12  arthur

	* [r69] ChangeLog: * first real Changelog

2001-03-23 13:11  arthur

	* [r68] TODO: *** empty log message ***

2001-03-22 23:59  arthur

	* [r67] buffer.c, rl.c, rl.h: * added buffer_readfile() to buffer.c
	  * moved BLOCKSIZE to rl.h
	  * used buffer_readfile() in randomizefile()

2001-03-22 23:44  arthur

	* [r66] rl.c: * moved struct buffer (was struct line) functions
	  from rl.c to buffer.c
	  * renamed struct line to struct buffer and renamed some functions

2001-03-22 23:44  arthur

	* [r65] rl.h: * moved struct buffer (was struct line) functions
	  from rl.c to buffer.c

2001-03-22 23:43  arthur

	* [r64] Makefile.am: * added buffer.c

2001-03-22 23:42  arthur

	* [r63] buffer.c: * initial commit
	  * moved struct buffer (was struct line) functions from rl.c to
	  buffer.c

2001-03-22 20:25  arthur

	* [r62] rl.c: * renamed result to lines in rl_withreplace() for
	  consistency

2001-03-22 20:20  arthur

	* [r61] rl.c: * fixed a small memory leak and halved the number of
	  malloc() calls in rl_withreplace()
	  * smaller and clearer code (saved about 15 lines) in
	  rl_withreplace()

2001-03-21 22:11  arthur

	* [r59] configure.in: * release -> 0.1.4

2001-03-21 22:11  arthur

	* [r58] rl.c: * code cleanup

2001-03-21 22:06  arthur

	* [r57] TODO: *** empty log message ***

2001-03-21 21:03  arthur

	* [r56] configure.in: * added --enable-debug flag to configure

2001-03-21 21:02  arthur

	* [r55] alloc.c: * renamed DEBUG_ALLOC to just DEBUG

2001-03-21 20:58  arthur

	* [r54] rl.c: * used random_below() and random_draw() to do random
	  stuff

2001-03-21 20:57  arthur

	* [r53] random.c, rl.h: * added random_below() to return a number
	  in a range
	  * added random_draw() to return true or false with a ceirtain
	  chance

2001-03-21 20:35  arthur

	* [r52] autogen.sh: * initial commit

2001-03-21 20:25  arthur

	* [r51] Makefile.am, configure.in: * moved -Wall flag for gcc from
	  Makefile.am to configure.in so it is only used with gcc

2001-03-21 20:22  arthur

	* [r50] Makefile.am, random.c, randomize.c, rl.h: * renamed
	  randomize.c to random.c

2001-03-20 21:30  arthur

	* [r49] alloc.c: * added optional debugging code

2001-03-19 21:00  arthur

	* [r48] rl.c: * added rl_randomizefile() function to randomize the
	  lines of a complete file
	  * made randomizing complete input default if no --count is given

2001-03-19 20:31  arthur

	* [r47] rl.c: * added some comments
	  * changed to use xxmalloc() and xxrealloc() for cleaner code
	  * added init_line(), grow_line() and free_line() functions for
	  better memory management

2001-03-19 19:28  arthur

	* [r46] TODO: *** empty log message ***

2001-03-19 18:32  arthur

	* [r45] rl.h: * added xxmalloc() and xxrealloc() macros with
	  storage type parameter

2001-03-17 22:45  arthur

	* [r44] AUTHORS, ChangeLog, README, rl.1, rl.lsm.in, rl.spec.in: *
	  changed email address to arthur@tiefighter.et.tudelft.nl
	  * updated document to include a real description

2001-03-15 01:07  arthur

	* [r42] rl.c: * fixed another initialisation bug
	  (it sure has been a long time since useing malloc()
	  I've been spoiled by Java)

2001-03-15 00:56  arthur

	* [r41] rl.c: * use xfree() instead of free()
	  * added describing comment to copyline()
	  * fixed several memory problems

2001-03-15 00:53  arthur

	* [r40] rl.h: * added xfree() to alloc.c

2001-03-15 00:52  arthur

	* [r39] alloc.c: * added xfree() mainly for easy debugging

2001-03-13 22:52  arthur

	* [r38] configure.in: * version ->0.1.3

2001-03-13 22:46  arthur

	* [r37] TODO: *** empty log message ***

2001-03-13 22:35  arthur

	* [r36] randomize.c: * disabled reading from /dev/?random since
	  srand() and rand() are bad anyway
	  (currently only pid+time in millis is used)

2001-03-13 22:30  arthur

	* [r35] getopt_long.c: * fixed missing include string.h
	  * fixed unused var

2001-03-13 17:56  arthur

	* [r34] Makefile.am, alloc.c, rl.h: * moved x*alloc() functions to
	  alloc.c (definitions to rl.h)
	  * all definitions of functions are now in rl.h

2001-03-13 17:55  arthur

	* [r33] rl.c: * moved x*alloc() functions to alloc.c (definitions
	  to rl.h)
	  * all definitions of functions are now in rl.h
	  * quiet is no longer static so it can be shared

2001-03-13 17:52  arthur

	* [r32] randomize.c, randomize.h: * moved exported definitions from
	  randomize.c to rl.h (was randomize.h)

2001-03-12 00:04  arthur

	* [r31] randomize.h: * fixed wrong define _RANDOMIZE_H

2001-03-12 00:03  arthur

	* [r30] rl.c: * changed to have arbitraty length lines
	  * -u now randomizes order of lines (not only which lines apear)

2001-03-12 00:00  arthur

	* [r29] rl.c: * fixed includes and excess parameter in --help

2001-03-11 23:52  arthur

	* [r28] Makefile.am: * added -Wall to CFLAGS (is this the right
	  place?)

2001-03-07 22:29  arthur

	* [r27] ., .cvsignore: * stamp-h* -> stamp-*

2001-03-07 22:24  arthur

	* [r26] configure.in: * added config.h
	  * removed unuser stuff

2001-03-07 22:24  arthur

	* [r25] ., .cvsignore, getopt_long.c, randomize.c, rl.c: * added
	  config.h

2001-03-07 21:24  arthur

	* [r24] getopt_long.c: * forgot to compare strncmp() to 0

2001-03-06 23:52  arthur

	* [r22] Makefile.am, TODO, configure.in, getopt_long.c,
	  getopt_long.h, randomize.c, randomize.h, rl.c: * renamed
	  initrandom() to randomize() and moved to randomize.c
	  * implemented getopt_long() in getopt_long.c and done some fancy
	  configure work to auto-link it when needed
	  * new release (0.1.2)

2001-03-05 23:44  arthur

	* [r20] TODO, configure.in: * added emulation (poor) of
	  getopt_long()

2001-03-05 23:44  arthur

	* [r19] rl.c: * added emulation (poor) of getopt_long()
	  * --quiet now works on getopt() too

2001-03-05 22:51  arthur

	* [r17] TODO: real version

2001-03-05 22:50  arthur

	* [r16] configure.in: GNU version of getopt is required

2001-03-04 15:57  arthur

	* [r15] rl.c: * added -q, --quiet, --silent option to suppres
	  errors and warnings

2001-03-04 15:56  arthur

	* [r14] rl.c: * added -u, --uniq option to use rl_withoutreplace()

2001-03-04 15:52  arthur

	* [r13] rl.c: * several layout changes
	  * added rl_withoutreplace()

2001-03-04 15:45  arthur

	* [r12] rl.c: * added free()-ing of malloc()-ed memory (oops)

2001-03-04 14:05  arthur

	* [r11] rl.c: * added getline() method to read lines (simplifies
	  code)

2001-03-04 13:46  arthur

	* [r10] rl.c: * --count now works
	  * renamed randomline() to rl_withreplace()

2001-03-04 12:49  arthur

	* [r9] rl.1: first REAL attempt at a manual page

2001-03-04 12:49  arthur

	* [r8] rl.c: removed --verbose

2001-03-04 12:24  arthur

	* [r7] rl.c: * small changes to code
	  * added extra sanity checks on --count

2001-03-04 12:17  arthur

	* [r6] AUTHORS, ChangeLog, README, rl.1, rl.c, rl.lsm.in,
	  rl.spec.in: changed to read full name

2001-03-04 12:11  arthur

	* [r5] ., .cvsignore: added tgz file

2001-03-03 01:58  arthur

	* [r4] rl.c: * cleaned up include and define code
	  * removed EXIT_FAILURE macro
	  * removed references to x* functions
	  * moved TODO to TODO file

2001-03-03 01:56  arthur

	* [r3] TODO: added TODO

2001-03-03 01:44  arthur

	* [r2] ., .cvsignore, AUTHORS, COPYING, ChangeLog, INSTALL,
	  Makefile.am, NEWS, README, config.guess, config.sub,
	  configure.in, install-sh, missing, mkinstalldirs, rl.1, rl.c,
	  rl.lsm.in, rl.spec.in: initial commit

2001-03-03 01:44  

	* [r1] .: New repository initialized by cvs2svn.