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
|
-------------------------------------------------------------------
Wed May 27 11:48:46 CEST 2020 - mls@suse.de
- Support blacklisted packages in solver_findproblemrule()
[bnc#1172135]
- Support rules with multiple negative literals in choice rule
generation
- bump version to 0.7.14
-------------------------------------------------------------------
Fri Apr 24 12:00:30 CEST 2020 - mls@suse.de
- Fix solvable swapping messing up idarrays
- bump version to 0.7.13
-------------------------------------------------------------------
Mon Apr 20 17:24:21 CEST 2020 - mls@suse.de
- fix ruleinfo of complex dependencies returning the wrong origin
- bump version to 0.7.12
-------------------------------------------------------------------
Wed Jan 22 13:52:48 CET 2020 - mls@suse.de
- fixed solv_zchunk decoding error if large chunks are used
- treat retracted pathes as irrelevant
- made add_update_target work with multiversion installs
- bump version to 0.7.11
-------------------------------------------------------------------
Thu Dec 19 16:29:52 CET 2019 - mls@suse.de
- fix solv_zchunk decoding error if large chunks are used
[bnc#1159314]
-------------------------------------------------------------------
Tue Dec 10 21:02:31 CET 2019 - mls@suse.de
- build with -DENABLE_RPMDB_LIBRPM=1 on SUSE to support
multiple rpm database backends
-------------------------------------------------------------------
Tue Dec 10 14:18:36 CET 2019 - mls@suse.de
- added two new function to make libzypp independent of the rpm
database format
- bump version to 0.7.10
-------------------------------------------------------------------
Thu Nov 21 16:34:52 CET 2019 - mls@suse.de
- support conda constrains dependencies
- bump version to 0.7.9
-------------------------------------------------------------------
Tue Nov 12 11:35:12 CET 2019 - mls@suse.de
- support arch<->noarch package changes when creating patch
conflicts from the updateinfo data
- support for SOLVER_BLACKLIST jobs that block the installation
of matched packages unless they are directly selected by an
SOLVER_INSTALL job
- libsolv now also parses the patch status in the updateinfo
parser
- new solvable_matchessolvable() function
- bump version to 0.7.8
-------------------------------------------------------------------
Fri Oct 18 10:53:54 CEST 2019 - mls@suse.de
- fix updating of too many packages in focusbest mode
- fix handling of disabled installed packages in distupgrade
- new POOL_FLAG_WHATPROVIDESWITHDISABLED pool flag
- bump version to 0.7.7
-------------------------------------------------------------------
Wed Aug 28 14:49:19 CEST 2019 - mls@suse.de
- Fix repository priority handling for multiversion packages
- Make code compatible with swig 4.0, remove obj0 instances
- repo2solv: support zchunk compressed data
- bump version to 0.7.6
-------------------------------------------------------------------
Wed Jul 10 07:48:10 UTC 2019 - Martin Liška <mliska@suse.cz>
- Add -ffat-lto-objects to $optflags as the package provides
static libraries
- Remove NO_BRP_STRIP_DEBUG=true as brp-15-strip-debug will
not strip debug info for archives
-------------------------------------------------------------------
Thu Jun 13 16:15:39 CEST 2019 - mls@suse.de
- make cleandeps jobs on patterns work [bnc#1137977]
-------------------------------------------------------------------
Wed Jun 12 13:22:40 CEST 2019 - mls@suse.de
- fix favorq leaking between solver runs if the solver is reused
- fix SOLVER_FLAG_FOCUS_BEST updateing packages without reason
- be more correct with multiversion packages that obsolete their
own name [bnc#1127155]
- allow building with swig-4.0.0 [bnc#1135749]
- bump version to 0.7.5
-------------------------------------------------------------------
Wed Apr 24 15:34:44 CEST 2019 - mls@suse.de
- always prefer to stay with the same package name if there are
multiple alternatives [bnc#1131823]
-------------------------------------------------------------------
Fri Mar 29 15:58:54 CET 2019 - mls@suse.de
- repo_add_rpmdb: do not copy bad solvables from the old solv file
- fix cleandeps updates not updating all packages
- experimental DISTTYPE_CONDA and REL_CONDA support
- bump version to 0.7.4
-------------------------------------------------------------------
Wed Jan 30 15:51:36 CET 2019 - mls@suse.de
- fixed a couple of null pointer derefs
[bnc#1120629] [bnc#1120630] [bnc#1120631]
[CVE-2018-20532] [CVE-2018-20533] [CVE-2018-20534]
- do favor evaluation before pruning allowing to (dis)favor
specific package versions
- no longer disable infarch rules when they don't conflict with
the job
- bump version to 0.7.3
-------------------------------------------------------------------
Fri Dec 7 15:10:46 CET 2018 - mls@suse.de
- do not autouninstall packages because of forcebest updates
- support rpm's new '^' version separator
- support set/get_considered_list in bindings
- new experimental SOLVER_FLAG_ONLY_NAMESPACE_RECOMMENDED flag
[fate#325513]
- bump version to 0.7.2
-------------------------------------------------------------------
Wed Oct 31 13:50:22 CET 2018 - mls@suse.de
- fix nasty off-by-one error in repo_write
- also copy pattern categories from the rpm that defines the
pattern [fate#323785]
- bump version to 0.7.1
-------------------------------------------------------------------
Wed Oct 24 10:48:56 CEST 2018 - mls@suse.de
- new repowriter interface
- new selection_make_matchsolvable function
- dropped support of REPOKEY_TYPE_U32
- bindings: Selection.flags is now an attribute
- bump version to 0.7.0
-------------------------------------------------------------------
Thu Aug 9 17:09:41 CEST 2018 - mls@suse.de
- refactor arch handling
- add support for zstd and zchunk compression
- convert repo2solv.sh script into a binary tool
- bump version to 0.6.35
------------------------------------------------------------------
Wed Jul 18 14:11:51 UTC 2018 - ngompa13@gmail.com
- Fix compatibility with Mageia and RH/Fedora
------------------------------------------------------------------
Wed Jul 18 11:02:29 UTC 2018 - tchvatal@suse.com
- Sort a bit with spec-cleaner
- Use python/ruby/etc condition names to match what other packages
do in order to make sure we are enabling/disabling stuff within
prjcfg
- Silence the source unpacking
- Make sure to execute tests
-------------------------------------------------------------------
Fri Mar 23 12:02:08 CET 2018 - mls@suse.de
- make sure product files come from /etc/products.d in fallback
search [bnc#1086602]
- bump version to 0.6.34
-------------------------------------------------------------------
Thu Mar 1 10:52:23 CET 2018 - mls@suse.de
- also use suggests for ordering packages [bnc#1077635]
-------------------------------------------------------------------
Wed Feb 28 16:29:55 CET 2018 - mls@suse.de
- fix bad assignment in solution refinement that led
to a memory leak [bnc#1075978]
- use license tag instead of doc in the spec file [bnc#1082318]
- bump version to 0.6.33
-------------------------------------------------------------------
Tue Feb 13 11:51:11 CET 2018 - mls@suse.de
- fixed bug that could make fileconflict detection very slow
in some cases [bnc#953130]
- bump version to 0.6.32
-------------------------------------------------------------------
Wed Jan 31 11:41:51 CET 2018 - mls@suse.de
- new ENABLE_RPMDB_LIBRPM/ENABLE_RPMPKG_LIBRPM config options
- new pool_set_whatprovides function to change the whatprovides
data
- much improved selection code
- bump version to 0.6.31
-------------------------------------------------------------------
Tue Oct 24 12:09:32 UTC 2017 - jengelh@inai.de
- Update package descriptions and groups.
Replace old $RPM_* variables by macros.
-------------------------------------------------------------------
Mon Oct 23 11:40:22 CEST 2017 - mls@suse.de
- many fixes and improvements for cleandeps
- support debian packages with xz compressed control.tar
- always create dup rules for "distupgrade" jobs
- use recommends also for ordering packages
- Fix splitprovides handling with addalreadyrecommended turned off
[bnc#1059065]
- bump version to 0.6.30
-------------------------------------------------------------------
Thu Sep 7 16:18:20 CEST 2017 - mls@suse.de
- expose solver_get_recommendations in bindings
- fix bug in solver_prune_to_highest_prio_per_name resulting in
bad solver_get_recommendations output
- support 'without' and 'unless' dependencies
- fix yumobs rule generation bug
- Use same heuristic as upstream to determine src rpms
- bump version to 0.6.29
-------------------------------------------------------------------
Fri Jun 30 16:37:31 CEST 2017 - mls@suse.de
- make peace with newer perl versions
- fix memory leak in bindings
- add pool_best_solvables() function
- fix 64bit integer parsing from RPM headers
- bump version to 0.6.28
-------------------------------------------------------------------
Sun May 28 13:32:15 UTC 2017 - ngompa13@gmail.com
- Enable complex/rich dependencies for CentOS/RHEL 7, matching how
libsolv is configured there.
-------------------------------------------------------------------
Thu May 11 12:41:07 UTC 2017 - ngompa13@gmail.com
- Disable bzip2 and xz/lzma compression support for SLE <= 12
-------------------------------------------------------------------
Mon May 8 13:15:09 UTC 2017 - ngompa13@gmail.com
- Enable bzip2 and xz/lzma compression support
- Enable complex/rich dependencies on distributions with RPM 4.13+
- Simplified CentOS/RHEL conditionals
- Added Mageia conditionals
- Fixed a few spec portability issues
-------------------------------------------------------------------
Tue Apr 25 14:11:05 CEST 2017 - mls@suse.de
- change queue resize code to use adaptive chunk sizes
- fix potential segfault in testcase_depstr [bnc#1036002]
- fix performance issues with name = md5sum dependencies
[bnc#1035946]
- improve "forcebest with uninstall" handling
- make dirid handling more robust
- build with libxml2 instead of libexpat
- bump version to 0.6.27
-------------------------------------------------------------------
Wed Feb 15 11:34:59 CET 2017 - mls@suse.de
- export solvable_matchesdep function, as we now use it in
the bindings [bnc#1025440]
- bump version to 0.6.26
-------------------------------------------------------------------
Tue Feb 7 13:13:01 CET 2017 - mls@suse.de
- add SOLVABLE_NAME hack for pool_whatmatchesdep and
solvable_matchesdep
- add SOLVER_FLAG_STRONG_RECOMMENDS option
- add SOLVER_FLAG_INSTALL_ALSO_UPDATES option
- do not special case release-less provides in sort_by_common_dep
- solver_problemruleinfo2str: return reason why a package is not
installable
- guard against dirpool_add_dir being called with an illegal
component id
- reject solv files with bad directories
- bump version to 0.6.25
-------------------------------------------------------------------
Thu Nov 10 15:09:25 CET 2016 - mls@suse.de
- make testcase_str2solvid work with ignored packages
- improve checks against corrupt rpm
- add SOLVER_FLAG_FOCUS_BEST solver flag
- rework susetags multi-line handling [bnc#1007273]
- build both for python2 and python3
- bump version to 0.6.24
-------------------------------------------------------------------
Fri Jul 22 11:37:23 CEST 2016 - mls@suse.de
- also scan /usr/share/metainfo for appdata files [bnc#989830]
- support tri-state product-endoflife [fate#320699]
- take lockstep into account when calculating unneeded packages
- ignore appplication extensions for now in appdata parser
[bnc#984332]
- add enabled features to solvversion.h
- take disfavors into account when auto-minimizing for recommended
packages
- change cleandeps code so that it keeps all providers
- make sure that all repos have different names in a testcase
- bump version to 0.6.23
-------------------------------------------------------------------
Tue Jun 7 11:24:47 CEST 2016 - mls@suse.de
- fix bug in ignoreinst logic [bnc#983141]
-------------------------------------------------------------------
Wed May 18 15:09:56 CEST 2016 - mls@suse.de
- add pool->setdisttype to the bindings
- fix error in repo_deb that could lead to missing packages
- add reason testing to testcase code
- add pool_whatcontainsdep, selection_make_matchdepid, and
SELECTION_MATCH_DEPSTR
- add SOLVER_FAVOR and SOLVER_DISFAVOR job types
- allow unknown archs in pool_setarch
- add the SOLVER_FLAG_URPM_REORDER solver flag
- fix segfault in cshash dedup code [bnc#980901]
- fix supplements handling when implicitobsoleteusescolors is set
- bump version to 0.6.21
-------------------------------------------------------------------
Fri Apr 8 15:36:21 CEST 2016 - mls@suse.de
- Better support of complex deps in pool_match_dep and
selection_make_matchdeps
- make SOLVER_REASON_CLEANDEPS_ERASE introspection reason work again
- make dep2str use rpm-like output if disttype is rpm
- implement filtering of Requires(pre,post) for installed packages
- simplify handling of pseudo package updates [bnc#967006]
- improve speed of rpmmd metadata parsing
- bump version to 0.6.20
-------------------------------------------------------------------
Mon Feb 15 16:46:31 CET 2016 - mls@suse.de
- parse media number from baseurl
- support susedata.<lang>.xml language files
- bump version to 0.6.19
-------------------------------------------------------------------
Fri Jan 29 14:17:26 CET 2016 - mls@suse.de
- fix rule generation for linked packages [bnc#961738]
- add hash method in bindings for some classes
- bump version to 0.6.18
-------------------------------------------------------------------
Tue Dec 22 11:49:02 CET 2015 - mls@suse.de
- fix update handling of multiversion packages [bnc#957606]
- bump version to 0.6.17
-------------------------------------------------------------------
Mon Dec 21 12:59:19 CET 2015 - mls@suse.de
- fix orphan handling for dup with keeporphans set [bnc#957606]
- bump version to 0.6.16
-------------------------------------------------------------------
Mon Dec 14 15:48:01 CET 2015 - mls@suse.de
- change product links to also look at timestamps [bnc#956443]
- rework multiversion orphaned handling [bnc#957606]
- support key type changes in repodata_internalize()
- allow serialization of REPOKEY_TYPE_DELETED
- improve appdata handling of installed packages
- improve performance when run under xen
- bump version to 0.6.15
-------------------------------------------------------------------
Mon Oct 5 13:27:25 CEST 2015 - mls@suse.de
- fix bug in recommends handling [bnc#948482]
- also check installed packages in multiversion handling
- fix build on Mageia
- bump version to 0.6.14
-------------------------------------------------------------------
Fri Sep 25 11:54:02 CEST 2015 - mls@suse.de
- support a generic string for pattern-visible() [bnc#900769]
- add a SOLVER_ALLOWUNINSTALL job type
- add ordercycle introspection
- fix mkmask handling of a zero size
- support 'recommends' in repo_mdk.c
- support filelist parsing in installcheck
- bump version to 0.6.13
-------------------------------------------------------------------
Tue Sep 1 13:37:11 CEST 2015 - mls@suse.de
- added tcl bindings
- improve debian ar archive handling
- bindings: set the CLOEXEC flags in xfopen
- bindings: support testcase writing [bnc#946752]
- support REL_ELSE as evr of REL_COND
- bump version to 0.6.12
-------------------------------------------------------------------
Tue Jun 2 11:41:10 CEST 2015 - mls@suse.de
- add forgotten sha-512 support to data_skip
- speed up whatprovides lookup with a new helper array
- fix dup with allowuninstall
- improve alreadyinstalled handling of supplements
- some code cleanup
- bump version to 0.6.11
-------------------------------------------------------------------
Sat May 2 11:44:08 UTC 2015 - mrueckert@suse.de
- you really want to use rbconfig there
-------------------------------------------------------------------
Wed Mar 18 11:04:34 CET 2015 - mls@suse.de
- fix bug in dislike_old_versions that could lead to a segfault
[bnc#922352]
- bump version to 0.6.10
-------------------------------------------------------------------
Mon Mar 9 16:42:35 CET 2015 - mls@suse.de
- rework splitprovides handling [bnc#921332]
- improve package choosing code
- new testcase dependency format
- add alternatives introspection
- make reorder_dq_for_jobrules also look at recommends/suggests
- rework branch handling
- add parser for rpm rich deps
- bump version to 0.6.9
-------------------------------------------------------------------
Wed Jan 14 08:58:46 CET 2015 - ma@suse.de
- fixes to build with swig 3.0.3
- bump version to 0.6.8
-------------------------------------------------------------------
Fri Dec 19 08:59:27 CET 2014 - ma@suse.de
- add product:regflavor attribute [bnc#896224]
- bump version to 0.6.7
-------------------------------------------------------------------
Tue Oct 7 14:39:23 CEST 2014 - mls@suse.de
- fix bug in reorder_dq_for_jobrules leading to crashes
[bnc#899907]
- rename rpm rules to pkg rules
- add manpages for the tools
- bump version to 0.6.6
-------------------------------------------------------------------
Thu Sep 11 17:33:04 CEST 2014 - mls@suse.de
- support DUCHANGES_ONLYADD flag in diskusage calculation
[bnc#783100]
- add whatmatchesdep to bindings
- support pool->considered in testcases
- always call selection_filelist if SELECTION_FILELIST is set
- support yum style obsolete handling for package splits
- bump version to 0.6.5
-------------------------------------------------------------------
Tue Jul 8 14:13:40 CEST 2014 - mls@suse.de
- expand solver_identical fix to applications [bnc#885830]
- fix instbuddy generation code
- improve autominimizing implementation to also look at
supplements
- bump version to 0.6.4
-------------------------------------------------------------------
Fri Jun 13 08:28:12 CEST 2014 - ma@suse.de
- quick fix for [bnc#881320]
- bump version to 0.6.3
-------------------------------------------------------------------
Fri Jun 6 11:37:00 CEST 2014 - ma@suse.de
- Provide PRODUCT_REGISTER_TARGET for available products [bnc#881320]
- bump version to 0.6.2
-------------------------------------------------------------------
Thu Apr 17 14:47:42 CEST 2014 - mls@suse.de
- support BREAK_ORPHANS and KEEP_ORPHANS solver flags
- adapt to AppStream 0.6
- reduce memory usage in repo_write and repodata_internalize
- make repodata_stringify return the result string
- bump version to 0.6.1
-------------------------------------------------------------------
Mon Apr 7 15:36:07 CEST 2014 - mls@suse.de
- add support for sha224/sha384/sha512
- add userinstalled helper functions
- improve dataiterator bindings (in an incompatible way)
- automatically free pool in bindings
- bump version to 0.6.0 (ABI + bindings API breakage)
-------------------------------------------------------------------
Wed Mar 26 15:08:46 CET 2014 - mls@suse.de
- fix handling of packages with no update/feature rule [bnc#870195]
- fix crash when in internalize() when the schemadata gets
reallocated
- fix access to uninitialized memory in repo_empty()
- a couple of optimizations
- support REPOKEYWORDS in content parser
- bindings: don't let str(Datamatch) change the strings
- fix basename optimization for STRINGEND
- bump version to 0.5.1
-------------------------------------------------------------------
Wed Feb 26 15:08:35 CET 2014 - mls@suse.de
- improve appdata.xml parsing [bnc#865293]
- repo_helix: parse application elements
- bump version to 0.5.0
-------------------------------------------------------------------
Fri Feb 21 16:23:58 CET 2014 - mls@suse.de
- fix bug in solver_get_unneeded that could lead to an
endless loop [bnc#828764]
- adapt to new rpm tags for weak dependencies
- fix pseudo packages obsoleting other pseudo packages
- optimize unfulfilled rule handling a bit
- bump version to 0.4.5
-------------------------------------------------------------------
Fri Feb 14 11:03:18 CET 2014 - mls@suse.de
- always keep job/jobflags in selection_filter()
- implement COND handling in supplements/enhances
- improve OR handling in supplements/enhances
- fix typo in application backlink creation
- support PRODUCT_ENDOFLIFE
- store repoid as flexarray
- also translate autoproduct strings
- bump version to 0.4.4
-------------------------------------------------------------------
Mon Jan 27 17:15:41 CET 2014 - mls@suse.de
- add support for autogenerated products
- support repoid array in product definition
- bump version to 0.4.3
-------------------------------------------------------------------
Fri Jan 24 13:50:03 CET 2014 - mls@suse.de
- add -X option to susetags2solv [bnc#860271]
- fix typos in pool_job2str
- support DISTRO in content parser
- make addfilelist more resistant against corrupt rpms
- encode flags into rpmdb cookie
- add identical and evrcmp methods in bindings
- copy checksums in repo_add_rpmdb_reffp
- repo_autopattern: make sure that the category is valid utf8
- fix double-free if the number of languages is reduced to zero
- bump version to 0.4.2
-------------------------------------------------------------------
Mon Dec 9 11:53:06 CET 2013 - mls@suse.de
- make repo2solv.sh work when appdata support is off
- enable appdata support for SUSE
-------------------------------------------------------------------
Tue Dec 3 14:30:17 CET 2013 - mls@suse.de
- support appdata parsing and auto-pattern generation in tools
- adapt to python3
- tweak findproblemrule heuristic for conflicts
- add m68k/ppc64le architectures
- plug weakrulemap memory hole
- support debian multiarch annotation
- support product/pattern/application links
- bump version to 0.4.1
-------------------------------------------------------------------
Tue Sep 24 11:14:25 CEST 2013 - mls@suse.de
- do not add back cleandeps_updatepkgs packages [bnc#841781]
-------------------------------------------------------------------
Mon Sep 23 11:31:28 CEST 2013 - mls@suse.de
- added repodata_lookup_binary
- fix pattern obsoleting real packages [bnc#834376]
- add selection_make_matchdeps function to query dependencies
other than provides
- bump version to 0.4.0
-------------------------------------------------------------------
Wed Aug 21 14:39:54 CEST 2013 - mls@suse.de
- add describe_decision() and unset() methods to bindings
- do recommends pruning after selecting the highest versions
- improve filelist handling
- be more tolerant about bad xml: an empty epoch attribute means no epoch
- fix another edge case will dup mode and multiversion packages [bnc#828389]
- bring installcheck up to speed
-------------------------------------------------------------------
Mon Jun 17 15:54:44 CEST 2013 - mls@suse.de
- add SOLVER_RULE_JOB_UNSUPPORTED and SOLVER_RULE_JOB_UNKNOWN_PACKAGE
for better problem reporting
- start with library documentation
- adapt to obsoletes handling of new rpm versions
-------------------------------------------------------------------
Wed Mar 6 16:55:57 CET 2013 - mls@suse.de
- fix dataiterator returning random data in some cases
- add changelog parser
- fix nasty bug in selection_filter_rel
- allow re-run of an existing solver
- bump version to 0.3.0
-------------------------------------------------------------------
Mon Jan 14 16:01:04 CET 2013 - mls@suse.de
- trivial_installable: check vendor of affected package to see if
a patch should be ignored [bnc#736100]
- fix trivial installable requires handling
- bump version to 0.2.4
-------------------------------------------------------------------
Tue Dec 18 19:20:19 CET 2012 - mls@suse.de
- fix potential access to freed memory
- improve find_problemrule speed
- add support for special namespaceprovides jobs
- bump version to 0.2.3
-------------------------------------------------------------------
Wed Dec 5 14:37:39 CET 2012 - mls@suse.de
- many Selection improvements
- fix perl binding memory issue
- improve file list matching
- support targeted up/dup with cleandeps
- bump version to 0.2.2
-------------------------------------------------------------------
Fri Nov 23 13:57:19 CET 2012 - mls@suse.de
- support targeted up/dup
- support best rules to enforce the installation of the best package
- implement selection class to ease package selection
- fix obsolete handling for debian packages
- add pool_lookup_deltalocation helper
- bump version to 0.2.1
-------------------------------------------------------------------
Thu Oct 18 16:58:10 CEST 2012 - mls@suse.de
- fix susetags parser, it ignored the filelist of the last
solvable
- fix encoding of large values
- bump version to 0.2.0
-------------------------------------------------------------------
Mon Jun 25 13:40:58 CEST 2012 - mls@suse.de
- fix typo in repodata_merge_attrs [bnc#767510]
-------------------------------------------------------------------
Wed May 30 14:46:48 CEST 2012 - mls@suse.de
- fix build for older suse versions
- fix memory corruption in unneeded calculation when there are
product buddies
-------------------------------------------------------------------
Tue May 8 10:59:39 CEST 2012 - ma@suse.de
- build with swig-2.0.6
-------------------------------------------------------------------
Mon Apr 23 15:52:26 CEST 2012 - mls@suse.de
- added testcase framework
- add solver_get_unneeded() to get a list of no longer needed
installed packages
- changed duprule generation to ignore uninstallable packages [bnc#750485]
- fix memory leaks
- speed up whatprovides generation
- support 64bit nums, return files sizes in bytes
- return errors instead of calling exit()
- support tilde in rpm version comparison [bnc#466994]
- 0.1.0
-------------------------------------------------------------------
Tue Feb 7 16:33:10 CET 2012 - mls@suse.de
- add findutils to the requires of libsolv-tools [bnc#743634]
-------------------------------------------------------------------
Wed Feb 1 14:06:59 CET 2012 - mls@suse.de
- add cleandeps support for install/update
- check for cleandeps mistakes (untested)
-------------------------------------------------------------------
Fri Jan 27 14:10:34 CET 2012 - mls@suse.de
- make repo type code selection modular
- add more solvable_ functions
- add dependency getter/setter code to bindings
- cleanup dup handling
- hide more internals
-------------------------------------------------------------------
Mon Oct 24 13:26:18 CEST 2011 - ma@suse.de
- mls fixed package provides/obsoletes, but forgot to write
a changes entry.
-------------------------------------------------------------------
Tue Oct 18 16:18:39 CEST 2011 - ma@suse.de
- Add arch arvm7tnhl and armv7thl
-------------------------------------------------------------------
Fri Apr 29 14:35:59 CEST 2011 - mls@suse.de
- bup version to 0.17.0 to make it different from 11.4
- 0.17.0
-------------------------------------------------------------------
Thu Mar 24 10:04:16 UTC 2011 - mls@suse.de
- add missing else part in rpmdbid2db()
-------------------------------------------------------------------
Thu Feb 24 17:44:05 CET 2011 - mls@suse.de
- ignore to be dropped orhaned packages when calculating
candidates for recommends/supplements installation
-------------------------------------------------------------------
Wed Feb 2 09:24:42 UTC 2011 - kkaempf@novell.com
- Split off 'applayer' and 'bindings' as a separate package
to make the bindings more independant of libsatsolver
- 0.16.4
-------------------------------------------------------------------
Tue Jan 25 09:52:48 CET 2011 - ma@suse.de
- Apply patch introducing armv7nhl:armv7h
-------------------------------------------------------------------
Fri Oct 22 15:51:11 CEST 2010 - ma@suse.de
- updateinfoxml: Correctly parse 'issued date' field.
- 0.16.1
-------------------------------------------------------------------
Thu Sep 9 17:30:36 CEST 2010 - mls@suse.de
- bump version to 0.16 to make it different from code11_3 branch
- 0.16.0
-------------------------------------------------------------------
Mon Sep 6 13:50:02 UTC 2010 - dmacvicar@novell.com
- ruby bindings: fix bugs regarding include path loading
(was hardcoded) and refactor the way the library path is defined
(only once in a helper)
-------------------------------------------------------------------
Mon Sep 6 12:38:21 UTC 2010 - dmacvicar@novell.com
- SLE10SP3 also has vendor_ruby
-------------------------------------------------------------------
Wed Aug 18 14:11:08 UTC 2010 - kkaempf@novell.com
- refactor ruby-satsolver, pure-Ruby extensions added
- 0.15.1
-------------------------------------------------------------------
Thu May 6 17:39:20 CEST 2010 - mls@suse.de
- fix bug in cleandeps code
- bump version to 0.15 to make it different from code11_2 branch
- 0.15.0
-------------------------------------------------------------------
Tue Mar 23 17:24:46 CET 2010 - ma@suse.de
- Parse an installed products <shortsummary> tag [bnc#586303]
-------------------------------------------------------------------
Mon Mar 22 18:45:42 CET 2010 - mls@suse.de
- dataiterator: reset parent when jumping to a solvid [bnc#589640]
- 0.14.17
-------------------------------------------------------------------
Thu Mar 11 22:13:26 CET 2010 - ma@suse.de
- parse global repository ids. [bnc#377568]
- fix pattern parsing in repomd format. [bnc#585000]
- 0.14.16
-------------------------------------------------------------------
Thu Mar 11 12:18:23 CET 2010 - mls@suse.de
- fix language code lookup for fallback languages [bnc#584644]
- change solvable_lookup_str_lang interface a bit for libzypp
-------------------------------------------------------------------
Fri Feb 19 17:31:51 CET 2010 - mls@suse.de
- make dup rules work when system repo is not first [bnc#581276]
- parse pattern visibility flag in repomd format
- 0.14.15
-------------------------------------------------------------------
Fri Jan 29 14:48:34 CET 2010 - mls@suse.de
- speed up createwhatprovides when many solvables provide the same dep
- fix choice rule creation for real (bnc#551637)
- 0.14.14
-------------------------------------------------------------------
Mon Jan 18 14:42:27 CET 2010 - mls@suse.de
- set repository:toolversion to 1.0 in common_write
- 0.14.13
-------------------------------------------------------------------
Mon Dec 21 14:29:24 CET 2009 - mls@suse.de
- disable update rule in noobsoletes case if installed package is to
be kept [bnc#564239]
- work around rpm bug when --prefix is used [bnc#565525]
- add support for sparc architecture [bnc#566291]
- 0.14.12
-------------------------------------------------------------------
Mon Dec 7 13:59:08 CET 2009 - ma@suse.de
- Support optionally compressed product(s).xml in rpmmd metadata.
- 0.14.11
-------------------------------------------------------------------
Mon Nov 2 14:10:23 CET 2009 - mls@suse.de
- look at infarch/dup rules when creating choice rules, makes dup
also install 32bit packages [bnc#551637]
- 0.14.10
-------------------------------------------------------------------
Wed Oct 14 16:21:32 CEST 2009 - mls@suse.de
- ignore products element so that repo2solv works
- support MULTI_SEMANTICS
- add --withsrc option for installcheck
- add SOLVER_DROP_ORPHANED job type
- fix dropped package handling in removedisabledconflicts
- 0.14.9
-------------------------------------------------------------------
Thu Sep 24 10:27:42 CEST 2009 - mls@suse.de
- fix bug in solvable_lookup_str_base
-------------------------------------------------------------------
Wed Sep 23 11:10:08 CEST 2009 - mls@suse.de
- get missing translations from other solvables [bnc#386449]
- also look at triggers when ordering packages
- add support for REPOKEY_TYPE_BINARY
- 0.14.8
-------------------------------------------------------------------
Wed Sep 16 10:56:44 CEST 2009 - mls@suse.de
- use repomdxml to query for the location [bnc#501425]
- fix assertion failue... again
- fix fp leak [bnc#535468]
- 0.14.7
-------------------------------------------------------------------
Fri Sep 4 11:40:47 CEST 2009 - mls@suse.de
- fix multiversion handling for real
- fix speed regression in repo_susetags
- close fd leak [bnc#527506]
- remove db.h workaround
- 0.14.6
-------------------------------------------------------------------
Mon Aug 31 13:57:29 CEST 2009 - mls@suse.de
- fix to build with rpm-4.7
-------------------------------------------------------------------
Fri Aug 28 11:06:31 CEST 2009 - ma@suse.de
- add support for SOLVER_SOLVABLE_REPO
- 0.14.5
-------------------------------------------------------------------
Thu Jul 30 12:49:38 CEST 2009 - mls@suse.de
- speed up file list parsing
- speed up addfileprovides
- fix bugs in pubkey handling
- fix bug in filelist handling when there are no abs paths
- 0.14.4
-------------------------------------------------------------------
Fri Jul 17 14:07:07 CEST 2009 - mls@suse.de
- add satversion.h header file
- many changes regarding the load callback
- more dataiterator control functions
- add transaction ordering code
- add support for file conflict checking
- 0.14.3
-------------------------------------------------------------------
Mon Jun 22 16:01:02 CEST 2009 - mls@suse.de
- create libsatsolverext.a
- 0.14.2
-------------------------------------------------------------------
Wed May 6 19:52:39 CEST 2009 - ma@suse.de
- Fix to support sha256 hashes (bnc#501425)
-------------------------------------------------------------------
Wed Apr 1 10:32:43 CEST 2009 - kkaempf@suse.de
- 0.14.1
Core changes
- fix potential NULL deref in srcrpm handling (mls)
- clean up and fix suggested/recommended list creation code (mls)
- kill obsolete and broken patchxml support (mls)
- replace old solver_problemruleinfo with new solver_ruleinfo
function (mls)
- add solvable_selfprovidedep() function (mls)
- add noinfarchcheck solver option (mls)
- clone job queue to make the code more flexible (mls)
- rewrite policy rule disabling/re-enabling (bnc#481836) (mls)
- fix out-of-bounds in solver_printproblem() (mls)
Bindings changes
- provide 'Repo.attr(String)' accessor function (kkaempf)
- provide 'Solver.sizechange' to compute the changes of the
installed size after a transaction is applied (kkaempf)
- solver result iterators for Python (jblunck)
- add %newobject to track newly created objects better (kkaempf)
- generate rdoc documentation from swig input files (kkaempf)
- add a no-op Pool destructor (bnc#483252) (kkaempf)
- provide access to all flags and settings (kkaempf)
-------------------------------------------------------------------
Wed Mar 4 14:39:00 CET 2009 - mls@suse.de
- fix problem_to_solutions segfault
- bump version to 0.14 to make it different from code11 branch
- 0.14.0
-------------------------------------------------------------------
Mon Mar 2 18:20:22 CET 2009 - mls@suse.de
- add solver_trivial_installable() to fix multiversion patches [bnc#480303]
- 0.13.5
-------------------------------------------------------------------
Wed Feb 18 16:48:41 CET 2009 - ma@suse.de
- Use correct namespace (e.g. pattern:) even if solvable has no name [bnc#470011]
-------------------------------------------------------------------
Fri Jan 30 14:26:42 CET 2009 - mls@suse.de
- fix weakmap boundary check
- 0.13.3
-------------------------------------------------------------------
Tue Jan 27 13:12:30 CET 2009 - ma@suse.de
- Ignore trailing whitespace in content file parser.
-------------------------------------------------------------------
Mon Jan 26 13:55:35 CET 2009 - mls@suse.de
- fix segfault caused by whatprovides reallocation [bnc#468313]
- 0.13.1
-------------------------------------------------------------------
Tue Jan 20 17:12:17 CET 2009 - ma@suse.de
- repo_rpmdb: Fix conversion to UTF8
-------------------------------------------------------------------
Fri Dec 5 14:43:55 CET 2008 - kkaempf@suse.de
- enhance bindings to provide reasons for solver decisions
-------------------------------------------------------------------
Mon Dec 1 11:50:12 CET 2008 - mls@suse.de
- prefer patterns again until there's a real fix [bnc#450226]
-------------------------------------------------------------------
Mon Dec 1 11:13:55 CET 2008 - mls@suse.de
- susetags: fix file dependency parsing [bnc#450286]
-------------------------------------------------------------------
Fri Nov 28 18:29:08 CET 2008 - mls@suse.de
- correct problem solving algorithm
- 0.13.0
-------------------------------------------------------------------
Fri Nov 21 16:54:44 CET 2008 - dmacvicar@suse.de
- remove unused updaterepokey, replaced by repo
product information
-------------------------------------------------------------------
Thu Nov 20 10:32:01 CET 2008 - dmacvicar@suse.de
- support content, distro and updates tag properly
- remove the unused products tag
-------------------------------------------------------------------
Mon Nov 17 14:30:08 CET 2008 - ma@suse.de
- Parse RELEASE tag from contentfile (bnc #444978)
- 0.12.3
-------------------------------------------------------------------
Fri Nov 14 18:00:19 CET 2008 - mls@suse.de
- fix bugs in multiversion handling
- bring perl bindings up to speed
- 0.12.2
-------------------------------------------------------------------
Fri Nov 7 18:26:07 CET 2008 - ma@suse.de
- fix SOLVID_POS dataiterator handling
-------------------------------------------------------------------
Fri Nov 7 11:56:37 CET 2008 - kkaempf@suse.de
- make repo_zyppdb more robust (bnc#441043)
-------------------------------------------------------------------
Thu Nov 6 09:49:51 CET 2008 - kkaempf@suse.de
- Add 'user_data' argument to all applayer iterator callbacks
(bnc#418491)
-------------------------------------------------------------------
Wed Oct 29 12:36:57 CET 2008 - ma@suse.de
- Add 'sh4' architectures.
-------------------------------------------------------------------
Tue Oct 28 16:55:03 CET 2008 - ma@suse.de
- Add 'arm' architectures.
-------------------------------------------------------------------
Mon Oct 27 10:54:36 CET 2008 - kkaempf@suse.de
- Improve error detection and reporting when parsing 'content' file
-------------------------------------------------------------------
Fri Oct 24 16:03:13 CEST 2008 - ma@suse.de
- Remember the /etc/products.d enties filename in .solv
(bnc #432932)
- 0.12.1
-------------------------------------------------------------------
Thu Oct 23 10:49:40 CEST 2008 - mrueckert@suse.de
- add zlib-devel as buildrequires, cmake is looking for it
explicitely. rpm-devel used to require it but you dont really
need it to link against librpm*
- requires rpm-devel in the devel package, it is required to link
against libsatsolver.
-------------------------------------------------------------------
Wed Oct 22 13:00:56 CEST 2008 - mls@suse.de
- add pool_set_installed()
- drop "installed" arguments from some functions
- 0.12.0
-------------------------------------------------------------------
Wed Oct 22 13:00:25 CEST 2008 - dmacvicar@suse.de
- support the new standarized tags available in
createrepo > 0.9.6
saving of the distro tag still missing.
-------------------------------------------------------------------
Thu Oct 16 00:50:47 CEST 2008 - mls@suse.de
- make iterator work with completely empty repos [bnc#435838]
-------------------------------------------------------------------
Tue Oct 14 18:28:57 CEST 2008 - mls@suse.de
- the big solv data change
* incompatible new file format
* repodata handles are solvable ids
* no more extra handles
* no need to call repodata_extend anymore
- work around solver dup repo priority bug, real fix follows soon
- implement releasever
- repo_products.c is now more robust
-------------------------------------------------------------------
Mon Oct 13 16:50:14 CEST 2008 - kkaempf@suse.de
- make product parsing more robust (bnc#433362)
-------------------------------------------------------------------
Thu Oct 2 18:46:55 CEST 2008 - ma@suse.de
- Product arttributes: removed FLAVOR and REFERENCES, added PRODUCTLINE.
- revision 11233
- 0.11.0
-------------------------------------------------------------------
Tue Sep 30 13:03:10 CEST 2008 - ma@suse.de
- repo_content.c: fix broken dependency parsing.
- revision 11214
-------------------------------------------------------------------
Mon Sep 29 14:53:09 CEST 2008 - ma@suse.de
- rpms2solv failed to write out most solvable data (bnc #422338).
- revision 11201
-------------------------------------------------------------------
Fri Sep 26 11:54:34 CEST 2008 - kkaempf@suse.de
- new fallback strategy for installed products in rpmdb2solv
try /etc/products.d (code11 style) first
if this fails, try /var/lib/zypp/db/products/*
if this fails, fallback to /etc/*-release
(bnc#429177)
- 0.10.16
-------------------------------------------------------------------
Thu Sep 25 17:14:42 CEST 2008 - kkaempf@suse.de
- fully support Dataiterator in Python and Ruby bindings.
- 0.10.15
-------------------------------------------------------------------
Thu Sep 25 13:53:54 CEST 2008 - dmacvicar@suse.de
- add support for keywords in susedata
-------------------------------------------------------------------
Wed Sep 24 10:55:01 CEST 2008 - kkaempf@suse.de
- parse /etc/<xyz>-release if no /etc/products.d present
(bnc#429177)
- 0.10.14
-------------------------------------------------------------------
Mon Sep 22 12:51:51 CEST 2008 - dmacvicar@suse.de
- ability to parse suseinfo.xml for extended repomd.xml attributes
- fix susedata.xml parsing
- add CPE attribute to installed product
- real fix for segfault in multiarch parsing (bnc#427271)
- 0.10.13
-------------------------------------------------------------------
Thu Sep 18 14:44:31 CEST 2008 - dmacvicar@suse.de
- fix segfault in multiarch parsing (bnc#427271)
-------------------------------------------------------------------
Wed Sep 17 14:10:23 CEST 2008 - mls@suse.de
- fix segfault in provides iterator
- 0.10.12
-------------------------------------------------------------------
Fri Sep 12 17:32:02 CEST 2008 - dmacvicar@suse.de
- support for susedata.xml
-------------------------------------------------------------------
Fri Sep 12 14:01:11 CEST 2008 - dmacvicar@suse.de
- add repo_add_poolstr_array
- move updates="key,key.." to repomd.xml
- make product url ids more extensible
- 0.10.11
-------------------------------------------------------------------
Thu Sep 11 14:30:16 CEST 2008 - dmacvicar@suse.de
- add REPOSITORY_UPDATES to match product -> repos
- make updateinfo.xml support id attribute in collection that
leads to insert that the repository updates that id.
-------------------------------------------------------------------
Wed Sep 10 18:11:10 CEST 2008 - dmacvicar@suse.de
- create one product per BASEARCHS
-------------------------------------------------------------------
Wed Sep 10 14:19:26 CEST 2008 - ma@suse.de
- repo_products: Parse schemeversion, propagate product
updaterepokey and flavor. Fix segfault on malformed
xml.
- 0.10.10
-------------------------------------------------------------------
Wed Sep 10 11:57:27 CEST 2008 - dmacvicar@suse.de
- accept the PATTERNS tag in content file
-------------------------------------------------------------------
Tue Sep 9 21:26:31 CEST 2008 - kkaempf@suse.de
- rpmdb2solv changes:
- fix bug when parsing multiple products
- adapt to .prod file as of 9/9/08 7:20pm
- 0.10.9
-------------------------------------------------------------------
Tue Sep 9 17:52:30 CEST 2008 - ma@suse.de
- Reenable -Werror and fix bindings.
- 0.10.8
-------------------------------------------------------------------
Tue Sep 9 11:50:39 CEST 2008 - dmacvicar@suse.de
- disable -Werror for swig generated stuff
-------------------------------------------------------------------
Fri Sep 5 18:59:35 CEST 2008 - kkaempf@suse.de
- adapt /etc/product.d parser to generated .prod files.
-------------------------------------------------------------------
Fri Sep 5 13:29:47 CEST 2008 - ma@suse.de
- tools/repo_susetags.c: Parse packages vendor (bnc #422493).
- 0.10.7
-------------------------------------------------------------------
Thu Sep 4 12:30:06 CEST 2008 - kkaempf@suse.de
- tools/rpmdb2solv: Adapt to xml-based /etc/products.d
- tools/rpmdb2solv: Add '-a <attribute>' to print
distribution.target attribute of baseproduct.
-------------------------------------------------------------------
Tue Sep 2 12:17:03 CEST 2008 - mls@suse.de
- make solver includes use "" instead of <>, fixes bnc#415920
- implement otherproviders()
- make patches do nevr matching
- make patch conflicts work with multiversion
- new job commands, now combinded from job type and select type
- support for distupgrade mode
- make SOLVER_ERASE_SOLVABLE work
- also check obsoletes when disabling update rules
- 0.10.6
-------------------------------------------------------------------
Fri Aug 22 18:04:12 CEST 2008 - dmacvicar@suse.de
- add support for extensible metadata over primary +
diskusage
- 0.10.5
-------------------------------------------------------------------
Fri Aug 15 16:29:00 CEST 2008 - kkaempf@suse.de
- ensure existance of product solvable in repo_content(bnc#417594)
-------------------------------------------------------------------
Fri Aug 15 15:00:32 CEST 2008 - kkaempf@suse.de
- follow /etc/products.d/baseproduct and mark product as 'base'
-------------------------------------------------------------------
Fri Aug 15 14:26:29 CEST 2008 - kkaempf@suse.de
- Implement pre-code11 fallback for products, parse /etc/*-release
if /etc/products.d is not available.
-------------------------------------------------------------------
Wed Aug 13 18:06:41 CEST 2008 - kkaempf@suse.de
- provide installtime for installed products.
-------------------------------------------------------------------
Wed Aug 13 15:42:36 CEST 2008 - dmacvicar@suse.de
- include new file search capability commited by matz
(SEARCH_FILES)
- 0.10.4
-------------------------------------------------------------------
Wed Aug 13 10:31:01 CEST 2008 - kkaempf@suse.de
- Honor rpmdb2solv's '-r <root>' also for the products.d path.
-------------------------------------------------------------------
Tue Aug 12 14:22:29 CEST 2008 - kkaempf@suse.de
- Add .prod parsing for 'installed' products to rpmdb2solv.
- Improve python-bindings, add iterators.
-------------------------------------------------------------------
Thu Aug 7 22:00:55 CEST 2008 - dmacvicar@suse.de
- implement relogin suggested support (fate#304889)
-------------------------------------------------------------------
Thu Aug 7 13:36:59 CEST 2008 - ma@suse.de
- Susetags: Allow whitespace in file provides generated by
autobuild (bnc#415115)
-------------------------------------------------------------------
Fri Aug 1 18:59:22 CEST 2008 - dmacvicar@suse.de
- insert the checksum in rpmmd generated solv files
(bnc#414002)
- 0.10.3
-------------------------------------------------------------------
Tue Jul 29 10:53:22 CEST 2008 - mls@suse.de
- resolve job rules before installing system packages [bnc#411086]
- no more freshens. R.I.P.
- make repo2solv.sh also take repomd.xml in count
- install repomdxml2solv
- add Packager, Build Host, Distribution
- disallow arch/vendor changes even if the package name changes
-------------------------------------------------------------------
Sat Jul 12 02:32:15 CEST 2008 - dmacvicar@suse.de
- infrastructure to save generated and expiration time
stamp in rpm-md repositories (fate #301904)
- 0.10.1
-------------------------------------------------------------------
Wed Jul 9 16:25:36 CEST 2008 - ma@suse.de
- Fix repo_content dependency parsing. Parser may lose up to
two trailing dependencies.
-------------------------------------------------------------------
Tue Jul 1 14:54:38 CEST 2008 - kkaempf@suse.de
- rename language bindings to {perl,python,ruby}-satsolver
to follow naming conventions.
-------------------------------------------------------------------
Mon Jun 30 23:55:20 CEST 2008 - dmacvicar@suse.de
- forward port
- add message tag to updateinfo.xml for displaying
messages in the user interface
- Fix missing self provides for patches (bnc #397132).
- do not reorder binary rules if they are not rpm rules [bnc#397456]
- 0.10.0
-------------------------------------------------------------------
Mon Jun 2 11:47:32 CEST 2008 - coolo@suse.de
- calculate recommendation list also if ignorealreadyrecommended is set,
as some recommendations would be missing otherwise
- make dependency output less confusing (bnc#396309)
- 0.9.0
-------------------------------------------------------------------
Tue May 27 22:34:05 CEST 2008 - coolo@suse.de
- compile with RPM_OPT_FLAGS
-------------------------------------------------------------------
Fri May 23 21:07:01 CEST 2008 - mls@suse.de
- add "zypper" flag
- add "ignorealreadyrecommended" aka "zypper" solver option
-------------------------------------------------------------------
Thu May 22 20:16:22 CEST 2008 - coolo@suse.de
- fixed language support in patterns (bnc#386524)
-------------------------------------------------------------------
Mon May 19 14:53:01 CEST 2008 - dmacvicar@suse.de
- make solvable_look_bool more robust by allowing both
the void or the num == 1 strategy.
-------------------------------------------------------------------
Thu May 15 16:05:50 CEST 2008 - coolo@suse.de
- fix susetags parser
------------------------------------------------------------------
Wed May 14 16:41:26 CEST 2008 - dmacvicar@suse.de
- mls fix of satisfied patterns
- 0.0.33
-------------------------------------------------------------------
Tue May 13 17:14:26 CEST 2008 - dmacvicar@suse.de
- use repodata_set_void for pattern visible attr
-------------------------------------------------------------------
Tue May 13 14:11:30 CEST 2008 - jreidinger@suse.cz
- read description dir path from content file (bnc #389414)
-------------------------------------------------------------------
Tue May 13 12:20:58 CEST 2008 - dmacvicar@suse.de
- a boolean is not a num attribute set to 1, but just a existing void
attribute. (bnc#388818)
-------------------------------------------------------------------
Mon May 12 10:16:20 CEST 2008 - coolo@suse.de
- provide libsatsolver to fix requires of debuginfo
-------------------------------------------------------------------
Sat May 10 15:33:15 CEST 2008 - coolo@suse.de
- resubmit clean tar
-------------------------------------------------------------------
Fri May 9 21:56:43 CEST 2008 - ma@suse.de
- Parse the products LABEL in content file to SUMMARY.
-------------------------------------------------------------------
Fri May 9 20:26:52 CEST 2008 - dmacvicar@suse.de
- recognize 1 as true for reboot suggested and
restart suggested (bnc#388818)
-------------------------------------------------------------------
Fri May 9 16:04:42 CEST 2008 - kkaempf@suse.de
- move 'helix2solv' from satsolver-tools to satsolver-devel package
(bnc#388595)
-------------------------------------------------------------------
Mon May 5 16:24:14 CEST 2008 - coolo@suse.de
- add obsoleteusesprovides and implicitobsoleteusesprovides solver
flags
- speed up solving by not recreating the watch chains every time
some rule is enabled/disabled. To do this, the "disabled" flag
had to be moved from w1 to d.
- fix bug that broke rule disabling when "forceResolve" was true
- fix bug in update rule calculation
- speed up solver a bit by creating a queue holding all assertion
rules, so we do not have to scan all rules for assertions
- parse also DISTPRODUCT and DISTVERSION (for registration), and the other
(often unused) attributes of products.
-------------------------------------------------------------------
Mon Apr 28 19:36:54 CEST 2008 - coolo@suse.de
- (De-)Serialize structured types. Dataiterator and repo_search support
them too, but not yet nested, so that is unsupported for now.
- skipping kinds in matcher when a flag is specified.
- make --force behave a bit more like --noforce
-------------------------------------------------------------------
Fri Apr 25 19:23:51 CEST 2008 - coolo@suse.de
- detect and skip empty lines (bnc#381828)
- fix endless loop
- move debug functions to solverdebug.c
- do not delete negative bitfield entries [bnc#381908]
- add "showinstalledrecommended" option to make the solver
put installed packages on the suggestions/recommendations
queues
- Fix content parsing if PRODUCT isn't the first entry.
- add more statistics
- add two assertions
- add support for susetags filelist
- plug mem join2 leak
- fix anchoring of filelist data
- susetags move files added to provides back into filelist
- ignore packages.FL for now
-------------------------------------------------------------------
Sun Apr 20 18:25:14 CEST 2008 - coolo@suse.de
- fix build
-------------------------------------------------------------------
Sat Apr 19 08:10:51 CEST 2008 - coolo@suse.de
- fix probleminfo if solvable conflicts with itself and has no requires
- Fix parsing dep lines of content files (bnc #380396).
- C++-guard also solver.h
- add support for feature rules
- fix a couple of small bugs
- use new interface
-------------------------------------------------------------------
Wed Apr 16 17:44:20 CEST 2008 - coolo@suse.de
- fix (rare) case of crashing solver
-------------------------------------------------------------------
Tue Apr 15 09:06:36 CEST 2008 - coolo@suse.de
- some fixes around updateinfo parsing
-------------------------------------------------------------------
Wed Apr 9 16:09:36 CEST 2008 - jkupec@suse.cz
- enable regex matching in Dataiterator
-------------------------------------------------------------------
Fri Apr 4 15:45:44 CEST 2008 - coolo@suse.de
- package deptestomatic in -devel
-------------------------------------------------------------------
Mon Mar 31 16:25:03 CEST 2008 - coolo@suse.de
- truly restart when analyze_unsolvable is hit (fixes bnc#368209)
- make it work with really large directories
-------------------------------------------------------------------
Mon Mar 24 15:31:18 CET 2008 - coolo@suse.de
- install rpms2solv
-------------------------------------------------------------------
Mon Mar 17 16:10:22 CET 2008 - matz@suse.de
- Initialize all allocated array members for blocky arrays (when it
matters, e.g. when extending also in blocks - bnc#371137)
-------------------------------------------------------------------
Fri Mar 14 08:37:47 CET 2008 - coolo@suse.de
- fix build on other distris
- fix requires of tools
-------------------------------------------------------------------
Wed Mar 12 11:45:21 CET 2008 - coolo@suse.de
- store datadir for susetags
- fixing assertion in rules learning
-------------------------------------------------------------------
Fri Mar 7 10:51:09 CET 2008 - coolo@suse.de
- several fixes in whatprovides (possibly root cause of bnc#367210)
-------------------------------------------------------------------
Mon Feb 25 12:59:00 CET 2008 - coolo@suse.de
- fixing rpmdb2solv argument handling
-------------------------------------------------------------------
Fri Feb 22 11:09:05 CET 2008 - coolo@suse.de
- support rpmdb2solv -r for chroots
-------------------------------------------------------------------
Thu Feb 21 18:14:41 CET 2008 - coolo@suse.de
- fix susetags parser for so called full trees
-------------------------------------------------------------------
Wed Feb 20 13:23:31 CET 2008 - coolo@suse.de
- no longer link against db43 but against rpmlib
-------------------------------------------------------------------
Tue Feb 19 15:01:55 CET 2008 - coolo@suse.de
- fix requires/obsoletes
-------------------------------------------------------------------
Tue Feb 19 08:10:01 CET 2008 - coolo@suse.de
- mls is back from vacation - several fixes and enhancements
-------------------------------------------------------------------
Fri Feb 15 11:04:09 CET 2008 - coolo@suse.de
- several fixes for the solv files
-------------------------------------------------------------------
Tue Feb 12 18:29:43 CET 2008 - kkaempf@suse.de
- add libappsatsolver, an application layer to ease coding
against sat-solver.
-------------------------------------------------------------------
Tue Feb 12 17:14:04 CET 2008 - coolo@suse.de
- let susetags parse vendors
-------------------------------------------------------------------
Thu Feb 7 18:41:05 CET 2008 - coolo@suse.de
- rename libsatsolver in satsolver-tools
- several updates and fixes
-------------------------------------------------------------------
Fri Feb 1 13:59:53 CET 2008 - coolo@suse.de
- really don't strip
-------------------------------------------------------------------
Mon Jan 14 17:14:03 CET 2008 - coolo@suse.de
- update from SVN:
- various fixes
- less logging
-------------------------------------------------------------------
Tue Jan 8 16:02:26 CET 2008 - coolo@suse.de
- update to SVN again and don't strip
-------------------------------------------------------------------
Sat Dec 22 19:02:57 CET 2007 - coolo@suse.de
- update to SVN so libzypp compiles again
-------------------------------------------------------------------
Fri Nov 30 16:01:39 CET 2007 - schubi@suse.de
- update for libzypp integration
-------------------------------------------------------------------
Fri Nov 16 12:17:13 CET 2007 - coolo@suse.de
- update to SVN again to make libzypp compilable again
-------------------------------------------------------------------
Wed Nov 14 16:10:21 CET 2007 - schubi@suse.de
- further develpment. bugfix, logging, docu,...
-------------------------------------------------------------------
Mon Nov 12 13:44:52 CET 2007 - coolo@suse.de
- update to the latest version from SVN
- compilation fixes
- policy engine
-------------------------------------------------------------------
Thu Nov 8 13:14:20 CET 2007 - coolo@suse.de
- update to the latest version from SVN
-------------------------------------------------------------------
Tue Oct 2 15:26:36 CEST 2007 - kkaempf@suse.de
- Initial release
|