aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 5b544bc73017153e881bdf44d4fbab2ee3a72116 (plain)
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
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
2005-02-22 21:24  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST, Makefile.PL, rpmtools.spec: - 5.0.15

2005-02-22 21:15  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib: - --skipmissingdir - preform a simple on the distrib
	  - die ealier on missing media dir - generate VERSION it self

2005-02-22 21:12  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm, Distribconf/Build.pm: - split Distribconf with
	  Build - add write_VERSION

2005-02-22 13:52  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - don't add a 'm' to size in hdlists

2005-02-21 22:40  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - add getfullpath - s![ /]*!_! in default path -
	  add check()

2005-02-21 22:36  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib: - add a "\n" to beautify output

2005-02-21 16:45  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - 5.0.14

2005-02-21 16:42  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib: -fix wrong commit

2005-02-21 16:34  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm, gendistrib: Distribconf

2005-02-21 14:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - 5.0.13

2005-02-21 14:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - add doc for pubkey

2005-02-21 14:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - add doc for pubkey

2005-02-21 14:11  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - lowercase media name in file name - manage
	  pubkey

2005-02-21 13:47  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm: - avoid error message about non existing
	  media.cfg

2005-02-21 01:06  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib: - s/getpath/getvalue/

2005-02-21 01:04  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - 5.0.12

2005-02-21 01:03  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib: - skip media genration if suppl or askmedia

2005-02-21 00:36  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - remove prefix tag

2005-02-21 00:20  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib, rpmtools.spec: - don't create existing dir - minor
	  fix - 5.8.11

2005-02-20 22:44  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST, Makefile.PL: - add Districonf and co

2005-02-20 22:15  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Distribconf.pm, dumpdistribconf: - initials release for managing
	  mandrakelinux distro tree

2005-02-17 13:58  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.10-1mdk

2005-02-17 13:30  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Ensure links are done

2005-02-17 12:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Spelling fixes in usage

2005-02-17 11:57  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Generate MD5SUM files

2005-02-17 11:23  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: More cleanup

2005-02-17 10:58  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Add creation of links to hdlist/synthesis in
	  media_info subdirectories (and add a command line option to
	  disable it)

2005-02-17 10:09  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Code cleanup

2005-02-17 09:16  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Handle new hdlists format (with sizes)

2005-02-02 12:28  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: Remove redundant and bogus require on perl-base

2005-01-17 14:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.9-1mdk

2005-01-17 14:01  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* genhdlist: Add a "follow" option to the File::Find call, to
	  follow symlinks, as suggested by Steven Shiau. Plus some tidying
	  up and perl_checker fixes.

2005-01-07 13:38  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: More filehandle cleanup

2005-01-03 22:52  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng/zlib.pm: Fix warning messages (english grammar, plus
	  final \n)

2005-01-03 17:54  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, rpmtools.spec: - Fix options parsing - 5.0.8

2005-01-03 17:38  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, Packdrakeng/zlib.pm: - fix data read detection
	  when using cache

2004-12-30 17:00  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - 5.0.7

2004-12-30 16:55  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, Packdrakeng/zlib.pm: - speedup uncompress
	  function - factorize code

2004-12-22 00:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng/zlib.pm: -really fix syswrite

2004-12-21 23:29  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng/zlib.pm: - check data are really writen

2004-12-20 13:25  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, t/01packdrakeng.t: - add infofile() function -
	  more doc

2004-12-17 17:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake: perl_checker fixes

2004-12-17 14:32  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.6-1mdk

2004-12-17 14:24  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm, Packdrakeng/zlib.pm: Ensure Packdrakeng::zlib
	  loads properly, and is not used if Compress::Zlib is not
	  available

2004-12-17 14:13  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* t/: 01packdrakeng.t, 02packdrake.t: Neatier test labels

2004-12-17 11:21  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Simplify optional module loading

2004-12-16 16:21  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake.pm: At least show a warning when an archive can't be
	  found

2004-12-16 16:03  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Don't invoke compression/decompression
	  subroutines as methods

2004-12-16 13:50  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile.PL: - add tag command

2004-12-15 20:52  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm: - more docs

