aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 81f010d1e134ad35dc7d54bf990692ac0c4fa186 (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
2006-03-06 14:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/rpmdb.t: Perform this test faster

2006-03-06 14:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/parse.t: Be more Test::More-ish, add a TODO test

2006-03-06 14:31  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: It wasn't a good idea to completely remove the refcount,
	  because it's used to free the underlying C glue structure.  Also,
	  and rpmtsLink was misplaced.

2006-03-06 12:09  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Don't use our own reference counter, but the rpmlib's,
	  for transactions.

2006-03-03 16:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.37

2006-03-03 16:08  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document URPM::verify_signature()

2006-03-03 16:05  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Include key id in verify_signature()'s OK output. Also,
	  avoid a header leak.

2006-03-03 15:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: New function verify_signature

2006-03-03 14:50  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Don't display error messages from rpmVerifySignatures

2006-03-03 14:14  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document (new-ish) return value of verify_rpm()

2006-03-03 14:00  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, URPM.xs: Reimplement verify_rpm, using the rpm cli
	  interface

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

	* URPM.pm, URPM.xs: Remove support for the (broken) db option to
	  verify_rpm

2006-03-03 10:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Use a smaller buffer for the return value of verify_rpm,
	  and guard against overflows

2006-03-02 18:40  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Honor verification flags in verif_rpm() even when
	  reading from a file without having open the rpmdb

2006-03-02 18:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Nits in verify_rpm.

2006-03-01 12:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Fix a couple of compilation warnings. URPM.xs is now
	  warning-clean.

2006-03-01 12:40  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Make sure -fno-strict-aliasing is used (gcc option)

2006-02-13 14:17  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document the is_arch_compat package method

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

	* perl-URPM.spec: 1.36-1mdk

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

	* URPM.pm: Document new ignorearch flag

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

	* URPM.xs: Add ignorearch option to run transactions

2006-02-10 18:07  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.35-1mdk

2006-02-10 18:06  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: repackage also when only the rpm macro is defined. Maybe
	  rpm ought to do this, but obviously, as of 4.4.4, it does not.

2006-02-10 10:03  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.34-1mdk

2006-02-10 09:55  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Doc nits

2006-02-10 09:53  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Remove unused variable

2006-02-09 18:33  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Fix code example in URPM's synopsis

2006-02-09 18:29  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, URPM.xs: Add installtid method

2006-02-09 15:47  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document keep_all_tags option to parse rpms

2006-02-09 14:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: No need to make an explicit dependency on
	  perl-base

2006-02-09 14:52  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.33-1mdk

2006-02-09 14:50  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document new flag repackage in run()

2006-02-09 14:25  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Fix repackage option, oops

2006-02-09 13:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Add repackage flag to run transactions

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

	* URPM.pm, URPM.xs, perl-URPM.spec: 1.32-1mdk

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

	* URPM.xs: Flag headers returned by spec2srcheader() as source
	  packages

2006-01-24 12:38  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Pod formatting fix

2006-01-19 14:39  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.31

2006-01-19 14:31  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Rewrite and relocate doc at a more proper place. Update
	  copyright notice.

2006-01-19 14:24  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs, t/parse.t: In spec2srcheader(): extend stack; fudge with
	  errno.

2006-01-19 14:05  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs, t/parse.t: Return undef on spec parsing failure

2006-01-19 13:52  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* URPM.pm: - add doc for Urpm_spec2srcheader

2006-01-19 12:36  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* Makefile.PL, URPM.xs, t/parse.t: - add Urpm_spec2srcheader():
	  return header of src.rpm from a specfile

2006-01-06 17:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: 1.30-2mdk

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

	* t/rpmdb.t: Use --qf in test to accomodate variations in
	  %_query_all_fmt values

2005-12-08 10:29  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, URPM.xs: Update copyrights

2005-12-07 17:54  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.30

2005-12-07 17:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec, URPM/Resolve.pm: Fix longstanding epoch promotion
	  bug, caused by braindead API design

2005-12-07 17:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Document trap in that braindead stupid API.

2005-12-01 17:53  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Be verbose about the detected RPM version

2005-12-01 14:57  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: RPMTAG_SERIAL (old name of RPMTAG_EPOCH) has been
	  removed in rpm 4.4.3

2005-11-30 14:48  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Fix a couple of compilation warnings

2005-11-30 14:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Fix cast error

2005-11-30 14:21  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: libbzip2 is actually not used by URPM.

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

	* URPM.pm: Add an URPM::Package::dump_flags method, to help
	  debugging the depsolver

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

	* .cvsignore: Ignore MakeMaker build files

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

	* URPM.pm, perl-URPM.spec: 1.29-1mdk

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

	* URPM.pm: Mention noscripts option in docs

2005-10-28 16:30  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Doc neatification

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

	* Makefile.PL: Require MDV::Packdrakeng in Makefile.PL

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

	* URPM/Build.pm, t/parse.t: Use new MDV namespace

2005-10-18 18:46  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: More docs for confusing method names

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

	* URPM.xs: Add the RPMPROB_FILTER_DISKNODES flag for running
	  transactions with the nosize option. Although rpm doesn't seem to
	  use it internally, it sets it on the --ignoresize command-line
	  option.

2005-10-04 14:19  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* t/parse.t: Don't require Packdrakeng for running tests

2005-10-04 14:00  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: Remove buildrequires on bzip2.  Simplify
	  buildreq_perl_devel conditional dependency per Buchan's
	  suggestion.

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

	* URPM.pm, perl-URPM.spec: 1.28-1mdk

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

	* URPM.pm: Documentation encoding fix

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

	* MANIFEST, Makefile.PL, test-rpm-1.0-1mdk.noarch.rpm,
	  t/00prepare.t, t/parse.t: Rebuild test rpm when running tests.
	  Add cleanup to files.

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

	* MANIFEST: Update MANIFEST

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

	* build_rpm: Remove obsolete script

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

	* Makefile.PL: Add an rpm makefile target

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

	* Makefile.PL: Makefile.PL cleanup

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

	* URPM.xs: - add some options to parse_rpm (nomd5, nopayload)

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

	* URPM/Resolve.pm: Minor comment fixes

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

	* perl-URPM.spec: 1.27-1mdk

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

	* URPM.pm, URPM.xs: Make URPM::add_macro expand literal \n to \\\n
	  in macro definitions.  add URPM::add_macro_noexpand to get the
	  old (rpmlib like) behaviour

2005-09-01 18:19  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.26-1mdk

2005-09-01 17:43  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Add a "noscripts" option to run transactions. Inhibits
	  pre, preun, post and postun scritps.

2005-08-23 14:22  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.25-1mdk

2005-08-23 14:15  Pixel <pixel at mandriva.com>

	* URPM.xs: correctly handle -1 fileno returned by callback_open

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

	* URPM.pm: Doc fixes

2005-08-18 17:54  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: 1.24-3mdk

2005-08-18 17:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* Makefile.PL: Allow to rebuild URPM under non-C locales (Boris
	  Filipovic)

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

	* perl-URPM.spec: 1.24-2mdk

2005-07-28 04:26  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Doc bits

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

	* README, URPM.pm, URPM.xs: update copyright and maintainer

2005-07-04 11:32  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm: Documentation fix

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

	* URPM.pm, perl-URPM.spec: 1.24

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

	* URPM.pm, URPM.xs: Add function rpmErrorWriteTo($fd)

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

	* URPM.pm, URPM.xs: add rpmErrorString function

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

	* URPM/Resolve.pm: Doclet

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

	* perl-URPM.spec: Forgot to commit changelog

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

	* URPM.pm, perl-URPM.spec: 1.23-1mdk

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

	* URPM.pm, URPM.xs: Add a binding for rpm internal debugging
	  function setVerbosity()

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

	* URPM.pm, perl-URPM.spec: 1.22-1mdk

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

	* URPM/Build.pm: Warning fixes and documentation

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

	* URPM/Build.pm: Ensure archs are identical

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

	* URPM/Build.pm: Integrate a function to produce deltarpms

2005-05-31 11:33  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.21-1mdk

2005-05-31 10:45  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM/Resolve.pm: Removes obsolete code

2005-05-30 11:37  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, URPM.xs: Add the URPM::Package::payload_format method

2005-05-11 08:58  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM/Resolve.pm: Remove the return value of
	  compute_installed_flags, it's not used anywhere

2005-05-10 15:11  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* perl-URPM.spec: - 0.3 for amd64

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

	* perl-URPM.spec: 1.20-mdk

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

	* perl-URPM.spec: Update buildrequires

2005-05-09 07:37  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: Make spec mandriva-compliant

2005-05-04 05:06  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* perl-URPM.spec: Don't hardcode distribution name

2005-05-04 05:01  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.pm, perl-URPM.spec: 1.20-1mdk

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

	* Makefile.PL, URPM.xs: Remove rpm 4.0 support

2005-05-02 12:41  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Remove dead code

2005-05-02 12:39  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: Patch by Olivier Thauvin to adapt URPM for rpm 4.4

2005-04-29 01:50  Olivier Thauvin <thauvin at aerov.jussieu.fr>

	* perl-URPM.spec: - use mkrel

2005-04-28 18:44  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM/Resolve.pm: Fix bug 15628 : when no preferred locale is
	  found, put locales-en in front of choice list

2005-03-09 17:39  Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>

	* URPM.xs: More RPMSENSE_PREREQ deprecation. (this should do
	  nothing with rpm 4.2)

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

	* URPM.pm, perl-URPM.spec: 1.11-1mdk

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

	* URPM/Build.pm: Speed optimisation for updating media

2005-03-02 16:13  Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.10-1mdk

2005-03-02 15:38  Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>

	* URPM.xs: Prepare for obsolescence of PREREQ, introduce equivalent
	  RPMSENSE_SCRIPT_* tags

2005-02-15 13:54  Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.09-1mdk

2005-02-15 13:48  Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>

	* URPM/Resolve.pm: Comments and indentation

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

	* URPM/Resolve.pm: Force recomputation of rejected packages when
	  deleting some in installation dependency resolution

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

	* URPM.pm: POD fix.

2005-02-11 15:07  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.08-1mdk

2005-02-11 14:59  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, URPM.xs: Add macro handling code from Olivier Thauvin

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

	* perl-URPM.spec: 1.07-4mdk

2005-01-21 10:53  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: 1.07-3mdk

2005-01-20 21:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: Require perl-base >= 5.8.6, so perl will be
	  upgraded early in the process 10.1 to 10.2

2005-01-04 12:06  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Build.pm: Croak if build_base_files can't write files

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

	* URPM.pm: Typos in documentation

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

	* URPM/Resolve.pm: Indentation and comments

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

	* perl-URPM.spec: 1.07-2mdk

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

	* URPM.pm, perl-URPM.spec: 1.07-1mdk

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

	* URPM/Resolve.pm: Return the list of chosen packages sorted by
	  descending version (bug #12645).

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

	* URPM.pm, perl-URPM.spec: 1.06-1mdk

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

	* URPM/Build.pm: trust packdrake's defaults

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

	* URPM/Build.pm: Remove external call to packdrake.

2004-12-09 15:27  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* t/parse.t: Silence warnings

2004-12-09 15:24  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* t/parse.t: Adjust test count

2004-11-26 08:45  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.05-1mdk

2004-11-25 20:18  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, URPM/Build.pm: Inspired changes on top of Olivier's
	  changes

2004-11-25 15:28  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.pm, URPM/Build.pm, URPM/Resolve.pm: - allow to use an array
	  of id instead (start .. end) in functions.

2004-11-10 18:31  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: 1.04-1mdk

2004-11-10 18:26  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm: Version bump

2004-11-10 18:14  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: When resolving dependencies, keep track of the
	  packages that we just deselected because newer versions were
	  found, but that were not actually installed.

2004-11-10 15:17  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, URPM.xs: Indentation, documentation

2004-10-27 11:48  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: Release for amd64

2004-10-27 10:18  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: Support for the 'strict-arch' option : upgrade
	  only packages that have the same architecture than the one of the
	  already-installed version.

2004-10-25 14:04  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: Comments

2004-10-19 16:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: 1.03-2mdk

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

	* URPM/Resolve.pm: A few perl_checker fixes

2004-10-18 10:31  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: Patch by Gwenole Beauchesne to prefer packages
	  which have the closest architecture compatibility over others
	  when version/release are the same (using rpm's scoring system).

2004-10-14 05:22  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Build.pm: Fix method description

2004-10-13 04:35  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Build.pm: Small comment fixes

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

	* URPM/Build.pm: If $TMPDIR is not writable, don't use it

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

	* URPM.pm, perl-URPM.spec: - 1.03

2004-08-29 13:56  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs, t/parse.t: - backport rpmvercmp binding from perl-Hdlist

2004-08-24 11:43  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.02-1mdk

2004-08-24 11:29  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.xs: From now, the nopromoteepoch argument will always
	  default to 1

2004-08-24 10:12  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, URPM.xs: Minor doc fixes

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

	* URPM.pm, perl-URPM.spec: 1.01-1mdk

2004-08-11 06:57  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.xs: Don't panic on bad rpm fullnames

2004-08-02 12:42  Fançois Pons

	* URPM/Resolve.pm: fixed deadlock caused with libgc1 obsoleting
	  itself ;-) and in the case were an older package is already
	  installed and an older package is present in urpmi db. The
	  problems comes with a badly interpreted comparison without an
	  operator checked.

2004-08-02 11:24  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 1.00 !

2004-08-02 11:01  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: Protection against packages that obsolete
	  themselves.

2004-08-02 10:42  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs, t/parse.t: - remove test that can't works

2004-08-02 09:22  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs: - backward compatibility with perl 5.6

2004-08-02 09:14  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* Makefile.PL: - don't check rpm rpm version but rpm binary version

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

	* URPM/Build.pm: Silence a compilation warning

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

	* URPM/: Build.pm, Query.pm, Resolve.pm: Make perl_checker a bit
	  more happy

2004-07-30 11:03  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* perl-URPM.spec: put back lost 0.98-2mdk's changelog

2004-07-30 09:48  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 0.99-1mdk

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

	* URPM/Build.pm: Use lexical filehandles.

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

	* URPM.pm, perl-URPM.spec: Version 0.98

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

	* URPM.xs, t/parse.t: Add URPM::stream2header (borrowed from
	  perl-Hdlist, thanks to Olivier Thauvin)

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

	* Makefile.PL, URPM.pm, perl-URPM.spec: - generate the manpage -
	  0.97

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

	* URPM.pm, perl-URPM.spec: Version 0.96

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

	* URPM/Resolve.pm: Don't use keys() in scalar context

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

	* Makefile.PL: Add a ChangeLog target in the makefile

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

	* URPM/Resolve.pm: Simplify the compute_flags function (used for
	  the {skip,inst}.list files)

2004-06-27 20:31  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs: - fix segfault in queryformat if tag does not exist
	  (return nothing instead)

2004-06-23 08:47  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.xs, t/fatal.t: Clarify error message when a synthesis file
	  can't be read or gunzipped

2004-05-21 13:33  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: 0.95-2mdk

2004-05-21 13:19  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: Allow urpmi to downgrade packages if it was
	  invoked with --allow-force

2004-05-19 17:28  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Resolve.pm: When an rpm installed locally had a version
	  greater than the one found in the update media, urpmi was trying
	  to downgrade it.

2004-05-06 11:42  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: Version 0.95

2004-05-06 11:22  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* MANIFEST, URPM.pm, URPM.xs, URPM/Resolve.pm, t/fatal.t: Add a way
	  to downgrade some errors (file not found) to non-fatal

2004-04-30 10:32  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* perl-URPM.spec: 0.94-13mdk

2004-04-27 07:56  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM/Query.pm: - fix tag2id on old mdk, ensure all test are ok on
	  9.1

2004-04-26 16:40  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* t/parse.t: Silence warnings

2004-04-25 23:33  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs, t/parse.t: - make parse.t pass all test - add
	  $pkg->queryformat test

2004-04-25 12:44  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.pm, URPM.xs, URPM/Query.pm: - add $pkg->queryformat()
	  function - $ûrpm->list_rpm_tag show all tag, value for unparsable
	  tag is 'undef' in hash

2004-04-23 10:01  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs: - urpm optional arg to Urpm_list_rpm_tag function

2004-04-22 16:14  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.xs: Better diagnostics in $package->build_info()

2004-04-22 11:54  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* t/parse.t: - test rpm parsing and hdlist generation

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

	* MANIFEST: Add missing files in the MANIFEST

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

	* perl-URPM.spec: Remove hardcoded packager

2004-04-22 08:40  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM/Build.pm: - Don't pass whole %options to parse_rpm in
	  parse_rpms_build_headers

2004-04-22 08:34  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* URPM.xs: (return_list_tag) factorize common local variables
	  declaration (though it wastes 4 pointer slots on stack in
	  RPMTAG_SUMMARY case)

2004-04-22 07:43  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* test-rpm-1.0-1mdk.noarch.rpm, test-rpm.spec, URPM/Query.pm,
	  t/parse.t: - remove unusefull function - start to add parsing
	  test

2004-04-22 07:33  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM/Build.pm: - export keep_all_tags trought function in
	  parse_rpm_build_headers

2004-04-22 07:32  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs: - return_list_tag is able to return some basic tags from
	  synthesis

2004-04-21 15:13  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.xs: - cleaning return_list_tag

2004-04-21 11:25  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM.pm, URPM.xs, URPM/Query.pm: - add list_rpm_tag function

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

	* perl-URPM.spec: 0.94-12mdk

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

	* URPM/Signature.pm: More cleanup.

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

	* Makefile.PL: Don't install manpages.

2004-04-21 10:08  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM/Signature.pm: Minor cleanup

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

	* URPM/: Build.pm, Query.pm: - add query_pkg function - transmit
	  %options to parse_rpm in parse_rpms_build_headers

2004-04-18 01:31  Olivier Thauvin <thauvin@aerov.jussieu.fr>

	* URPM/: Build.pm, Query.pm: - add Query.pm (starting to code) -
	  add fuzzy_parse function, transparency parse hdlist, synthesis,
	  rpms or dir (dir/*.rpm) - add parse_rpms function to have same
	  behaviours than parse_{hdlists,synthesis}

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

	* URPM.xs: Improve some diagnostics

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

	* Makefile.PL: Force INSTALLDIRS=vendor in the Makefile.PL, for
	  local testing

2004-04-06 16:41  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* URPM.pm, t/rpmdb.t, t/synthesis.t: Deprecate the pseudo-packages
	  URPM::Build, URPM::Resolve and URPM::Signature.  Documentation
	  fixes. Tidy up the tests (and add a few ones.)

2004-04-02 16:02  Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>

	* MANIFEST, Makefile.PL, URPM.pm, t/synthesis.t: Add some API
	  documentation for the URPM module.  Plus, some minor nits in
	  auxiliary files.

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

	* perl-URPM.spec: 0.94-11mdk

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

	* URPM/Build.pm: - parse_rpm_build_headers have same behaviour with
	  dontdie and callback	 when using cache or the rpm

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

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: added support for RH
	  7.3

2003-11-17 21:01  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.98-9mdk

2003-11-17 20:59  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Build.pm: fixed bad use of option idlist for checking its
	  presence

2003-11-15 19:47  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.94-8mdk

2003-11-15 19:44  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, URPM/Build.pm: fixed indentation and reworked code to be
	simpler

2003-11-15 19:33  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, URPM/Build.pm: applied patch from Olivier Thauvin

2003-10-13 12:36  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.94-7mdk

2003-10-13 12:34  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed to find package with full provides on
	whatrequires obsoleted, so that pam-devel is upgraded correctly for
	example.

2003-09-10 17:11  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: removed STDERR log.

2003-09-10 17:11  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: diff_provides on obsoleted provides are needed.

2003-09-10 13:46  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.94-5mdk

2003-09-10 13:45  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed bad ARRAY reference (promote).

2003-09-05 12:33  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.94-4mdk

2003-09-02 19:19  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.94-3mdk

2003-09-02 19:19  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: removed log.

2003-09-02 19:18  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed package badly removed.

2003-08-22 15:53  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.94-2mdk

2003-08-22 15:52  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: removed potential deadlock.

2003-08-21 15:04  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Signature.pm: 0.94-1mdk
	(URPM::Signature fixes and changes)

2003-08-21 13:25  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Signature.pm: fixed with gc suggestion which are really fine
	(and right).

2003-08-20 18:17  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: final 0.93-7mdk

2003-08-20 17:10  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Signature.pm: 0.93-7mdk (signature
	comparison workaround)

2003-08-19 18:33  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.93-6mdk

2003-08-19 18:32  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: added URPM::import_pubkey to import a key (only one)
	directly to opened rpm database or by opening the database on the
	fly.

2003-08-19 18:31  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Signature.pm: fixed URPM::import_armored_file to use
	internal XS function to import directly to database, handle
	importation of multiple keys by file.

2003-08-18 17:29  Pixel <pixel@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: perl_checker compliance

2003-08-13 14:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* perl-URPM.spec: provide URPM::Signature as well

2003-08-11 17:27  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.93-3mdk

2003-08-11 17:27  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: fixed files_md5sum returning not the same number as
	files method.  removed unsatisfied_requires2 not used (and doing
	nothing usefull).

2003-08-11 16:04  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Signature.pm: 0.93-2mdk

2003-08-06 19:45  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Signature.pm: final 0.93-1mdk

2003-08-06 17:54  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Build.pm, URPM/Signature.pm:
	0.93-1mdk

2003-08-06 11:52  Fançois Pons <fpons@mandrakesoft.com>

	* MANIFEST: added signature management.

2003-08-06 11:50  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Signature.pm: initial support for parsing armored file
	(without gpg) and registering rpmdb pubkeys.

2003-08-04 19:51  Fançois Pons <fpons@mandrakesoft.com>

	* MANIFEST, perl-URPM.spec, URPM/Resolve.pm: 0.92-4mdk

2003-08-01 21:29  Pixel <pixel@mandrakesoft.com>

	* perl-URPM.spec: - rebuild for new perl (it helps DrakX build
	script) - use DESTDIR

2003-07-30 18:59  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.92-2mdk

2003-07-30 18:57  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed some missing unsatisfied in reason of
	rejected packages.  fixed provide obsoleted which should not be
	taken into account when looking for obsoletes.

2003-07-28 17:13  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.92-1mdk

2003-07-24 17:28  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-14mdk

2003-07-24 12:10  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Build.pm, URPM/Resolve.pm:
	0.91-13mdk

2003-07-16 15:34  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.91-12mdk

2003-07-16 15:10  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Build.pm: fixed cache not taken into account.

2003-07-16 14:07  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed small typo on regex for
	URPM::compute_flags

2003-07-10 18:09  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: fixed SvPV typos.

2003-07-10 18:05  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.91-11mdk

2003-07-10 18:04  Fançois Pons <fpons@mandrakesoft.com>

	* Makefile.PL: removed -f-no-rtti as no C++ code is used.

2003-07-10 18:03  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: starting coding unsatisfied_requires in C, incomplete. 
	modified return_list_str to allow getting strings list in C easily
	and quickly.

2003-07-10 18:02  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: optimized URPM::compute_flags method by an
	almost unlimited factor.

2003-07-07 19:28  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-10mdk

2003-07-07 17:14  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-9mdk

2003-07-04 14:18  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-8mdk

2003-06-26 17:26  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-7mdk

2003-06-19 16:24  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-6mdk

2003-06-19 13:12  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: make sure a callback parameter is taken into account
	only if a reference is used.

2003-06-19 12:31  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-5mdk

2003-06-18 19:02  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: added missing fix on bad
	conflicts listing, removed stderr logs.

2003-06-18 18:53  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-4mdk

2003-06-18 18:14  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-4mdk

2003-06-18 13:52  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.91-3mdk

2003-06-17 17:59  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: added compilable on rpm-4.0.4 of rpm.

2003-06-17 17:54  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: fixed compilation on rpm 4.0.4.

2003-06-17 17:35  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: fixed 0.91-2mdk

2003-06-17 15:39  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.91-2mdk

2003-06-16 19:57  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm, t/rpmdb.t:
	0.91-1mdk

2003-06-12 17:52  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.90-10mdk

2003-06-12 17:52  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: improved return value of verify_rpm.

2003-06-11 17:42  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: removed $v-> (for rejected hash value) by $rv in
	order to avoid name clash with $v (version).

2003-06-11 13:34  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.90-9mdk

2003-06-05 20:41  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: fixed memory leak in parse_rpm.

2003-06-05 19:46  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.90-8mdk

2003-06-05 15:53  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.90-7mdk

2003-06-05 10:47  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/: Build.pm, Resolve.pm: added clever cache header management
	during build of hdlist.  removed no_flag_update obsoleted.

2003-06-04 11:47  Warly <warly@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: Add Pkg_buildtime to get
	RPMTAG_BUILDTIME

2003-06-03 12:21  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: a newer version for a newer package.

2003-06-03 12:14  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs: fixed sutpid typo (strange compiler didn't notice
	anything)

2003-06-02 18:38  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.90-4mdk

2003-05-30 13:32  Warly <warly@mandrakesoft.com>

	* URPM.xs: move packing and keep_all_tags declaration in
	Urpm_parse_rpm to the begining of the function in order to get the
	argument initialisation correctly working (otherwize they were
	overriden and systematically set to 0).

2003-05-30 12:11  Warly <warly@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: add Pkg_license function to URPM.xs
	(URPM::Package)

2003-05-26 17:13  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.90-2mdk

2003-05-23 17:26  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.90-1mdk
	first backtrackable method, still lacking backtrack of remove and
	better handling of choices during backtrack, too much simplist.

2003-05-16 17:11  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.84-1mdk

2003-05-14 19:43  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.83-4mdk

2003-05-13 23:02  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Build.pm: 0.83-3mdk

2003-05-13 22:46  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* URPM/Build.pm: perl_checker fixes

2003-05-13 22:35  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* URPM.pm: perl_checker fix

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

	* perl-URPM.spec: - rebuild for new perl requires/provides -
	provide perl packages URPM::Resolve and URPM::Build since the  
	perl packages are URPM for object export

2003-04-29 19:16  Fançois Pons <fpons@mandrakesoft.com>

	* Makefile.PL, URPM.pm, URPM.xs, build_rpm, perl-URPM.spec: first
	try of 4.2 compatible perl-URPM, missing verify_signature, new
	version 0.83

2003-04-24 17:51  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.82-4mdk

2003-04-22 16:35  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.82-3mdk

2003-04-14 15:07  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.82-2mdk

2003-04-11 18:29  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fixed stupid typo in compute_skip_flags

2003-04-11 18:06  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: brand new 0.82
	version (flag_skip, excludedocs, fix NULL get_name)

2003-03-12 19:16  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.81-13mdk

2003-03-10 17:44  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Build.pm, URPM/Resolve.pm:
	0.81-12mdk

2003-03-03 14:09  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.81-11mdk

2003-02-27 14:22  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.81-10mdk

2003-02-27 14:13  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: allow choices to return multiple selection.

2003-02-19 14:28  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.81-9mdk

2003-02-13 19:37  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.81-8mdk

2003-02-13 18:53  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: fix rpmdrake woes on incompatible arch.

2003-01-23 15:29  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Build.pm, URPM/Resolve.pm: 0.81-7mdk

2003-01-06 17:33  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.81-6mdk

2003-01-06 12:25  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.81-5mdk

2002-12-20 12:05  Pixel <pixel@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: perl_checker fixes (syntax only)

2002-12-18 15:57  Pixel <pixel@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: help perl_checker recognise packages
	used as classes

2002-12-18 13:54  Pixel <pixel@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: perl_checker fixes

2002-12-17 14:57  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: added very faster code, 3 times faster
	on traverse_tag with --env.

2002-12-17 14:46  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.81-1mdk

2002-12-11 12:27  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.80-2mdk

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

	* URPM.pm, URPM.xs, perl-URPM.spec: 0.80-1mdk

2002-12-03 15:43  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec: 0.71-1mdk

2002-09-17 15:16  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-10mdk

2002-09-09 16:25  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-9mdk

2002-09-02 16:46  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-8mdk

2002-08-30 17:52  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-7mdk

2002-08-30 15:08  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-6mdk

2002-08-29 17:48  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-5mdk

2002-08-29 11:41  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.70-4mdk

2002-08-28 16:15  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: added URL (cvsweb at least).

2002-08-28 16:06  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.70-3mdk

2002-08-26 20:29  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.70-2mdk

2002-08-23 15:08  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm: fixed VERSION to 0.70.

2002-08-23 15:06  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec: 0.70-1mdk.

2002-08-13 12:05  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-8mdk

2002-08-12 18:00  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-7mdk

2002-08-12 15:34  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-6mdk

2002-08-09 19:12  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-5mdk

2002-08-09 18:47  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-4mdk

2002-08-07 16:25  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.60-3mdk

2002-08-06 17:04  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.60-2mdk

2002-08-05 18:57  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.60-1mdk

2002-07-25 13:19  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.50-6mdk

2002-07-25 09:27  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.50-5mdk

2002-07-25 09:08  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Build.pm: fixed typo (stupid).

2002-07-24 14:36  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Build.pm, URPM/Resolve.pm:
	0.50-4mdk

2002-07-24 11:18  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.50-3mdk

2002-07-23 17:14  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.50-2mdk

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

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.50-1mdk

2002-07-23 13:59  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.20-2mdk

2002-07-22 19:53  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.20-1mdk

2002-07-22 10:35  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.11-2mdk

2002-07-19 10:50  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.11-1mdk

2002-07-16 20:07  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.10-2mdk

2002-07-15 18:53  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.10-1mdk

2002-07-11 15:14  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.09-2mdk

2002-07-10 12:19  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.09-1mdk

2002-07-09 17:06  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Build.pm: 0.08-4mdk

2002-07-09 12:55  Pixel <pixel@mandrakesoft.com>

	* perl-URPM.spec: adapt to perl 5.8.0

2002-07-08 16:47  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.08-2mdk

2002-07-08 11:55  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec: 0.08-1mdk

2002-07-05 17:25  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.07-2mdk

2002-07-04 19:53  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, typemap: 0.07-1mdk

2002-07-03 18:11  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.06-2mdk

2002-07-03 14:40  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Build.pm, URPM/Resolve.pm:
	0.06-1mdk

2002-07-01 13:55  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.05-2mdk

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

	* URPM.pm, perl-URPM.spec, URPM/Resolve.pm: 0.05-1mdk

2002-06-26 14:37  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.04-6mdk

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

	* URPM.xs, perl-URPM.spec: 0.04-5mdk

2002-06-13 19:56  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec, URPM/Resolve.pm: 0.04-4mdk

2002-06-13 18:16  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec: 0.04-3mdk

2002-06-13 17:19  Fançois Pons <fpons@mandrakesoft.com>

	* URPM/Resolve.pm: added compute_installed_flags for yoyotte.

2002-06-13 12:48  Fançois Pons <fpons@mandrakesoft.com>

	* perl-URPM.spec: 0.04-2mdk

2002-06-13 12:24  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.04-1mdk

2002-06-11 20:02  Fançois Pons <fpons@mandrakesoft.com>

	* MANIFEST: added missing entry Resolve.pm

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

	* URPM.pm, URPM.xs, perl-URPM.spec, URPM/Resolve.pm: 0.04-1mdk

2002-06-06 17:44  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, perl-URPM.spec: 0.03-2mdk

2002-06-06 11:57  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.pm, URPM.xs, build_rpm, perl-URPM.spec: 0.03-1mdk

2002-06-05 18:44  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, t/rpmdb.t: 0.02-3mdk

2002-06-05 10:03  Fançois Pons <fpons@mandrakesoft.com>

	* URPM.xs, perl-URPM.spec, URPM/Build.pm: log on rpmdb open/close.

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

	* URPM.pm, perl-URPM.spec, URPM/Build.pm: cleaned URPM::Build to
	accept extended parameter list and -w clean.  0.02.

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

	* perl-URPM.spec: added Packager field.

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

	* build_rpm, perl-URPM.spec: initial revision.

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

	* MANIFEST, Makefile.PL, README, URPM.pm, URPM.xs, typemap,
	URPM/Build.pm, t/rpmdb.t, t/synthesis.t: initial revision.