aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: f76384eb2db5ddf5a7037972ecf88d0453186696 (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
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2006-08-22 01:29  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - discret change in the order of index generation,
	  this would avoid link breakage when a distrib use index that can
	  generated by another (srpms, noarch or biarch...)

2006-08-21 23:33  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - split works to increase lazyness

2006-08-21 15:11  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update ChangeLog

2006-08-21 15:06  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* MANIFEST, Makefile.PL, rpmtools.spec: - do no longer use
	  specfile from here

2006-08-21 15:00  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - exit on error

2006-08-21 14:58  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - nochkdep is default, use chkdep
	  - die ASAP if no work need
	  - make more error fatal, using Distribconf::Checks

2006-08-21 15:06  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* MANIFEST, Makefile.PL, rpmtools.spec: - do no longer use
	  specfile from here

2006-08-21 15:00  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - exit on error

2006-08-21 14:58  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - nochkdep is default, use chkdep
	  - die ASAP if no work need
	  - make more error fatal, using Distribconf::Checks

2006-07-13 11:53  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: This man page is about gendistrib, not genhdlist.
	  Also, fix $VERSION under svn.

2006-06-12 13:11  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: RPMTAG_SOURCEPACKAGE is deprecated, use
	  RPMTAG_SOURCERPM

2006-03-20 13:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.28

2006-03-20 12:52  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Add a --norecursive option to genhdlist (Michael
	  Scherer)

2006-03-01 11:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Fix compilation warning

2006-01-16 15:15  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.27-1mdk

2006-01-16 15:10  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Replace serial by epoch everywhere, to be able to
	  build with rpm 4.4.4.
	  The --serial switch is still recognized, but not documented.
	  Update Copyright.

2006-01-16 14:51  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Use mktemp for temp files. Error checking when
	  opening files. Fix comments. Update copyright.

2006-01-16 14:34  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Revert Titi's last commit and reindent properly

2006-01-13 11:02  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: Add BuildRequires for regression tests

2006-01-11 14:37  Thierry Vignaud <tvignaud at mandriva.com>

	* gendistrib: fix obvious bug

2005-12-30 16:06  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.26-2mdk

2005-12-30 15:53  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Fix typo; update copyright

2005-12-30 15:34  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Make it clear that genhdlist always generates a
	  synthesis.
	  Update copyright notice.

2005-12-05 18:15  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL, rpmtools.spec: Don't install empty manpages

2005-12-05 17:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: Trust automatic requires.

2005-11-16 16:20  Thierry Vignaud <tvignaud at mandriva.com>

	* rpmtools.spec: bump conflicts due to file moves

2005-11-16 14:46  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.26-1mdk

2005-11-16 14:28  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* editdistrib: Add a version command

2005-11-16 14:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* editdistrib: Fix a few typos; add a "quit" command

2005-11-16 13:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL, rpmtools.spec: Put packdrake(1) manpage in the
	  packdrake rpm, not in the rpmtools rpm.
	  Don't install manpages in section 3 for obsolete modules.

2005-11-16 13:56  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Don't leave empty sections in manpage

2005-11-16 13:15  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Fix the location where the MD5SUM files are
	  generated (thanks joeghi)

2005-11-15 12:42  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake.pm: Remove wrapper overhead, use directly new module

2005-11-15 12:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm, Distribconf/Build.pm, Packdrakeng.pm,
	  Packdrakeng/zlib.pm: Replace modules by wrappers around new
	  MDV:: namespace. Add a deprecation warning.

2005-11-15 12:19  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/01packdrakeng.t: use_ok must be done at compile time for
	  imports to work

2005-11-15 11:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* dumpdistribconf, gendistrib: Use modules in the new namespace
	  MDV::

2005-11-15 11:16  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* MANIFEST: Add editdistrib to the MANIFEST

2005-11-15 11:10  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ., .cvsignore: Ignore MakeMaker build files and compiled binaries

2005-10-18 15:41  Olivier Blin <oblin at mandriva.com>

	* packdrake: fix syntax error

2005-10-14 01:49  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* editdistrib: - add del/save/set/check

2005-10-11 21:23  Pascal Terjan <pterjan at mandriva.com>

	* gendistrib: Fix typo

2005-10-11 06:32  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* editdistrib: - factorize code

2005-10-10 23:26  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* editdistrib: - add addmedia()
	  - use MDV::...

2005-10-10 12:42  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* editdistrib: - add

2005-10-04 12:07  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: Make perl-devel dependency portable (thanks to
	  Buchan)

2005-10-03 17:00  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.25-1mdk

2005-10-03 16:00  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Make Pod::Usage optional, for dependency reasons

2005-10-03 15:40  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng/zlib.pm: Disarm warnings

2005-10-03 15:09  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Add --version. Doc clarification.

2005-10-03 14:08  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Use Pod::Usage

2005-10-03 12:49  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Begin cleanup.

2005-10-03 11:25  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Don't depend on MDK::Common

2005-09-30 16:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Put license in POD

2005-09-30 15:56  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Use a random temp directory. Remove --headersdir
	  option.

2005-09-30 15:23  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Put license in doc. More code cleanup.

2005-09-30 15:14  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Don't create a list file, unless explicitly told so
	  (with --list)

2005-09-30 14:59  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Add a --subdir option

2005-09-30 14:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: More docs and cleanup

2005-09-30 14:07  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Well, if tempdir doesn't exist, that's okay too

2005-09-30 14:04  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Safety check: make sur temporary directory is owned
	  by user

2005-09-30 13:39  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Add an option --md5sum

2005-09-30 12:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: TODO

2005-09-30 12:43  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm, dumpdistribconf: Use meaningful return values
	  for DistribConf::load()

2005-09-30 12:29  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Factorize

2005-09-30 12:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* dumpdistribconf: Don't give two meanings to -h

2005-09-29 16:38  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/01packdrakeng.t: Test cleanup

2005-09-29 16:08  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* dumpdistribconf: Use Pod::Usage

2005-09-29 15:51  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* dumpdistribconf: Use Distribconf::Build, or else it will go boom

2005-09-29 15:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf/Build.pm: More docs and minor fixes

2005-09-29 14:16  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf/Build.pm: Don't repeat copyright put in Distribconf

2005-09-29 14:14  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm: Avoid uninitialized warnings. Licensing terms.
	  TODO and XXX notations.

2005-09-29 13:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm: More docs for Distribconf

2005-09-29 13:43  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf/Build.pm: Reports errors on STDERR, not STDOUT

2005-09-29 12:28  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm: More, more docs
	* gendistrib: Add SEE ALSO
	* Distribconf/Build.pm: Spell check error message

2005-09-28 16:17  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: Spec cleanup

2005-09-28 16:05  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng/zlib.pm: Add version, fix typo

2005-09-28 16:01  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm, Distribconf/Build.pm: Add in Distribconf modules

2005-09-28 15:58  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Add a description, typo fixes

2005-09-28 15:11  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib, genhdlist: Sort manpage by alphabetical order

2005-09-28 15:09  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Remove unnecessary, misnamed, undocumented and
	  deprecated option --distrib

2005-09-28 14:29  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Use Pod::Usage

2005-09-28 14:19  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* genhdlist: Code cleanup

2005-09-28 13:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Add a manpage for gendistrib(1)

2005-09-28 12:06  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL, gendistrib, rpmtools.spec: Use Pod::Usage for
	  gendistrib

2005-09-28 10:38  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Add --version option. Suppress idiotic -s option
	  alias.

2005-09-28 10:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: First POD draft.

2005-09-28 09:54  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL, rpm2header.c: Remove obsolete code

2005-09-28 08:50  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm, gendistrib: Documentation nits. Fix some fatal
	  error messages.

2005-09-14 15:05  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* rpmtools.spec: -add %check

2005-09-14 15:04  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog, rpmtools.spec: - 5.0.24

2005-09-14 01:02  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - skip hdlist rebuild per media when not need

2005-09-07 09:33  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - add --blind option / rebuild even it is not need

2005-09-07 06:41  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - do not rebuild hdlist if not need

2005-09-06 23:48  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: add --destdir option

2005-09-06 19:46  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Distribconf.pm, Distribconf/Build.pm, Packdrakeng.pm,
	  dumpdistribconf, packdrake.pm: - s/mandrake/mandriva/

2005-09-06 16:58  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - make empty media non fatal, use --noemptymedia to
	  back old behaviour
	  - add --mediacfg in --help
	  - die if header dir can't be recreate

2005-09-06 15:56  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - show all missing directory before dying when
	  --skipmissingdir is not specified

2005-08-23 12:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/01packdrakeng.t: Test fix to go along with the previous
	  change. Be more TAP compliant.
	  Die early of errors.

2005-08-23 12:50  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.23-1mdk

2005-08-23 12:47  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: If extracting an archive to an undefined
	  directory, output to stdout.
	  (used by urpmq)

2005-08-22 17:59  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.22

2005-08-22 16:54  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Use destdir = "." if not specified.
	  Don't use warnings.

2005-08-19 15:33  Thierry Vignaud <tvignaud at mandriva.com>

	* Packdrakeng.pm: let it pass perl_checker
	* .perl_checker: blacklist a few packages in order to be able to
	  run perl_checker over Packadrake

2005-08-19 15:30  Thierry Vignaud <tvignaud at mandriva.com>

	* Packdrakeng.pm: (tempfile) display which file we failed to create

2005-06-20 10:14  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 4.0.21

2005-06-16 01:01  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Create temp file in $TMPDIR instead of $TMP, and
	  warn when creation failed

2005-05-26 09:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf/Build.pm: Fix error messages

2005-05-10 09:24  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.20-2mdk

2005-04-15 15:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: Be less dependant on distribution name

2005-04-04 15:31  Pixel <pixel at mandriva.com>

	* Packdrakeng.pm, rpmtools.spec: packdrake: remove dirty message
	  when decompressing without Compress::Zlib

2005-03-29 15:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.19-1mdk

2005-03-29 15:37  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Remove redundant code

2005-03-29 15:24  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Create the directory "thismediainfo" if it doesn't
	  exist

2005-03-14 13:01  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.18-1mdk

2005-03-14 12:47  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Build hdlists in temporary locations

2005-03-07 15:06  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: 5.0.17-1mdk

2005-03-07 15:00  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Factorisation of paths

2005-03-07 14:20  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Generate media-specific MD5SUM files in
	  'thismediainfo' dir, not 'mediainfo'

2005-03-07 13:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Distribconf.pm: Doc and POD fixes

2005-03-07 10:59  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Spelling fix

2005-03-01 11:46  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.16-1mdk

2005-03-01 11:33  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Output help to stdout

2005-03-01 11:31  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Patch by Leon Brooks to add an --sql option to
	  dump output as SQL INSERT
	  statements, and an --url option to get the rpm's URL tag.

2005-02-28 11:37  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: POD fixes.

2005-02-28 11:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: toc_f_count wasn't stored in the Packdrakeng
	  object, and it's used by
	  rpmdrake's search progress bar. (bug 14008)

2005-02-23 18:32  Pablo Saratxaga <pablo at mandriva.com>

	* ChangeLog: converted to UTF-8

2005-02-22 20:25  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: -update

2005-02-22 20:24  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

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

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

2005-02-22 20:12  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-22 12:52  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

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

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

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

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

2005-02-21 15:45  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update
	* rpmtools.spec: - 5.0.14

2005-02-21 15:42  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: -fix wrong commit

2005-02-21 15:34  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Distribconf.pm, gendistrib: Distribconf

2005-02-21 13:15  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update

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

	* rpmtools.spec: - 5.0.13
	* Distribconf.pm: - add doc for pubkey

2005-02-21 13:11  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-21 12:47  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-21 00:10  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update

2005-02-21 00:06  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - s/getpath/getvalue/

2005-02-21 00:05  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update

2005-02-21 00:04  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* rpmtools.spec: - 5.0.12

2005-02-21 00:03  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib: - skip media genration if suppl or askmedia

2005-02-20 23:36  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* rpmtools.spec: - remove prefix tag

2005-02-20 23:20  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-20 21:44  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-20 21:15  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-02-17 12:58  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.10-1mdk

2005-02-17 12:30  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Ensure links are done

2005-02-17 11:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Spelling fixes in usage

2005-02-17 10:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Generate MD5SUM files

2005-02-17 10:23  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: More cleanup

2005-02-17 09:58  Rafael Garcia-Suarez <rgarciasuarez at mandriva.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 09:09  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Code cleanup

2005-02-17 08:16  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Handle new hdlists format (with sizes)

2005-02-02 11:28  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2005-01-17 13:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.9-1mdk

2005-01-17 13:01  Rafael Garcia-Suarez <rgarciasuarez at mandriva.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 12:38  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: More filehandle cleanup

2005-01-03 21:52  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2005-01-03 16:55  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update for 5.0.8

2005-01-03 16:54  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2005-01-03 16:38  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-30 16:00  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update
	* rpmtools.spec: - 5.0.7

2004-12-30 15:55  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-21 23:14  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Packdrakeng/zlib.pm: -really fix syswrite

2004-12-21 22:29  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

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

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

2004-12-17 16:04  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: perl_checker fixes

2004-12-17 13:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.6-1mdk

2004-12-17 13:24  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-17 13:13  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-17 10:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Simplify optional module loading

2004-12-16 15:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-16 15:03  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

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

	* Makefile.PL: - add tag command

2004-12-15 19:52  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Packdrakeng.pm: - more docs

2004-12-14 19:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.5-1mdk

2004-12-14 19:16  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-14 19:13  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-14 10:38  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-14 10:27  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.4

2004-12-14 10:25  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-14 10:24  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-14 01:44  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Packdrakeng.pm: - fix mkpath

2004-12-14 00:23  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update for 5.0.3

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

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

2004-12-14 00:02  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-13 17:54  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-13 16:17  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Explicit import list for POSIX

2004-12-13 15:57  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* rpmtools.spec: - add conflicts to help update

2004-12-13 15:49  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update

2004-12-13 15:48  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-13 15:29  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-13 15:26  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Makefile.PL: - version is 5.0.1

2004-12-13 15:20  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: - update

2004-12-13 15:13  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* MANIFEST: - add Packdrakeng/zlib.pm

2004-12-13 15:10  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

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

	* rpmtools.spec: - split package
	  - 5.0.1

2004-12-09 13:04  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 5.0.0-2mdk

2004-12-09 12:56  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Refine "rpm" make target

2004-12-09 12:46  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Pull $VERSION from CVS

2004-12-09 12:43  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake: Adjust copyright

2004-12-09 12:34  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* packdrake.pm: POD fixes.

2004-12-07 10:19  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* t/01packdrakeng.t: - minor fix

2004-12-07 09:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-12-07 09:47  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: POD fix

2004-12-07 09:34  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Packdrakeng.pm: Minor doc fixes

2004-12-07 08:10  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Improve distclean make target

2004-12-06 23:29  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog, MANIFEST: - ChangeLog

2004-12-06 23:27  Olivier Thauvin <thauvin at 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 16:42  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-06 15:40  Michael Scherer <misc at mandriva.org>

	* Packdrakeng.pm: - fix small typos in docs

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

	* distriblint: - removing this ugly script

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

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

2004-12-05 21:05  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-05 16:36  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-05 07:13  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-12-04 04:32  Olivier Thauvin <thauvin at 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 10:11  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* t, t/01packdrakeng.t: - first commit

2004-11-29 08:45  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-11-29 00:30  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-11-27 14:08  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-11-26 00:34  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* packdrakeng.pm: - Update errors

2004-11-25 22:27  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-11-18 12:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Logging nits

2004-11-17 17:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* gendistrib: Fix usage notes

2004-09-02 05:19  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 4.5-25mdk

2004-09-02 05:03  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-08-18 00:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 4.5-24mdk

2004-08-18 00:15  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile: Install rpm2cpio.pl

2004-08-17 23:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpm2cpio.pl: Minor adjustements

2004-08-17 23:50  Rafael Garcia-Suarez <rgarciasuarez at mandriva.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 05:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 4.5-23mdk

2004-08-11 05:10  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-07-22 08:25  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-07-05 06:47  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* ChangeLog, rpmtools.spec: 4.5-21mdk

2004-07-05 06:23  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Fix error message

2004-07-05 05:40  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* parsehdlist.c: Minor fixes in help message
	* Makefile: Add a rule for changelog generation

2004-04-23 12:39  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* rpmtools.spec: 4.5-20mdk

2004-04-23 09:04  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-04-23 08:49  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

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

2004-04-21 09:17  Warly <warly at mandriva.com>

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

2004-02-25 13:35  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* rpmtools.spec: rebuild for perl

2004-01-18 02:30  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-01-16 18:05  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog: Generated by cvs2cl the 16_Jan

2004-01-16 18:04  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* genhdlist, rpmtools.spec: fix genhdlist without arg

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

	* rpmtools.spec: - 17mdk

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

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

2004-01-09 15:49  Warly <warly at mandriva.com>

	* rpmtools.spec: add provides perl(packdrake)

2004-01-05 22:15  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* ChangeLog, rpmtools.spec: -15mdk

2004-01-05 22:09  Olivier Thauvin <thauvin at aerov.jussieu.fr>

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

2004-01-05 21:51  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* gendistrib, genhdlist: add somes feature

2003-12-09 19:38  Fançois Pons

	* Makefile, rpmtools.spec: added RH 7.3 support

2003-08-28 13:44  Fançois Pons

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

2003-08-28 13:40  Fançois Pons

	* rpmtools.spec: 4.5-13mdk

2003-08-28 13:39  Fançois Pons

	* gendistrib: added %{ARCH} management

2003-08-01 13:17  Fançois Pons

	* rpmtools.spec: final 4.5-12mdk

2003-08-01 12:21  Fançois Pons

	* rpmtools.spec: 4.5-12mdk

2003-05-19 15:26  Thierry Vignaud <tvignaud at mandriva.com>

	* packdrake-pm/packdrake.pm: perl_checker fixes

2003-05-12 16:47  Guillaume Cottenceau

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

2003-04-29 20:19  Frederic Lepied <flepied at mandriva.com>

	* rpmtools.spec: 4.5-10mdk

2003-04-29 20:18  Frederic Lepied <flepied at mandriva.com>

	* Makefile: use rpmbuild instead of rpm

2003-04-29 20:17  Frederic Lepied <flepied at mandriva.com>

	* rpm2header.c: added rpm 4.2 support

2003-03-10 10:42  Fançois Pons

	* rpmtools.spec: added URL tag.

2003-03-10 10:39  Fançois Pons

	* gendistrib, rpmtools.spec: 4.5-9mdk

2003-02-20 15:54  Fançois Pons

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

2002-12-05 23:43  Pixel <pixel at mandriva.com>

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

2002-12-04 21:44  Pixel <pixel at mandriva.com>

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

2002-11-28 01:01  Pixel <pixel at mandriva.com>

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

2002-11-26 18:30  Pixel <pixel at mandriva.com>

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

2002-11-26 14:12  Fançois Pons

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

2002-10-16 14:08  Fançois Pons

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

2002-10-16 14:07  Fançois Pons

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

2002-08-05 19:04  Pixel <pixel at mandriva.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, packdrake-pm/Makefile.PL,
	  packdrake-pm/packdrake.pm, packdrake.pm, rpm-find-leaves.c,
	  rpmtools.pm, rpmtools.spec, rpmtools.xs: - remove obsolete stuff
	  - move packdrake.pm in its own directory to make MakeMaker happy

2002-08-05 15:05  Guillaume Cottenceau

	* 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 18:43  Fançois Pons

	* rpmtools.spec: 4.4-1mdk

2002-07-23 18:31  Fançois Pons

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

2002-07-09 11:00  Pixel <pixel at mandriva.com>

	* rpmtools.spec: adapt to perl 5.8.0

2002-06-28 07:10  Fançois Pons

	* distriblint, rpmtools.spec: 4.3-5mdk

2002-06-27 18:28  Fançois Pons

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

2002-06-27 18:27  Fançois Pons

	* distriblint, rpmtools.spec: 4.3-4mdk

2002-06-18 16:02  Fançois Pons

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

2002-06-18 15:57  Fançois Pons

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

2002-06-03 12:04  Fançois Pons

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

2002-06-03 11:06  Fançois Pons

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

2002-05-31 10:58  Fançois Pons

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

2002-05-29 08:11  Fançois Pons

	* rpmtools.spec: latest rpmtools 4.2.

2002-05-29 08:10  Fançois Pons

	* rpmtools.xs: back fix from URPM module.

2002-04-22 15:59  Fançois Pons

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

2002-04-15 13:25  Fançois Pons

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

2002-04-10 14:33  Fançois Pons

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

2002-03-20 19:58  Frederic Lepied <flepied at mandriva.com>

	* rpmtools.spec: 4.2-9mdk

2002-03-06 18:59  Fançois Pons

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

2002-03-06 18:51  Fançois Pons

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

2002-02-27 11:02  Fançois Pons

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

2002-02-18 10:54  Fançois Pons

	* parsehdlist.c, rpmtools.spec: 4.2-4mdk

2002-02-14 16:26  Fançois Pons

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

2002-02-11 13:32  Fançois Pons

	* rpmtools.spec: update date changelog.

2002-02-08 17:06  Fançois Pons

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

2002-02-08 16:55  Fançois Pons

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

2002-02-05 16:55  Fançois Pons

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

2002-01-30 11:45  Fançois Pons

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

2002-01-24 09:39  Fançois Pons

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

2002-01-22 18:39  Fançois Pons

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

2002-01-17 12:01  Fançois Pons

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

2002-01-17 10:05  Fançois Pons

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

2002-01-16 18:21  Fançois Pons

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

2002-01-15 17:08  Fançois Pons

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

2002-01-10 09:27  Fançois Pons

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

2002-01-09 16:32  Fançois Pons

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

2001-12-05 16:42  Fançois Pons

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

2001-12-05 14:42  Fançois Pons

	* parsehdlist.c: fixed bad alloca size.

2001-12-05 11:24  Fançois Pons

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

2001-11-26 17:46  Fançois Pons

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

2001-11-26 16:54  Fançois Pons

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

2001-11-16 14:01  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-11-16 09:32  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-11-14 20:15  Fançois Pons

	* rpmtools.spec: new release.

2001-11-14 20:14  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-11-14 20:11  Fançois Pons

	* 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 16:47  Pixel <pixel at mandriva.com>

	* rpmtools.spec: *** empty log message ***

2001-07-25 15:12  Fançois Pons

	* Makefile: avoid using version_compare.

2001-07-25 14:59  Fançois Pons

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

2001-07-23 15:15  Fançois Pons

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

2001-07-21 10:34  Warly <warly at mandriva.com>

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

2001-07-18 12:50  Fançois Pons

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

2001-07-05 13:32  Fançois Pons

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

2001-07-02 12:39  Fançois Pons

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

2001-06-28 16:40  Fançois Pons

	* rpmtools.pm: dependencies is right.

2001-06-28 15:42  Fançois Pons

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

2001-06-27 15:18  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-06-27 09:53  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-06-26 15:10  Fançois Pons

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

2001-06-25 12:55  Fançois Pons

	* rpmtools.spec: late time fix.

2001-06-25 12:54  Fançois Pons

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

2001-06-25 11:54  Fançois Pons

	* rpmtools.spec: fix version_compare 3.0-2mdk

2001-06-25 11:49  Fançois Pons

	* 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 16:25  Fançois Pons

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

2001-06-14 08:59  Fançois Pons

	* Makefile, Makefile.PL, rpmtools.spec: *** empty log message ***

2001-06-06 13:34  Fançois Pons

	* 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 13:36  Fançois Pons

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

2001-04-16 16:47  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-04-16 16:46  Fançois Pons

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

2001-04-14 14:27  Fançois Pons

	* rpmtools.spec: final for 8.0 ?

2001-04-14 14:23  Fançois Pons

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

2001-04-14 11:55  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-04-14 11:52  Fançois Pons

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

2001-04-14 11:47  Fançois Pons

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

2001-04-12 12:58  Fançois Pons

	* packdrake.pm, rpmtools.spec: *** empty log message ***

2001-04-03 12:50  Fançois Pons

	* parsehdlist.c, rpmtools.pm, rpmtools.spec: *** empty log message
	  ***

2001-03-26 15:14  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-03-26 13:39  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-03-23 14:20  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-03-23 14:14  Fançois Pons

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: *** empty log message
	  ***

2001-03-23 13:37  Fançois Pons

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

2001-03-23 13:36  Fançois Pons

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

2001-03-23 13:35  Fançois Pons

	* rpmtools.pm: workarount hashes subscript error of perl.
	* rpmtools.spec: 2.3-13mdk.

2001-03-12 15:25  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-03-12 15:21  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-03-12 15:20  Fançois Pons

	* packdrake.pm, parsehdlist.c, rpmtools.spec: *** empty log
	  message ***

2001-03-12 14:02  Frederic Lepied <flepied at mandriva.com>

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

2001-03-08 17:15  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-03-07 15:34  Fançois Pons

	* parsehdlist.c, rpmtools.spec: *** empty log message ***

2001-03-05 13:40  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-03-04 18:22  Warly <warly at mandriva.com>

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

2001-03-01 17:06  Fançois Pons

	* gendistrib, rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-02-27 17:05  Fançois Pons

	* gendistrib, rpmtools.spec: *** empty log message ***

2001-02-26 15:06  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-02-19 16:45  Fançois Pons

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: *** empty log message
	  ***

2001-02-19 14:56  Fançois Pons

	* rpmtools.pm, rpmtools.spec, rpmtools.xs: *** empty log message
	  ***

2001-02-16 13:00  Fançois Pons

	* parsehdlist.c, rpmtools.spec, rpmtools.xs: *** empty log message
	  ***

2001-02-14 13:29  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-02-14 13:20  Fançois Pons

	* Makefile, rpmtools.pm, rpmtools.spec, rpmtools.xs: *** empty log
	  message ***

2001-02-13 15:01  Fançois Pons

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

2001-01-30 17:47  Fançois Pons

	* rpmtools.spec: *** empty log message ***
	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2001-01-23 19:30  Fançois Pons

	* rpmtools.spec: 2.1-9mdk

2001-01-23 19:20  Fançois Pons

	* gendistrib: updated to use new build_hdlist.

2001-01-23 19:18  Fançois Pons

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

2001-01-22 17:35  Fançois Pons

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

2001-01-22 12:53  Fançois Pons

	* genhdlists: modified to use rpmtools module.

2001-01-17 15:51  Fançois Pons

	* Makefile: added gendistrib and removed obsolete tools.

2001-01-17 15:50  Fançois Pons

	* gendistrib: initial revision.

2001-01-17 15:47  Fançois Pons

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

2001-01-17 15:46  Fançois Pons

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

2001-01-17 15:45  Fançois Pons

	* rpmtools.spec: 2.1-8mdk

2001-01-16 16:40  Fançois Pons

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

2001-01-16 16:39  Fançois Pons

	* parsehdlist.c: added --output options.
	* rpmtools.pm: add build_hdlist method.
	  increase version to 0.03.

2001-01-16 16:38  Fançois Pons

	* rpmtools.spec: 2.1-7mdk snapshot.

2001-01-05 15:54  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2001-01-05 15:24  Fançois Pons

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

2001-01-05 14:40  Fançois Pons

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

2001-01-05 10:54  Fançois Pons

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

2001-01-04 18:36  Fançois Pons

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

2001-01-04 15:20  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-12-08 15:50  Fançois Pons

	* packdrake, packdrake.pm, parsehdlist.c, rpmtools.pm,
	  rpmtools.spec, rpmtools.xs: *** empty log message ***

2000-11-23 18:14  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-11-23 18:12  Fançois Pons

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

2000-11-23 18:11  Fançois Pons

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

2000-11-20 18:47  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-11-20 18:46  Fançois Pons

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

2000-11-20 17:17  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-11-20 17:15  Fançois Pons

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

2000-11-20 16:32  Fançois Pons

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

2000-11-20 15:25  Fançois Pons

	* Makefile: *** empty log message ***

2000-11-20 14:44  Fançois Pons

	* Makefile, rpmtools.spec: *** empty log message ***

2000-11-20 14:12  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-11-20 13:59  Fançois Pons

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

2000-11-16 16:28  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2000-11-15 13:25  Pixel <pixel at mandriva.com>

	* rpmtools.spec: *** empty log message ***

2000-10-19 15:28  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2000-10-19 12:26  Frederic Lepied <flepied at mandriva.com>

	* rpm-find-leaves.c, rpmtools.xs: use iterators.
	* rpmtools.spec: 2.0-1mdk

2000-10-19 12:25  Frederic Lepied <flepied at mandriva.com>

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

2000-09-15 10:55  Pixel <pixel at mandriva.com>

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

2000-09-04 16:41  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2000-09-03 17:28  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-09-03 17:18  Fançois Pons

	* rpmtools.pm: *** empty log message ***

2000-09-03 17:03  Fançois Pons

	* genbasefiles, rpmtools.pm, rpmtools.spec: *** empty log message
	  ***

2000-09-03 14:43  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2000-08-29 15:50  Fançois Pons

	* rpmtools.pm, rpmtools.spec: *** empty log message ***

2000-08-29 13:51  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-08-29 12:35  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-08-28 15:00  Fançois Pons

	* packdrake: *** empty log message ***

2000-08-28 10:24  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-08-28 08:58  Fançois Pons

	* Makefile, Makefile.PL, rpmtools.spec: *** empty log message ***

2000-08-25 15:33  Fançois Pons

	* Makefile, rpmtools.pm: *** empty log message ***

2000-08-25 14:49  Fançois Pons

	* Makefile, Makefile.PL, genbasefiles, rpmtools.pm, rpmtools.spec,
	  rpmtools.xs: *** empty log message ***

2000-08-24 16:20  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-08-24 16:13  Fançois Pons

	* parsehdlist.c: *** empty log message ***

2000-08-24 16:04  Fançois Pons

	* ChangeLog, Makefile, gendepslist2.cc, genhdlist_cz2,
	  rpm2header.c, rpmtools.spec: *** empty log message ***

2000-08-11 17:18  Fançois Pons

	* packdrake: *** empty log message ***

2000-08-05 18:03  Pixel <pixel at mandriva.com>

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

2000-07-27 18:23  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-07-27 18:01  Pixel <pixel at mandriva.com>

	* ChangeLog, gendepslist2.cc: no_comment

2000-07-12 10:17  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-07-12 10:16  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-06-13 19:02  Pixel <pixel at mandriva.com>

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

2000-06-08 09:14  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-05-25 15:59  Fançois Pons

	* genhdlist_cz2: *** empty log message ***

2000-05-22 18:44  Fançois Pons

	* build_archive, gendepslist2.cc, genhdlist_cz2: *** empty log
	  message ***

2000-05-02 13:11  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-05-02 13:02  Fançois Pons

	* extract_archive: *** empty log message ***

2000-05-02 12:52  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-04-28 02:56  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: *** empty log message ***

2000-04-20 18:48  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-04-20 18:45  Fançois Pons

	* build_archive, extract_archive, genfilelist, rpmtools.spec: ***
	  empty log message ***

2000-04-19 12:42  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: no_comment

2000-04-19 12:38  Fançois Pons

	* rpmtools.spec: *** empty log message ***

2000-04-17 12:35  Pixel <pixel at mandriva.com>

	* extract_archive, genhdlists, rpmtools.spec: no_comment

2000-04-14 19:50  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-04-14 10:02  Fançois Pons

	* genhdlists: *** empty log message ***

2000-04-04 13:08  Fançois Pons

	* genfilelist: *** empty log message ***

2000-04-04 11:14  Fançois Pons

	* ChangeLog, extract_archive: *** empty log message ***

2000-03-31 16:40  Fançois Pons

	* genfilelist: *** empty log message ***

2000-03-31 15:05  Fançois Pons

	* Makefile, rpmtools.spec: *** empty log message ***

2000-03-31 14:41  Pixel <pixel at mandriva.com>

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

2000-03-31 14:40  Pixel <pixel at mandriva.com>

	* ChangeLog: *** empty log message ***

2000-03-31 14:37  Fançois Pons

	* ChangeLog, genfilelist, rpmtools.spec: *** empty log message ***

2000-03-27 22:59  Pixel <pixel at mandriva.com>

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

2000-03-26 17:24  Pixel <pixel at mandriva.com>

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

2000-03-25 12:58  Pixel <pixel at mandriva.com>

	* rpmtools.spec: no_comment

2000-03-24 14:29  Pixel <pixel at mandriva.com>

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

2000-03-23 12:24  Fançois Pons

	* genhdlist_cz2: *** empty log message ***

2000-03-23 12:20  Pixel <pixel at mandriva.com>

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

2000-03-10 15:44  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: *** empty log message ***

2000-03-10 15:38  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: *** empty log message ***

2000-03-10 15:34  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: *** empty log message ***

2000-03-10 14:39  Pixel <pixel at mandriva.com>

	* gendepslist2.cc: *** empty log message ***

2000-03-10 14:34  Pixel <pixel at mandriva.com>

	* Makefile, gendepslist2.cc: no_comment

2000-03-10 13:44  Pixel <pixel at mandriva.com>

	* gendepslist2.cc, rpmtools.spec: no_comment

2000-03-10 12:36  Fançois Pons

	* ChangeLog, Makefile, genhdlists: *** empty log message ***

2000-03-07 23:37  Pixel <pixel at mandriva.com>

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

2000-03-07 23:36  Pixel <pixel at mandriva.com>

	* Makefile, rpmtools.spec: no_comment

2000-03-07 23:32  Pixel <pixel at mandriva.com>

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

2000-02-23 17:49  Chmouel Boudjnah

	* ChangeLog, rpmtools.spec: "See_The_Changelog"

2000-02-18 19:27  Chmouel Boudjnah

	* ., .cvsignore, ChangeLog, rpmtools.spec: "See_The_Changelog"

2000-02-18 17:21  Frederic Lepied <flepied at mandriva.com>

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

2000-02-18 17:19  Frederic Lepied <flepied at mandriva.com>

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

2000-02-17 18:05  Chmouel Boudjnah

	* ChangeLog, Makefile, rpmtools.spec: "See_The_Changelog"

2000-02-17 17:58  Chmouel Boudjnah

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

2000-02-17 17:58  

	* soft/rpm/rpmtools/branches, soft/rpm/rpmtools/tags, .: New
	  repository initialized by cvs2svn.