2004-12-14 20:21  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.5-1mdk

2004-12-14 20:16  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Fix indentation and capitalize some warning
	  messages

2004-12-14 20:13  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Use $pack->{log}() instead of warn(), so --quiet
	  works again

2004-12-14 11:38  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile.PL: Don't hardcode version in several places

2004-12-14 11:27  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.4

2004-12-14 11:25  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: Don't require Compress::Zlib (only suggest :)

2004-12-14 11:24  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake.pm: extract_archive() should do nothing in no files are
	  specified.  Add an extract_all_archive function.

2004-12-14 02:44  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm: - fix mkpath

2004-12-14 01:22  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile.PL, Packdrakeng.pm, rpmtools.spec: - 5.0.3 - fix mkpath

2004-12-14 01:00  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* t/01packdrakeng.t, Packdrakeng.pm: - don't use File::* modules

2004-12-13 18:54  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: Fix a misplaced Provides in the specfile.

2004-12-13 17:17  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Explicit import list for POSIX

2004-12-13 16:57  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - add conflicts to help update

2004-12-13 16:48  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile.PL, rpmtools.spec: - add missing file zlib.pm

2004-12-13 16:29  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - cosmetic change, make rpmlint happy

2004-12-13 16:26  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile.PL: - version is 5.0.1

2004-12-13 16:13  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST: - add Packdrakeng/zlib.pm

2004-12-13 16:10  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng/zlib.pm: - externalize Compress::Zlib

2004-12-13 16:10  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm: - s/use/eval {require}/ on Compress::Zlib, so it
	  can works without it

2004-12-13 16:06  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - split package - 5.0.1

2004-12-09 14:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 5.0.0-2mdk

2004-12-09 13:56  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile.PL: Refine "rpm" make target

2004-12-09 13:46  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Pull $VERSION from CVS

2004-12-09 13:43  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake: Adjust copyright

2004-12-09 13:34  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake.pm: POD fixes.

2004-12-07 11:19  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* t/01packdrakeng.t: - minor fix

2004-12-07 10:57  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* t/02packdrake.t: Compare strings with eq, not ==

2004-12-07 10:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: POD fix

2004-12-07 10:34  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Packdrakeng.pm: Minor doc fixes

2004-12-07 09:10  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile.PL: Improve distclean make target

2004-12-07 00:29  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST: - ChangeLog

2004-12-07 00:27  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST, Makefile, Makefile.PL, Packdrakeng.pm, packdrake.pm,
	  rpmtools.spec, t/02packdrake.t: - 5.0.0 - more test and fix

2004-12-06 17:42  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, t/01packdrakeng.t: - fix dir / symlink creation -
	  add test

2004-12-06 16:40  Michael Scherer <mscherer@mandrake.org>

	* Packdrakeng.pm: - fix small typos in docs

2004-12-06 12:15  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* distriblint: - removing this ugly script

2004-12-06 12:11  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* MANIFEST, Makefile, Makefile.PL, packdrake.pm, rpmtools.spec,
	  packdrake-pm/Makefile.PL, packdrake-pm/packdrake.pm: - bump to
	  packdrakeng

2004-12-05 22:05  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, t/01packdrakeng.t: - fix data length detection in
	  extern_compress - add test

2004-12-05 17:36  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Packdrakeng.pm, packdrakeng.pm: - rename packdrakeng.pm to
	  Packdrakeng.pm to follow perl policy

2004-12-05 08:13  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm, t/01packdrakeng.t: - fix data length to write -
	  test: use strict ;) then fix it !!

2004-12-04 05:32  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm, t/01packdrakeng.t: - add external call to
	  compress programs - clean code - fix bugs...	- start doc - add
	  test

2004-11-29 11:11  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* t/01packdrakeng.t: - first commit

2004-11-29 09:45  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm: - managed more than one file by bloc - add few
	  comment

2004-11-29 01:30  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrake-pm/packdrake.pm: - cosmectic fix

2004-11-27 15:08  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm: - fix compressed size read - some return on error
	  add

2004-11-26 01:34  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm: - Update errors

2004-11-25 23:27  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* packdrakeng.pm: - first commit for this wonderfull packdrake ng
	  pm file

