blob: 20c2829f1704c821a9dd87c0cce838c128449e3a (
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
|
%global libname solv
%bcond_without python_bindings
%bcond_without perl_bindings
%bcond_without ruby_bindings
# Creates special prefixed pseudo-packages from appdata metadata
%bcond_without appdata
# Creates special prefixed "group:", "category:" pseudo-packages
%bcond_without comps
%bcond_without conda
# For rich dependencies
%bcond_without complex_deps
%bcond_without helix_repo
%bcond_without suse_repo
%bcond_without debian_repo
%bcond_without arch_repo
# For handling deb + rpm at the same time
%bcond_without multi_semantics
%if %{defined rhel}
%bcond_with zchunk
%else
%bcond_without zchunk
%endif
%bcond_without zstd
%define __cmake_switch(b:) %[%{expand:%%{?with_%{-b*}}} ? "ON" : "OFF"]
Name: lib%{libname}
Version: 0.7.30
Release: 1
Summary: Package dependency solver
License: BSD-3-Clause
URL: https://github.com/openSUSE/libsolv
Source: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: ninja-build
BuildRequires: pkgconfig(rpm)
BuildRequires: zlib-devel
# -DWITH_LIBXML2=ON
BuildRequires: libxml2-devel
# -DENABLE_LZMA_COMPRESSION=ON
BuildRequires: xz-devel
# -DENABLE_BZIP2_COMPRESSION=ON
BuildRequires: bzip2-devel
%if %{with zstd}
# -DENABLE_ZSTD_COMPRESSION=ON
BuildRequires: libzstd-devel
%endif
%if %{with zchunk}
# -DENABLE_ZCHUNK_COMPRESSION=ON
BuildRequires: pkgconfig(zck)
%endif
%description
A free package dependency solver using a satisfiability algorithm. The
library is based on two major, but independent, blocks:
- Using a dictionary approach to store and retrieve package
and dependency information.
- Using satisfiability, a well known and researched topic, for
resolving package dependencies.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: rpm-devel%{?_isa}
%description devel
Development files for %{name}.
%package tools-base
Summary: Utilities used by libzypp to manage .solv files
Requires: %{name}%{?_isa} = %{version}-%{release}
Provides: libsolv-tools:%{_bindir}/repo2solv
Conflicts: libsolv-tools < %{version}
%description tools-base
This subpackage contains utilities used by libzypp to manage solv files.
%package tools
Summary: Package dependency solver tools
Requires: %{name}%{?_isa} = %{version}-%{release}
# repo2solv dependencies. Used as execl()
Requires: libsolv-tools-base = %{version}-%{release}
%description tools
Package dependency solver tools.
%package demo
Summary: Applications demoing the %{name} library
Requires: %{name}%{?_isa} = %{version}-%{release}
# solv dependencies. Used as execlp() and system()
Requires: /usr/bin/curl
Requires: /usr/bin/gpg2
%description demo
Applications demoing the %{name} library.
%if %{with perl_bindings}
%package -n perl-%{libname}
Summary: Perl bindings for the %{name} library
BuildRequires: swig
BuildRequires: perl-devel
BuildRequires: perl-generators
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n perl-%{libname}
Perl bindings for the %{name} library.
%endif
%if %{with ruby_bindings}
%package -n ruby-%{libname}
Summary: Ruby bindings for the %{name} library
BuildRequires: swig
BuildRequires: ruby-devel
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n ruby-%{libname}
Ruby bindings for the %{name} library.
%endif
%if %{with python_bindings}
%package -n python3-%{libname}
Summary: Python bindings for the %{name} library
%{?python_provide:%python_provide python3-%{libname}}
BuildRequires: swig
BuildRequires: python3-devel
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n python3-%{libname}
Python bindings for the %{name} library.
Python 3 version.
%endif
%prep
%autosetup -p1
%build
%cmake . -B"%{_vpath_builddir}" -GNinja \
-DFEDORA=1 \
-DENABLE_RPMDB=ON \
-DENABLE_RPMDB_BYRPMHEADER=ON \
-DENABLE_RPMDB_LIBRPM=ON \
-DENABLE_RPMPKG_LIBRPM=ON \
-DENABLE_RPMMD=ON \
-DENABLE_COMPS=%{__cmake_switch -b comps} \
-DENABLE_APPDATA=%{__cmake_switch -b appdata} \
-DUSE_VENDORDIRS=ON \
-DWITH_LIBXML2=ON \
-DENABLE_LZMA_COMPRESSION=ON \
-DENABLE_BZIP2_COMPRESSION=ON \
-DENABLE_ZSTD_COMPRESSION=%{__cmake_switch -b zstd} \
-DENABLE_ZCHUNK_COMPRESSION=%{__cmake_switch -b zchunk} \
%if %{with zchunk}
-DWITH_SYSTEM_ZCHUNK=ON \
%endif
-DENABLE_HELIXREPO=%{__cmake_switch -b helix_repo} \
-DENABLE_SUSEREPO=%{__cmake_switch -b suse_repo} \
-DENABLE_DEBIAN=%{__cmake_switch -b debian_repo} \
-DENABLE_ARCHREPO=%{__cmake_switch -b arch_repo} \
-DMULTI_SEMANTICS=%{__cmake_switch -b multi_semantics} \
-DENABLE_COMPLEX_DEPS=%{__cmake_switch -b complex_deps} \
-DENABLE_CONDA=%{__cmake_switch -b conda} \
-DENABLE_PERL=%{__cmake_switch -b perl_bindings} \
-DENABLE_RUBY=%{__cmake_switch -b ruby_bindings} \
-DENABLE_PYTHON=%{__cmake_switch -b python_bindings} \
%if %{with python_bindings}
-DPYTHON_EXECUTABLE=%{__python3} \
%endif
%{nil}
%ninja_build -C "%{_vpath_builddir}"
%install
%ninja_install -C "%{_vpath_builddir}"
%check
%ninja_test -C "%{_vpath_builddir}"
# Python smoke test (not tested in %%ctest):
export PYTHONPATH=%{buildroot}%{python3_sitearch}
export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
%__python3 -c 'import solv'
%files
%license LICENSE*
%doc README
%{_libdir}/%{name}.so.*
%{_libdir}/%{name}ext.so.*
%files devel
%{_libdir}/%{name}.so
%{_libdir}/%{name}ext.so
%{_includedir}/%{libname}/
%{_libdir}/pkgconfig/%{name}.pc
%{_libdir}/pkgconfig/%{name}ext.pc
# Own directory because we don't want to depend on cmake
%dir %{_datadir}/cmake/Modules/
%{_datadir}/cmake/Modules/FindLibSolv.cmake
%{_mandir}/man3/%{name}*.3*
# Some small macro to list tools with mans
%global solv_tool() \
%{_bindir}/%{1}\
%{_mandir}/man1/%{1}.1*
%files tools-base
%solv_tool repo2solv
%solv_tool rpmdb2solv
%files tools
%solv_tool deltainfoxml2solv
%solv_tool dumpsolv
%solv_tool installcheck
%solv_tool mergesolv
%solv_tool repomdxml2solv
%solv_tool rpmmd2solv
%solv_tool rpms2solv
%solv_tool testsolv
%solv_tool updateinfoxml2solv
%if %{with comps}
%solv_tool comps2solv
%endif
%if %{with appdata}
%solv_tool appdata2solv
%endif
%if %{with debian_repo}
%solv_tool deb2solv
%endif
%if %{with arch_repo}
%solv_tool archpkgs2solv
%solv_tool archrepo2solv
%endif
%if %{with helix_repo}
%solv_tool helix2solv
%endif
%if %{with suse_repo}
%solv_tool susetags2solv
%endif
%if %{with conda}
%{_bindir}/conda2solv
%endif
%files demo
%solv_tool solv
%if %{with perl_bindings}
%files -n perl-%{libname}
%{perl_vendorarch}/%{libname}.pm
%{perl_vendorarch}/%{libname}.so
%endif
%if %{with ruby_bindings}
%files -n ruby-%{libname}
%{ruby_vendorarchdir}/%{libname}.so
%endif
%if %{with python_bindings}
%files -n python3-%{libname}
%{python3_sitearch}/_%{libname}.so
%{python3_sitearch}/%{libname}.py
%{python3_sitearch}/__pycache__/%{libname}.*
%endif
%changelog
* Thu Aug 01 2024 Evan Goode <mail@evangoo.de> - 0.7.30-1
- Update to 0.7.30
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.29-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Wed Jun 12 2024 Jitka Plesnikova <jplesnik@redhat.com> - 0.7.29-4
- Perl 5.40 rebuild
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 0.7.29-3
- Rebuilt for Python 3.13
* Fri May 31 2024 Petr Písař <ppisar@redhat.com> - 0.7.29-2
- Stricten dependencies between libsolv subpackages
* Mon May 06 2024 Evan Goode <mail@evangoo.de> - 0.7.29-1
- Update to 0.7.29
* Fri Feb 09 2024 Jan Kolarik <jkolarik@redhat.com> - 0.7.28-1
- Update to 0.7.28
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.27-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.27-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Jan 03 2024 Vít Ondruch <vondruch@redhat.com> - 0.7.27-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.3
* Tue Dec 05 2023 Jan Kolarik <jkolarik@redhat.com> - 0.7.27-1
- Update to 0.7.27
* Tue Oct 03 2023 Jan Kolarik <jkolarik@redhat.com> - 0.7.25-1
- Update to 0.7.25
* Mon Aug 28 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 0.7.24-9
- Disable zchunk in RHEL builds
* Fri Jul 21 2023 Neal Gompa <ngompa@fedoraproject.org> - 0.7.24-8
- Backport fix to lower memory usage of updateinfo processing
(rhbz#2214520)
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.24-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 0.7.24-6
- Perl 5.38 rebuild
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 0.7.24-5
- Rebuilt for Python 3.12
* Wed May 17 2023 Jan Kolarik <jkolarik@redhat.com> - 0.7.24-4
- Rebuild for rpm-4.18.90-4
* Tue May 16 2023 Jan Kolarik <jkolarik@redhat.com> - 0.7.24-3
- Rebuild for rpm-4.18.90
* Mon May 15 2023 Igor Raits <igor.raits@gmail.com> - 0.7.24-2
- Upload sources
* Mon May 15 2023 Igor Raits <igor.raits@gmail.com> - 0.7.24-1
- Update to 0.7.24
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.22-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.22-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.7.22-2
- Rebuilt for Python 3.11
* Sun Apr 17 2022 Igor Raits <igor.raits@gmail.com> - 0.7.22-1
- Update to 0.7.22
* Fri Feb 25 2022 Igor Raits <igor.raits@gmail.com> - 0.7.21-1
- Update to 0.7.21
* Thu Jan 27 2022 Vít Ondruch <vondruch@redhat.com> - 0.7.20-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.1
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Oct 01 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.20-1
- Update to 0.7.20
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.19-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Sun Jul 18 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.19-2
- Fix compatibility with Python 3.10
* Sun Jul 18 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.19-1
- Update to 0.7.19
* Wed Jun 16 2021 Orion Poplawski <orion@nwra.com> - 0.7.17-5
- Enable conda support
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.7.17-4
- Rebuilt for Python 3.10
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.17-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sat Jan 23 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.17-2
- Drop unneeded explicit dependency on RPM
* Thu Jan 21 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.17-1
- Update to 0.7.17
* Thu Jan 07 2021 Vít Ondruch <vondruch@redhat.com> - 0.7.15-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
* Mon Nov 16 2020 Miro Hrončok <miro@hroncok.cz> - 0.7.15-2
- Backport upstream fix for Python 3.10 compatibility
* Mon Oct 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.15-1
- Update to 0.7.15
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.14-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jul 03 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-4
- Switch to %%cmake_build/%%cmake_install + Drop Python 2 support
* Sat Jun 13 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-3
- Remove unused patch
* Wed Jun 03 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-2
- Raise lowest compatible RPM version
* Wed May 27 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-1
- Update to 0.7.14
* Tue May 26 2020 Miro Hrončok <miro@hroncok.cz> - 0.7.12-4
- Rebuilt for Python 3.9
* Mon May 25 2020 Colin Walters <walters@verbum.org> - 0.7.12-3
- Apply https://github.com/openSUSE/libsolv/pull/386
* Mon May 25 2020 Miro Hrončok <miro@hroncok.cz> - 0.7.12-2
- Rebuilt for Python 3.9
* Tue Apr 21 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.12-1
- Update to 0.7.12
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jan 23 2020 Neal Gompa <ngompa13@gmail.com> - 0.7.11-1
- Update to 0.7.11
* Tue Dec 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.10-1
- Update to 0.7.10
* Tue Nov 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.8-1
- Update to 0.7.8
* Sat Oct 19 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.7-1
- Update to 0.7.7
* Mon Oct 14 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.7.6-3
- Backport support of POOL_FLAG_WHATPROVIDESWITHDISABLED
* Thu Oct 03 2019 Miro Hrončok <miro@hroncok.cz> - 0.7.6-2
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Fri Aug 30 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.6-1
- Update to 0.7.6
* Sun Aug 18 2019 Miro Hrončok <miro@hroncok.cz> - 0.7.5-5
- Rebuilt for Python 3.8
* Sun Aug 04 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-4
- Fix queries with src.rpm with DynamicBuildRequires
* Sun Aug 04 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-3
- Drop obsolete conditionals
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Wed Jun 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-1
- Update to 0.7.5
* Mon Jun 10 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-7
- Rebuild for RPM 4.15
* Mon Jun 10 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-6
- Rebuild for RPM 4.15
* Tue May 21 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.7.4-5
- Fixed build for SWIG 4.0.0 (#1707367)
* Tue Apr 02 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-4
- Backport patch to fix solver_solve() running multiple times with
SOLVER_FAVOR
* Mon Apr 01 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-3
- Revert "Change time stamp to compatible format"
* Mon Apr 01 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.7.4-2
- Change time stamp to compatible format
* Fri Mar 29 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-1
- Update to 0.7.4
* Tue Feb 26 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.3-6
- Backport: Add support for modular updateinfo.xml data
* Wed Feb 13 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.3-5
- bindings: Add best_solvables/whatmatchessolvable
* Wed Feb 13 2019 Marek Blaha <mblaha@redhat.com> - 0.7.3-4
- Conditionalize %%ldconfig_scriptlets for plain RHEL
* Wed Feb 13 2019 Marek Blaha <mblaha@redhat.com> - 0.7.3-3
- Disable zstd on RHEL
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 30 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.3-1
- Update to 0.7.3
* Tue Jan 15 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.7.2-4
- Backport patch from upstream
* Sat Jan 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-3
- remove leftovers from commit
* Sat Jan 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-2
- Fix small security issues
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-1
- Update to 0.7.2
* Fri Nov 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-3
- Backport fixes for autouninstall
* Wed Nov 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-2
- remove SCM leftovers
* Wed Oct 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-1
- Update to 0.7.1
* Sun Oct 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.0-1
- Update to 0.7.0
* Mon Oct 01 2018 Jaroslav Rohel <jrohel@redhat.com> - 0.6.35-4
- Bacport patch: Make sure that targeted updates don't do reinstalls
* Mon Oct 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-3
- disable python2 subpackage
* Thu Aug 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-2
- commit sources
* Thu Aug 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-1
- Update to 0.6.35
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.34-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Mon Jul 02 2018 Miro Hrončok <miro@hroncok.cz> - 0.6.34-5
- Rebuilt for Python 3.7
* Mon Jul 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-4
- Rebuilt for Python 3.7
* Thu Jun 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-3
- Backport few fixes and enhancements from upstream
* Tue Jun 19 2018 Miro Hrončok <miro@hroncok.cz> - 0.6.34-2
- Rebuilt for Python 3.7
* Mon Mar 26 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-1
- Update to 0.6.34
* Wed Feb 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.33-1
- Update to 0.6.33
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.32-1
- Update to 0.6.32
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.31-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.31-1
- Update to 0.6.31
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-10
- Use librpm to access rpm headers
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-9
- Use librpm to access DB
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-8
- Switch to %%ldconfig_scriptlets
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-7
- Disable librpm from accessing DB
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-6
- Allow disabling python2 bindings
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-5
- Switch to ninja-build
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-4
- Update to latest git version
* Mon Nov 20 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3
- Update to latest snapshot
* Mon Nov 06 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.30-2
- Better error message on DB_VERSION_MISMATCH errors
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-1
- Update to 0.6.30
* Tue Sep 19 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.29-2
- Band-aid for DB_VERSION_MISMATCH errors on glibc updates
* Thu Sep 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.29-1
- Update to 0.6.29
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-8
- Rebuilt after RPM update (№ 3)
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-7
- Rebuilt for RPM soname bump
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-6
- Rebuilt for RPM soname bump
* Thu Aug 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-5
- Add support for REL_WITHOUT
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-4
- Rebuilt for
https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Jul 21 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-2
- Backport patch for fixing yumobs
* Sat Jul 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-1
- Update to 0.6.28
* Mon May 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-3
- Backport few fixes for bindings
* Thu May 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-2
- don't set PYTHON3_EXECUTABLE
* Thu May 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-1
- Update to 0.6.27
* Mon Mar 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-9
- Update to latest snapshot
* Mon Mar 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-8
- update to latest snapshot
* Sat Mar 18 2017 Neal Gompa <ngompa13@gmail.com> - 0.6.26-7
- Enable AppData support (#1427171)
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-6
- D'oh, finally
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-5
- make it build on RPM less than 4.14
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-4
- remove unused patch
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-3
- Update to latest git; Switch to libxml2
* Mon Mar 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-2
- Use %%{__python3} as PYTHON3_EXECUTABLE
* Wed Feb 15 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-1
- Update to 0.6.26
* Tue Feb 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.25-2
- don't pollute spec with useless macro
* Tue Feb 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.25-1
- Update to 0.6.25
* Fri Jan 13 2017 Vít Ondruch <vondruch@redhat.com> - 0.6.24-5
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.6.24-4
- Rebuild for Python 3.6
* Fri Dec 09 2016 Orion Poplawski <orion@cora.nwra.com> - 0.6.24-3
- Use upstream python build options
* Fri Nov 11 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.24-2
- remove unused patch
* Thu Nov 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.24-1
- Update to 0.6.24
* Mon Oct 31 2016 Denis Ollier <larchunix@gmail.com> - 0.6.23-6
- Typo fixes in spec: s/MULTI_SYMANTICS/MULTI_SEMANTICS/
* Tue Sep 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-5
- Trivial fixes in spec
* Sat Sep 03 2016 Neal Gompa <ngompa13@gmail.com> - 0.6.23-4
- Enable suserepo on Fedora to enable making openSUSE containers with
Zypper
* Fri Aug 12 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.23-3
- enable helixrepo on Fedora
* Wed Aug 03 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-2
- Backport patch to fix dnf --debugsolver crash (RHBZ #1361831)
* Wed Jul 27 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-1
- Update to 0.6.23
* Wed Jul 20 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-5
- fix typo
* Wed Jul 20 2016 Igor Gnatenko <ignatenko@redhat.com>
- Backport couple of patches from upstream
* Tue Jul 19 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.22-3
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_
Packages
* Fri Jun 24 2016 Petr Písař <ppisar@redhat.com> - 0.6.22-2
- Mandatory Perl build-requires added
<https://fedoraproject.org/wiki/Changes/Build_Root_Without_Perl>
* Tue Jun 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-1
- Update to 0.6.22
* Mon Jun 06 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-3
- Enable deb/arch support for non-rhel distros
* Mon May 30 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-2
- Modify enabled/disabled features
* Wed May 18 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-1
- Update to 0.6.21
* Tue May 17 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-2
- backport some bugfixes (RHBZ #1318662, RHBZ #1325471)
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-1
- Update to 0.6.20
* Tue Apr 05 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.19-3
- re-organize spec file
* Tue Mar 08 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.19-2
- Apply 9 patches from upstream
* Sat Feb 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.19-1
- Update to 0.6.19
* Tue Feb 02 2016 Peter Robinson <pbrobinson@gmail.com> - 0.6.15-6
- Explicitly add rubypick and ruubygems build dependencies
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 0.6.15-5
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
* Sun Jan 10 2016 Dan Horák <dan@danny.cz> - 0.6.15-4
- fix build on non-Fedora with python3
* Tue Jan 05 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.15-3
- Fix bzip2 support for python3 build (RhBug:1293652)
* Fri Dec 18 2015 Michal Luscon <mluscon@redhat.com> - 0.6.15-2
- Revert reworked multiversion orphaned handling
* Thu Dec 17 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.15-1
- Update to 0.6.15
* Thu Dec 10 2015 Jaroslav Mracek <jmracek@redhat.com> - 0.6.14-8
- Enable bzip2 support
* Thu Nov 26 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-7
- revert obsolete, as %%python_provide does it (undocumented)
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-6
- adjust obsolete for stupid packaging
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-5
- python2-solv obsoletes python-solv (#1263230)
* Tue Nov 10 2015 Peter Robinson <pbrobinson@fedoraproject.org> - 0.6.14-4
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
* Wed Oct 14 2015 Michal Luscon <mluscon@redhat.com> - 0.6.14-3
- Backport upstream patches
* Mon Oct 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.14-2
- fix examples in docs
* Mon Oct 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.14-1
- Update to 0.6.14; Backport patches from upstream
* Thu Sep 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.12-2
- include pkgconfig file to devel subpkg
* Thu Sep 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.12-1
- Update to 0.6.12
* Thu Aug 06 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.11-11
- drop unused patch
* Wed Aug 05 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.11-10
- really upload sources + spec cleanup from patch
* Wed Aug 05 2015 Colin Walters <walters@verbum.org> - 0.6.11-9
- Drop all bindings on EL7, as well as arch/deb solv support
* Wed Aug 05 2015 Colin Walters <walters@verbum.org> - 0.6.11-8
- Use make and not make_build macro, as it's not in EL7
* Wed Aug 05 2015 Colin Walters <walters@verbum.org> - 0.6.11-7
- Add missing leading 0 in conditional
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-6
- uploaded new source for 1f9abfb
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-5
- uploaded new source for 1f9abfb
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-4
- uploaded new source for 1f9abfb
* Wed Aug 05 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.11-3
- New version: 1f9abfb
* Tue Aug 04 2015 Adam Williamson <awilliam@redhat.com> - 0.6.11-2
- bindings require the exact matching version of the lib (#1243737)
* Mon Jun 22 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-1
- New version: 2db517f
* Wed Jun 17 2015 Dennis Gilmore <dennis@ausil.us> - 0.6.10-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Fri Mar 27 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-4
- New version: 99edb54
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-3
- new tar
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-2
- added source
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-1
- New version: 0.6.10
* Fri Mar 06 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-8
- building python2-solv subpkg finally
* Mon Mar 02 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-7
- fixed source
* Mon Mar 02 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-6
- adds python3 requirement
* Thu Feb 26 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-5
- tmp
* Tue Feb 24 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-4
- generating python3-solv subpackage
* Tue Feb 24 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-3
- rebase to 78c8a55
* Mon Jan 19 2015 Vít Ondruch <vondruch@redhat.com> - 0.6.8-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.2
* Fri Jan 16 2015 Richard Hughes <richard@hughsie.com> - 0.6.8-1
- Update to latest upstream release to fix a crash in PackageKit
* Sun Aug 17 2014 Peter Robinson <pbrobinson@fedoraproject.org> - 0.6.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Mon Aug 11 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-4
- rebase to 12af31a
* Mon Jul 28 2014 Ales Kozumplik <ales@redhat.com> - 0.6.4-3
- rebase to 5bd9589
* Mon Jul 14 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-2
- changed gitrev for 2a5c1c4 rebase
* Mon Jul 14 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-1
- rebase to 3a5c1c4
* Sat Jun 07 2014 Dennis Gilmore <dennis@ausil.us> - 0.6.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Tue May 27 2014 Ales Kozumplik <ales@redhat.com> - 0.6.1-2
- rebase to 6d968f1
* Fri Apr 25 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.1-1
- rebase to f78f5de
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 0.6.0-4
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
* Wed Apr 09 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-3
- file compressed is called only libsolv
* Wed Apr 09 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-2
- added right tarball extension
* Wed Apr 09 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-1
- rebase to 05baf54
* Thu Jan 23 2014 Ales Kozumplik <ales@redhat.com> - 0.4.1-2
- rebase
* Mon Dec 16 2013 Ales Kozumplik <ales@redhat.com> - 0.4.1-1
- rebase to a8e47f1
* Fri Nov 22 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.4.0-2
- Rebase to 0.4.0, upstream commit 4442b7f.
- support DELTA_LOCATION_BASE for completeness
* Tue Oct 29 2013 Ales Kozumplik <ales@redhat.com> - 0.4.0-1
- rebase to d49d319.
* Sat Aug 03 2013 Petr Písař <ppisar@redhat.com> - 0.3.0-12
- Perl 5.18 rebuild
* Wed Jul 31 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-11
- Rebase to upstream a59d11d
* Mon Jul 22 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-10
- missing requires
* Mon Jul 22 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-9
- forgot to bump the release.
* Fri Jul 19 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-8
- add build flags.
* Wed Jul 17 2013 Petr Písař <ppisar@redhat.com> - 0.3.0-7
- Perl 5.18 rebuild
* Mon Jun 24 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-6
- rebased to upstream 228d412
* Thu Jun 20 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-5
- fix: bogus date in changelog
* Thu Jun 20 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-4
- rebase to upstream 209e9cb
* Thu May 16 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-3
- run make test
* Thu May 16 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-2
- rebase to 7399ad1.
* Mon Apr 08 2013 Ales Kozumplik <ales@redhat.com> - 0.3.0-1
- rebase to upstream e372b78
* Thu Feb 14 2013 Dennis Gilmore <dennis@ausil.us> - 0.2.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Fri Dec 21 2012 Ales Kozumplik <ales@redhat.com> - 0.2.3-2
- Add missing sources.
* Fri Dec 21 2012 Ales Kozumplik <ales@redhat.com> - 0.2.3-1
- wip
* Thu Aug 23 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-15
- Rebase to 6c9d3eb.
* Mon Jul 23 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-14
- Fix Perl build.
* Mon Jul 23 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-13
- Rebuild.
* Thu Jul 19 2012 Dennis Gilmore <dennis@ausil.us> - 0.0.0-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Mon Jul 16 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-11
- preliminary fix for JOB resons in solver_describe_decision().
* Sun Jul 01 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-10
- rebuild
* Thu Jun 07 2012 Ales Kozumplik <ales@redhat.com> - 0.0.0-9
- Rebase to the latest upstream.
* Fri May 18 2012 Ales Kozumplik <akozumpl@redhat.com>
- Rebase to upstream 8cf7650.
* Thu Apr 12 2012 Ales Kozumplik <akozumpl@redhat.com> - 0.0.0-7
- rebase to af1465a2.
* Thu Apr 05 2012 Karel Klic <kklic@redhat.com> - 0.0.0-6
- rebuild
* Mon Apr 02 2012 Karel Klic <kklic@redhat.com> - 0.0.0-5
- rebuild
* Wed Mar 21 2012 Ales Kozumplik <akozumpl@redhat.com> - 0.0.0-4
- the previous build had a wrong relase number in spec.
* Wed Mar 21 2012 Ales Kozumplik <akozumpl@redhat.com> - 0.0.0-3
- Update to upstream libsolv HEAD 857fe28.
* Tue Feb 07 2012 Karel Klic <kklic@redhat.com> - 0.0.0-2
- Adapted to Ruby 1.9.3
* Mon Feb 06 2012 Karel Klic <kklic@redhat.com> - 0.0.0-1
- Initial commit
## END: Generated by rpmautospec
|