2004-11-18 13:48  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Logging nits

2004-11-17 18:21  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* gendistrib: Fix usage notes

2004-09-02 07:19  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 4.5-25mdk

2004-09-02 07:03  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* distriblint, gendistrib: Make rpm tools handle new keywords in
	  hdlists file.

2004-08-18 02:21  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 4.5-24mdk

2004-08-18 02:15  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile: Install rpm2cpio.pl

2004-08-18 01:57  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpm2cpio.pl: Minor adjustements

2004-08-18 01:50  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpm2cpio.pl: Add a pure-perl version of rpm2cpio (for emergency
	  cases), written by Roger Espel Llima. (from
	  http://www.iagora.com/~espel/rpm2cpio)

2004-08-11 07:22  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 4.5-23mdk

2004-08-11 07:10  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* parsehdlist.c: Don't include internal dependencies of the rpmlib
	  in the parsehdlist output

2004-07-22 10:25  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* distriblint, gendistrib, rpmtools.spec,
	  packdrake-pm/packdrake.pm: 4.5-22mdk: Updates for the new media
	  layout in cooker

2004-07-05 08:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 4.5-21mdk

2004-07-05 08:23  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* parsehdlist.c: Fix error message

2004-07-05 07:40  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* parsehdlist.c: Minor fixes in help message

2004-07-05 07:40  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile: Add a rule for changelog generation

2004-04-23 14:39  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* rpmtools.spec: 4.5-20mdk

2004-04-23 11:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* Makefile: Fix CFLAGS in the Makefile for compilation with
	  versions of rpm >= 4.2.

2004-04-23 10:49  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* packdrake, packdrake-pm/packdrake.pm: Add a --quiet option to
	  packdrake

2004-04-21 11:17  Warly <warly@mandrakesoft.com>

	* gendistrib: make $ENV{TMPDIR} the default cache location

2004-02-25 14:35  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: rebuild for perl

2004-01-18 03:30  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* genhdlist: - Don't put wrong rpm in list file when using dontdie

2004-01-16 19:04  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* genhdlist, rpmtools.spec: fix genhdlist without arg

2004-01-16 01:58  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: - 17mdk

2004-01-16 01:53  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* genhdlist: - add --dest option - fix dir parsing

2004-01-09 16:49  Warly <warly@mandrakesoft.com>

	* rpmtools.spec: add provides perl(packdrake)

2004-01-05 23:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* rpmtools.spec: -15mdk

2004-01-05 23:09  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile: use %_topdir instead /home/users/olivier

2004-01-05 22:51  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* gendistrib, genhdlist: add somes feature

2003-12-09 20:38  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.spec: added RH 7.3 support

2003-08-28 15:44  François Pons <fpons@mandrakesoft.com>

	* gendistrib: fixed MD5SUM files to be removed, added noarch for
	  %{ARCH} possible substitution.

2003-08-28 15:40  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 4.5-13mdk

2003-08-28 15:39  François Pons <fpons@mandrakesoft.com>

	* gendistrib: added %{ARCH} management

2003-08-01 15:17  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: final 4.5-12mdk

2003-08-01 14:21  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 4.5-12mdk

2003-05-19 17:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* packdrake-pm/packdrake.pm: perl_checker fixes

2003-05-12 18:47  Guillaume Cottenceau <gc@mandrakesoft.com>

	* rpmtools.spec: rebuild for new perl requires/provides

2003-04-29 22:19  Frederic Lepied <flepied@mandrakesoft.com>

	* rpmtools.spec: 4.5-10mdk

2003-04-29 22:18  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: use rpmbuild instead of rpm

2003-04-29 22:17  Frederic Lepied <flepied@mandrakesoft.com>

	* rpm2header.c: added rpm 4.2 support

2003-03-10 11:42  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: added URL tag.

2003-03-10 11:39  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.spec: 4.5-9mdk

2003-02-20 16:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec, packdrake-pm/packdrake.pm: 4.5-8mdk

2002-12-06 00:43  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec, packdrake-pm/packdrake.pm: fix a bug in an error
	  message (as detected by perl_checker)

2002-12-04 22:44  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec, packdrake-pm/packdrake.pm: packdrake.pm is now
	  perl_checker compliant

2002-11-28 02:01  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec, packdrake-pm/packdrake.pm: packdrake.pm is now
	  perl_checker compliant

2002-11-26 19:30  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec, packdrake-pm/packdrake.pm: packdrake.pm is now
	  perl_checker compliant

2002-11-26 15:12  François Pons <fpons@mandrakesoft.com>

	* packdrake-pm/packdrake.pm: fix of pixel from perl-checker.

2002-10-16 16:08  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: updated spec file with obsoletes changed by
	  conflicts.

2002-10-16 16:07  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.spec, packdrake-pm/packdrake.pm: 4.5-3mdk

2002-08-05 21:04  Pixel <pixel@mandrakesoft.com>

	* Makefile, Makefile.PL, build_archive, extract_archive,
	  genbasefiles, gendepslist2.cc, genfilelist, genhdlist_cz2,
	  genhdlists, hdlist2files.cc, hdlist2groups.cc, hdlist2names.cc,
	  hdlist2prereq.cc, packdrake.pm, rpm-find-leaves.c, rpmtools.pm,
	  rpmtools.spec, rpmtools.xs, packdrake-pm/Makefile.PL,
	  packdrake-pm/packdrake.pm: - remove obsolete stuff - move
	  packdrake.pm in its own directory to make MakeMaker happy

2002-08-05 17:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* Makefile, parsehdlist.c, rpmtools.spec: add --fileswinfo query to
	  parsehdlist so that we can know more informations on the package
	  for which we print the files (needed by upcoming rpmdrake
	  supporting searching in files)

2002-07-23 20:43  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 4.4-1mdk

2002-07-23 20:31  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.pm, rpmtools.spec: 4.4-1mdk

2002-07-09 13:00  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: adapt to perl 5.8.0

2002-06-28 09:10  François Pons <fpons@mandrakesoft.com>

	* distriblint, rpmtools.spec: 4.3-5mdk

2002-06-27 20:28  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.spec: 4.3-4mdk (forget installation of
	  distriblint)

2002-06-27 20:27  François Pons <fpons@mandrakesoft.com>

	* distriblint, rpmtools.spec: 4.3-4mdk

2002-06-18 18:02  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.spec: fixes for real addition and
	  installation.

2002-06-18 17:57  François Pons <fpons@mandrakesoft.com>

	* genhdlist, rpmtools.spec: 4.3-3mdk (added genhdlist)

2002-06-03 14:04  François Pons <fpons@mandrakesoft.com>

	* gendistrib: added missing log removed since gendistrib use
	  perl-URPM.

2002-06-03 13:06  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.spec: synced gendistrib with URPM 0.02 or
	  later.

2002-05-31 12:58  François Pons <fpons@mandrakesoft.com>

	* Makefile, gendistrib, rpmtools.pm, rpmtools.spec: start using
	  perl-URPM

2002-05-29 10:11  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: latest rpmtools 4.2.

2002-05-29 10:10  François Pons <fpons@mandrakesoft.com>

	* rpmtools.xs: back fix from URPM module.

2002-04-22 17:59  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: improved generation of
	  synthesis (smaller)

2002-04-15 15:25  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm, rpmtools.spec: fixed with NIS and packdrake
	  --extract.

2002-04-10 16:33  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm, rpmtools.pm, rpmtools.spec: compatible with perl
	  5.005 and above.

2002-03-20 20:58  Frederic Lepied <flepied@mandrakesoft.com>

	* rpmtools.spec: 4.2-9mdk

2002-03-06 19:59  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: 4.2-8mdk, now final 8.2 ?

2002-03-06 19:51  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: 4.2-7mdk, final ?

2002-02-27 12:02  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec, rpmtools.xs: 4.2-6mdk

2002-02-18 11:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 4.2-4mdk

2002-02-18 11:50  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: 4.2-4mdk

2002-02-14 17:26  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec, rpmtools.xs: 4.2-3mdk, memory leak fixed.

2002-02-11 14:32  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: update date changelog.

2002-02-08 18:06  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec, rpmtools.xs: 4.2-2mdk

2002-02-08 17:55  François Pons <fpons@mandrakesoft.com>

	* Makefile, parsehdlist.c, rpmtools.pm, rpmtools.spec: 4.2-1mdk

2002-02-05 17:55  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: 4.1-4mdk

2002-01-30 12:45  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: 4.1-3mdk

2002-01-24 10:39  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec, rpmtools.xs: 4.1-2mdk

2002-01-22 19:39  François Pons <fpons@mandrakesoft.com>

	* Makefile, gendistrib, rpmtools.pm, rpmtools.spec: new 4.1
	  version.

2002-01-17 13:01  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.spec, rpmtools.xs: 4.0-7mdk

2002-01-17 11:05  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: 4.0-6mdk

2002-01-16 19:21  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: 4.0-5mdk

2002-01-15 18:08  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.pm, rpmtools.spec: 4.0-4mdk

2002-01-10 10:27  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: fixed stupid bug in read_hdlist.

2002-01-09 17:32  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.pm, rpmtools.spec: first snapshot candidate
	  for first alpha of 8.2.

2001-12-05 17:42  François Pons <fpons@mandrakesoft.com>

	* Makefile, gendistrib, rpmtools.pm, rpmtools.spec, rpmtools.xs:
	  4.0 release (changes of provides internally).

2001-12-05 15:42  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: fixed bad alloca size.

2001-12-05 12:24  François Pons <fpons@mandrakesoft.com>

	* Makefile, parsehdlist.c, rpmtools.pm, rpmtools.spec: 3.2 for
	  newer urpmi.

2001-11-26 18:46  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: fixes for alpha.

2001-11-26 17:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: fixed compss file reading.

2001-11-16 15:01  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-11-16 10:32  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-11-14 21:15  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: new release.

2001-11-14 21:14  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-11-14 21:11  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: fixed core dump when name is given with other
	  argument on some case.  changed --name behaviour to give filename
	  along with fullname.

2001-08-09 18:47  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-07-25 17:12  François Pons <fpons@mandrakesoft.com>

	* Makefile: avoid using version_compare.

2001-07-25 16:59  François Pons <fpons@mandrakesoft.com>

	* Makefile.PL, rpmtools.pm, rpmtools.spec, rpmtools.xs: use rpmlib
	  version comparison function, force destiny.

2001-07-23 17:15  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.pm, rpmtools.spec, rpmtools.xs: first 3.1
	  major relase, with fullname in info hash.

2001-07-21 12:34  Warly <warly@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: add sourcerpm tag

2001-07-18 14:50  François Pons <fpons@mandrakesoft.com>

	* Makefile, Makefile.PL, rpmtools.spec: new release with new rpm.

2001-07-05 15:32  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: added compute_id method.

2001-07-02 14:39  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.spec: added arch support for parsehdlist.

2001-06-28 18:40  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: dependencies is right.

2001-06-28 17:42  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: cleaned rpmtools.

2001-06-27 17:18  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-06-27 11:53  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-06-26 17:10  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: fixes for bad behaviour of
	  build_hdlist.  added better relocation code.

2001-06-25 14:55  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: late time fix.

2001-06-25 14:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: updated to use @ separator char instead of : in
	  provides file.

2001-06-25 13:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: fix version_compare 3.0-2mdk

2001-06-25 13:49  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: fix version compare for string like "0.beta4"
	  compared to "0.rc1", the latest should be the greatest on
	  comparing "beta" and "rc".

2001-06-21 18:25  François Pons <fpons@mandrakesoft.com>

	* Makefile, Makefile.PL, parsehdlist.c, rpmtools.pm, rpmtools.spec,
	  rpmtools.xs: new 3.0 release, see rpmtools.spec.

2001-06-14 10:59  François Pons <fpons@mandrakesoft.com>

	* Makefile, Makefile.PL, rpmtools.spec: [no log message]

2001-06-06 15:34  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: fix ordering of packages to avoid
	  some nasty loop in prerequisite chain as for GConf and libGConf
	  currently.

2001-05-22 15:36  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: added arch support.

2001-04-16 18:47  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-04-16 18:46  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: added back kill to child process as some report of
	  locking ?

2001-04-14 16:27  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: final for 8.0 ?

2001-04-14 16:23  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: fixed absurd mismatch of use <=> and cmp.

2001-04-14 13:55  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-04-14 13:52  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: fixed interactive mode with provides tag to return
	  flags and version, commented print_list no more used.

2001-04-14 13:47  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: simplified header construction and fixed --compact
	  to match exactly what is needed for synthesis file.

2001-04-12 14:58  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm, rpmtools.spec: [no log message]

2001-04-03 14:50  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.pm, rpmtools.spec: [no log message]

2001-03-26 17:14  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-03-26 15:39  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-03-23 15:20  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-03-23 15:14  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: [no log message]

2001-03-23 14:37  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: added --compact option to help producing synthesis
	  file (need s/:/@/g).

2001-03-23 14:36  François Pons <fpons@mandrakesoft.com>

	* rpmtools.xs: try to be cleaner for subscript but not enough.

2001-03-23 14:35  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: workarount hashes subscript error of perl.

2001-03-23 14:35  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 2.3-13mdk.

2001-03-12 16:25  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-03-12 16:20  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm, parsehdlist.c, rpmtools.spec: [no log message]

2001-03-12 15:02  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile.PL: don't link explicitly with db libs.

2001-03-08 18:15  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-03-07 16:34  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.spec: [no log message]

2001-03-05 14:40  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-03-04 19:22  Warly <warly@mandrakesoft.com>

	* Makefile: add db1 and db-3.1 to the static build for
	  rpm2header_static

2001-03-01 18:06  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.pm, rpmtools.spec: [no log message]

2001-02-27 18:05  François Pons <fpons@mandrakesoft.com>

	* gendistrib, rpmtools.spec: [no log message]

2001-02-26 16:06  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-02-19 17:45  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: [no log message]

2001-02-19 15:56  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: [no log message]

2001-02-16 14:00  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c, rpmtools.spec, rpmtools.xs: [no log message]

2001-02-14 14:29  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-02-14 14:20  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.pm, rpmtools.spec, rpmtools.xs: [no log
	  message]

2001-02-13 16:01  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.pm, rpmtools.spec, rpmtools.xs: added faster
	  method to rpmtools.xs, fixed code and added exit too.

2001-01-30 18:47  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2001-01-23 20:30  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 2.1-9mdk

2001-01-23 20:20  François Pons <fpons@mandrakesoft.com>

	* gendistrib: updated to use new build_hdlist.

2001-01-23 20:18  François Pons <fpons@mandrakesoft.com>

	* packdrake, packdrake.pm, rpmtools.pm, rpmtools.spec: added --dir
	  and -d flag for packdrake*.  management of specific directory for
	  building archive.

2001-01-22 18:35  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: added base selection in choices, for glibc.  so when
	  glibc or compat-glibc are required, only glibc is requested.

2001-01-22 13:53  François Pons <fpons@mandrakesoft.com>

	* genhdlists: modified to use rpmtools module.

2001-01-17 16:51  François Pons <fpons@mandrakesoft.com>

	* Makefile: added gendistrib and removed obsolete tools.

2001-01-17 16:50  François Pons <fpons@mandrakesoft.com>

	* gendistrib: initial revision.

2001-01-17 16:47  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: fixed volative current working directory in
	  build_hdlist and use of noclean options.

2001-01-17 16:46  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: added gendistrib in %files and removed genhdlists,
	  genhdlist_cz2 and genbasefiles.

2001-01-17 16:45  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 2.1-8mdk

2001-01-16 17:40  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm: fixed use of white space in archive name.

2001-01-16 17:39  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: added --output options.

2001-01-16 17:39  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: add build_hdlist method.  increase version to 0.03.

2001-01-16 17:38  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: 2.1-7mdk snapshot.

2001-01-05 16:54  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2001-01-05 16:24  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm: really fixe exit in child process (when used with
	  DrakX, exit is not allowed)

2001-01-05 15:40  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm: changed exit by exec 'true'

2001-01-05 11:54  François Pons <fpons@mandrakesoft.com>

	* packdrake.pm: fixed printing to STDOUT while extracting (usefull
	  if extracting to STDOUT :-)

2001-01-04 19:36  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: removed need of packdrake, so live update will be
	  nicer

2001-01-04 16:20  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-12-08 16:48  François Pons <fpons@mandrakesoft.com>

	* packdrake, parsehdlist.c, rpmtools.pm, rpmtools.spec,
	  rpmtools.xs, packdrake.pm: [no log message]

2000-11-23 19:14  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-11-23 19:12  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: fixed memory leaks that were causing problems if
	  used interactively.

2000-11-23 19:11  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: fixed deadlock in some case on version_compare.

2000-11-20 19:47  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-11-20 19:46  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: removed extra log on stdout (killer this one)

2000-11-20 18:17  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-11-20 18:15  François Pons <fpons@mandrakesoft.com>

	* Makefile, parsehdlist.c: fixed big bug for execvl (thanks to
	  francis)

2000-11-20 17:32  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: added fflush after (avoid deadock with DrakX)

2000-11-20 16:25  François Pons <fpons@mandrakesoft.com>

	* Makefile: [no log message]

2000-11-20 15:44  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.spec: [no log message]

2000-11-20 15:12  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-11-20 14:59  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: adding interactive mode for DrakX client/server
	  approach.

2000-11-16 17:28  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2000-11-15 14:25  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-10-19 17:28  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2000-10-19 14:26  Frederic Lepied <flepied@mandrakesoft.com>

	* rpmtools.spec: 2.0-1mdk

2000-10-19 14:25  Frederic Lepied <flepied@mandrakesoft.com>

	* rpmtools.xs, rpm-find-leaves.c: use iterators.

2000-10-19 14:24  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile, Makefile.PL: added new lib for rpm.

2000-09-15 12:55  Pixel <pixel@mandrakesoft.com>

	* build_archive, genhdlist_cz2, packdrake, rpmtools.spec: use
	  TMPDIR if available

2000-09-04 18:41  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2000-09-03 19:28  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-09-03 19:18  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm: [no log message]

2000-09-03 19:03  François Pons <fpons@mandrakesoft.com>

	* genbasefiles, rpmtools.pm, rpmtools.spec: [no log message]

2000-09-03 16:43  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2000-08-29 17:50  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, rpmtools.spec: [no log message]

2000-08-29 15:51  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-08-29 14:35  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-08-28 17:00  François Pons <fpons@mandrakesoft.com>

	* packdrake: [no log message]

2000-08-28 12:24  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-08-28 10:58  François Pons <fpons@mandrakesoft.com>

	* Makefile, Makefile.PL, rpmtools.spec: [no log message]

2000-08-25 17:33  François Pons <fpons@mandrakesoft.com>

	* rpmtools.pm, Makefile: [no log message]

2000-08-25 16:49  François Pons <fpons@mandrakesoft.com>

	* Makefile, Makefile.PL, genbasefiles, rpmtools.pm, rpmtools.spec,
	  rpmtools.xs: [no log message]

2000-08-24 18:20  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-08-24 18:13  François Pons <fpons@mandrakesoft.com>

	* parsehdlist.c: [no log message]

2000-08-24 18:04  François Pons <fpons@mandrakesoft.com>

	* Makefile, gendepslist2.cc, genhdlist_cz2, rpm2header.c,
	  rpmtools.spec: [no log message]

2000-08-11 19:18  François Pons <fpons@mandrakesoft.com>

	* packdrake: [no log message]

2000-08-05 20:03  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc, rpmtools.spec: no_comment

2000-07-27 20:23  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: no_comment

2000-07-27 20:01  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: no_comment

2000-07-12 12:16  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: no_comment

2000-06-13 21:02  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc, rpmtools.spec: no_comment

2000-06-08 11:14  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-05-25 17:59  François Pons <fpons@mandrakesoft.com>

	* genhdlist_cz2: [no log message]

2000-05-22 20:44  François Pons <fpons@mandrakesoft.com>

	* build_archive, gendepslist2.cc, genhdlist_cz2: [no log message]

2000-05-02 15:11  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-05-02 15:02  François Pons <fpons@mandrakesoft.com>

	* extract_archive: [no log message]

2000-05-02 14:52  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: no_comment

2000-04-28 04:56  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: [no log message]

2000-04-20 20:45  François Pons <fpons@mandrakesoft.com>

	* build_archive, extract_archive, genfilelist, rpmtools.spec: [no
	  log message]

2000-04-19 14:42  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: no_comment

2000-04-19 14:38  François Pons <fpons@mandrakesoft.com>

	* rpmtools.spec: [no log message]

2000-04-17 14:35  Pixel <pixel@mandrakesoft.com>

	* extract_archive, genhdlists, rpmtools.spec: no_comment

2000-04-14 21:50  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: no_comment

2000-04-14 12:02  François Pons <fpons@mandrakesoft.com>

	* genhdlists: [no log message]

2000-04-04 15:08  François Pons <fpons@mandrakesoft.com>

	* genfilelist: [no log message]

2000-04-04 13:14  François Pons <fpons@mandrakesoft.com>

	* extract_archive: [no log message]

2000-03-31 18:40  François Pons <fpons@mandrakesoft.com>

	* genfilelist: [no log message]

2000-03-31 17:05  François Pons <fpons@mandrakesoft.com>

	* Makefile, rpmtools.spec: [no log message]

2000-03-31 16:40  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc, rpmtools.spec, hdlist2groups.cc: no_comment

2000-03-31 16:37  François Pons <fpons@mandrakesoft.com>

	* genfilelist, rpmtools.spec: [no log message]

2000-03-28 00:59  Pixel <pixel@mandrakesoft.com>

	* Makefile, hdlist2names.cc, rpmtools.spec: no_comment

2000-03-26 19:24  Pixel <pixel@mandrakesoft.com>

	* build_archive, gendepslist2.cc, rpmtools.spec: no_comment

2000-03-25 13:58  Pixel <pixel@mandrakesoft.com>

	* rpmtools.spec: no_comment

2000-03-24 15:29  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc, genhdlist_cz2, rpmtools.spec: no_comment

2000-03-23 13:24  François Pons <fpons@mandrakesoft.com>

	* genhdlist_cz2: [no log message]

2000-03-23 13:20  Pixel <pixel@mandrakesoft.com>

	* Makefile, gendepslist2.cc, genhdlist_cz2, rpmtools.spec:
	  no_comment

2000-03-10 16:44  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: [no log message]

2000-03-10 16:38  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: [no log message]

2000-03-10 16:34  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: [no log message]

2000-03-10 15:39  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc: [no log message]

2000-03-10 15:34  Pixel <pixel@mandrakesoft.com>

	* Makefile, gendepslist2.cc: no_comment

2000-03-10 14:44  Pixel <pixel@mandrakesoft.com>

	* gendepslist2.cc, rpmtools.spec: no_comment

2000-03-10 13:36  François Pons <fpons@mandrakesoft.com>

	* Makefile, genhdlists: [no log message]

2000-03-08 00:36  Pixel <pixel@mandrakesoft.com>

	* Makefile, rpmtools.spec, gendepslist2.cc, genhdlist_cz2,
	  build_archive, extract_archive, hdlist2prereq.cc: no_comment

2000-03-08 00:32  Pixel <pixel@mandrakesoft.com>

	* Makefile, gendepslist.cc, hdlist2files.cc, rpmtools.spec:
	  no_comment

2000-02-23 18:49  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* rpmtools.spec: "See_The_Changelog"

2000-02-18 20:27  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* .cvsignore, rpmtools.spec: "See_The_Changelog"

2000-02-18 18:21  Frederic Lepied <flepied@mandrakesoft.com>

	* hdlist2files.cc, gendepslist.cc:	* new way to retrieve file
	  names in 3.0.4.

2000-02-18 18:19  Frederic Lepied <flepied@mandrakesoft.com>

	* rpm2header.c: 	* close files !
		  * don't dup many times.

2000-02-17 19:04  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, rpmtools.spec: "See_The_Changelog"

2000-02-17 18:58  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, gendepslist.cc, hdlist2files.cc, hdlist2names.cc,
	  rpm-find-leaves.c, rpm2header.c, rpmtools.spec: First_Import

2000-02-17 18:58  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, gendepslist.cc, hdlist2files.cc, hdlist2names.cc,
	  rpm-find-leaves.c, rpm2header.c, rpmtools.spec: Initial revision