-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
6331 lines (3868 loc) · 194 KB
/
ChangeLog
File metadata and controls
6331 lines (3868 loc) · 194 KB
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
2011-08-10 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.31
2011-08-10 Tim Lauridsen <timlau@fedoraproject.org>
* ChangeLog: updated ChangeLog
2011-08-10 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.31
2011-08-03 Shawn Starr <shawn.starr@rogers.com>
* docs/yum-utils.1: Update yum-utils man page, to add new utils.
2011-07-25 James Antill <james@and.org>
Merge branch 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils * 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils: (3 commits)
typo leaving .conf in ybc.conf.yumvar should just be ybc.yumvar
...
2011-07-25 James Antill <james@and.org>
* plugins/aliases/aliases: Add some new aliases, fix chkD.
2011-07-25 Seth Vidal <skvidal@fedoraproject.org>
* yum-config-manager.py: typo leaving .conf in ybc.conf.yumvar
should just be ybc.yumvar
2011-07-12 James Antill <james@and.org>
* plugins/security/security.py: Also auto-apply --security when
given --sec-severity for other commands.
2011-07-08 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add repoquery @group completion.
2011-07-08 Ville Skyttä <ville.skytta@iki.fi>
* repoquery.py: Fix "nitmes" typo in previous commit.
2011-07-06 James Antill <james@and.org>
* repoquery.py: Fix typo
2011-06-29 James Antill <james@and.org>
* repoquery.py: Allow @foo groups as a packages selector in
repoquery.
2011-06-25 Ville Skyttä <ville.skytta@iki.fi>
* plugins/aliases/aliases.py, plugins/security/security.py,
plugins/versionlock/versionlock.py: Remove some unused local
variables and imports flagged by pyflakes.
2011-06-24 Ville Skyttä <ville.skytta@iki.fi>
* debuginfo-install.py, package-cleanup.py, yum-builddep.py,
yum-complete-transaction.py: Check doUtilBuildTransaction return
value, exit early on failure. BZ 716267
2011-06-22 James Antill <james@and.org>
* plugins/security/security.py: Try to be clever when sorting the
security severities.
2011-06-17 Raman Gupta <raman@rocketraman.com>
* plugins/merge-conf/merge-conf.py: After (external) merge is
complete, give user option to delete other file
2011-06-17 Raman Gupta <raman@rocketraman.com>
* plugins/merge-conf/merge-conf.py: Support meld as well as vimdiff
for merging When using meld, the left side has the "other file"
i.e. the file with the .rpmnew or .rpmsave extension. The right side
has the "final file" i.e. the target file into which changes have to
be merged. If the rpm action was to save the existing conf file,
then the left side will be the original conf file (.rpmsave) and the
right side will be the new rpm-based configuration. The user should
merge any changes they want to keep from their old .rpmsave from
left to right. If the rpm action was to keep the existing conf
file, then the left side will be the new conf file (.rpmnew) and
right side will be the current local configuration. The user should
merge any changes in the new rpm file into their local config from
left to right. Ideally these operations would be 3-way diffs
between the local file and the new rpm config, using the original
rpm config as the common merge base. However, the original rpm
config is not available to yum and therefore a 3-way diff is not
possible. Perhaps a future enhancement would be to use a .orig file,
if present, as the merge base for meld. When using vimdiff, the
order has not changed. The first parameter to vimdiff is the "final:
file i.e. the target file, and the second parameter is the "other"
file i.e. the .rpmnew or .rpmsave file.
2011-06-10 James Antill <james@and.org>
* repodiff.py: Huge speedup for large number of add/remove obsoletes
processing.
2011-06-09 Nick Jacek <njacek@redhat.com>
* yumdownloader.py: Stops yumdownloader from attempting to download
the same package twice if it is available in multiple repos. BZ
711767
2011-06-10 James Antill <james@and.org>
* docs/repodiff.1, repodiff.py: Add --compare-arch for the other
side of the multilib. diff. BZ 710579.
2011-06-09 Nick Jacek <njacek@redhat.com>
* repodiff.py: Changed archlist set up to handle multilib. BZ 710579
2011-06-01 James Antill <james@and.org>
* docs/repoquery.1: Add releasever and setopt docs. from yum to
repoquery. BZ 638542.
2011-05-20 Seth Vidal <skvidal@fedoraproject.org>
* yum-utils.spec: frelling pyyaml pkg named with weird case
2011-05-20 Seth Vidal <skvidal@fedoraproject.org>
* plugins/puppetverify/puppetverify.conf,
plugins/puppetverify/puppetverify.py, yum-utils.spec: add
puppetverify plugin
2011-05-18 Frank Weltersbach <frankwe@live.com>
* docs/package-cleanup.1: Fix typo in package-cleanup man page. BZ
705617.
2011-05-17 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: - fix rh bug: #705179 - fix fmt_queryformat not being happy
with new 'output' formats passed everywhere else.
2011-04-26 James Antill <james@and.org>
* yumdownloader.py: Allow files/provides to be used in
yumdownloader.
2011-04-26 James Antill <james@and.org>
* yumdownloader.py: Exit with code 2, if we can't download the
packages asked for. BZ 699469.
2011-04-26 James Antill <james@and.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: try/except
the open, for the rpmdbv cached data (a-u-d plugin).
2011-04-24 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add yum-debug-dump completion.
2011-04-24 Ville Skyttä <ville.skytta@iki.fi>
* yum-debug-dump.py: Mention filename arg in yum-debug-dump usage
message.
2011-04-24 Ville Skyttä <ville.skytta@iki.fi>
* yum-debug-dump.py: Make yum-debug-dump.py executable for running
in-place.
2011-04-24 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Use functions from recent bash-completion if
available.
2011-04-06 James Antill <james@and.org>
* repoquery.py, yum-groups-manager.py: Convert
repoquery/yum-groups-manager to use preconf only. BZ 694188.
2011-04-06 James Antill <james@and.org>
* package-cleanup.py: For leaf-regexp don't match libreoffice, and
match *-data package.
2011-03-30 James Antill <james@and.org>
* yum-builddep.py: Also obey .conf.gpgcheck in builddep.
2011-03-30 James Antill <james@and.org>
* yum-builddep.py: Obey .conf.localpkg_gpgcheck in builddep.
2011-03-30 James Antill <james@and.org>
* docs/Makefile, docs/show-changed-rco.1, show-changed-rco.py,
yum-utils.spec: Add COPYRIGHT info. and docs for show-changed-rco.
2011-03-29 Seth Vidal <skvidal@fedoraproject.org>
* needs-restarting.py: clean up the nulls from the delimiters in
proc
2011-03-28 James Antill <james@and.org>
* show-changed-rco.py: Added --ignore-arch and --skip-new to
show-changed-rco.
2011-03-15 James Antill <james@and.org>
* Makefile, yum-utils.spec: Add show-changed-rco to the install.
2011-03-15 James Antill <james@and.org>
* show-changed-rco.py: Show how a new package version changes in
requires/conflicts/obsoletes.
2011-03-15 James Antill <james@and.org>
* plugins/fs-snapshot/fs-snapshot.py: Add import yum.misc, and fix
kernel_inst typos. BZ 669178.
2011-03-10 James Antill <james@and.org>
* yum-config-manager.py: Port the interpreted sections code from yum's writeRawRepoFile().
Also do the same thing for interpreted values, like baseurl.
2011-03-10 Pierre-Yves Chibon <py@chibon.fr>
* docs/repoquery.1, repoquery.py: Fix bug in repoquery (Dot =>
DotPlot) and update repoquery man page.
2011-03-02 James Antill <james@and.org>
* docs/yumdownloader.1: Add --archlist to yumdownload man page.
2011-03-02 James Antill <james@and.org>
* plugins/fs-snapshot/fs-snapshot.py: Fix YumPluginExit =>
PluginYumExit typo.
2011-03-01 Panu Matilainen <pmatilai@redhat.com>
* plugins/changelog/changelog.py: Avoid unnecessary po header access
in changelog plugin Accessing the hdr member of package objects
makes yum to keep the entire header in memory forever after, causing
huge memory bloat when we're jumping through hoops to conserve
memory.
2011-02-28 James Antill <james@and.org>
* plugins/local/local.conf, plugins/local/local.py: Change deltas to
enable_deltas and num-deltas to deltas.
2011-02-26 Alexander Todorov <atodorov@otb.bg>
* plugins/local/local.conf: document newly added config options and
the repodir option
2011-02-26 Alexander Todorov <atodorov@otb.bg>
* plugins/local/local.py: add option to enable/disable createrepo if
desired
2011-02-26 Alexander Todorov <atodorov@otb.bg>
* plugins/local/local.py: enable delta rpms in the local repository
2011-02-25 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Update repoquery completion with current options.
2011-02-25 Ville Skyttä <ville.skytta@iki.fi>
* repoquery.py: Fix --level text in repoquery --help.
2011-02-22 Ville Skyttä <ville.skytta@iki.fi>
* docs/show-installed.1, show-installed.py: Fix "rpm -qa" example
formatting for show-installed -i in --help output and man page.
2011-02-16 Tim Lauridsen <timlau@fedoraproject.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: Fix
auto-update-debuginfo plugin to not break if the is and option
object but no repos option (yumex)
2011-02-04 James Antill <james@and.org>
* yumutils/i18n.py: Have to put the function definitions before the
assignments, BZ 674584
2011-01-25 James Antill <james@and.org>
* plugins/fs-snapshot/fs-snapshot.py: Hard failure when fs-snapshot can't create a snapshot. BZ 669178.
Also, only show the kernel /boot warning when a kernel is within
the transaction.
2011-01-15 Pierre-Yves <pingou@pingoured.fr>
* repoquery.py: Update arguments - Remove --show-dupes from --help
(while the argument still works) - Remove --tree-* from --help
(while the argument still works) - Implement the
--output[text|ascii-tree|dot-tree] (default to 'text') argument -
Implement the --level[all|any int] (default to 'all') argument The
combination of --requires --output=ascii-tree --level=all reproduce
the behavior of --tree-requires same goes for: --whatrequires
--output=ascii-tree vs --tree-whatrequires --obsoletes
--output=ascii-tree vs --tree-obsoletes --conflicts
--output=ascii-tree vs --tree-conflicts Use the propagation of the
dot object to determine if it is a tree or a dot tree
2011-01-21 Seth Vidal <skvidal@fedoraproject.org>
* repoclosure.py: make sure resolve_sack is empty and exists - if we
get a wacky, but caught error from whatProvides we don't want to
inadvertently give it back old/invalid results and/or traceback b/c
the variable doesn't exist
2011-01-13 Tim Lauridsen <timlau@fedoraproject.org>
* ChangeLog: updated ChangeLog
2011-01-13 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.30
2011-01-10 Seth Vidal <skvidal@fedoraproject.org>
* plugins/verify/verify.py: when we run verify make sure we call the
verify_plugins_callback so we can pick up any verify modification
plugins in our output
2011-01-03 Tim Lauridsen <timlau@fedoraproject.org>
* Makefile, plugins/aliases/aliases.py, yum-utils.spec,
yumutils/Makefile, yumutils/__init__.py, yumutils/i18n.py: Added
yumutils python module with i18n handling code
2010-12-30 Tim Lauridsen <timlau@fedoraproject.org>
* Makefile, plugins/aliases/aliases.py, po/Makefile,
po/POTFILES.in, po/da.po, po/yum-utils.pot, yum-utils.spec: Added
translation support to yum-utils Added working translation to
yum-plugin-aliases
2010-12-20 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Simplify various completions by just invoking
yum's functions ignoring stderr.
2010-12-20 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add debuginfo-install completion.
2010-12-20 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Use yum's base option completion in
package-cleanup and yum-builddep if available.
2010-12-10 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: add sourcerpm to default output of repoquery -i rh
bug: https://bugzilla.redhat.com/show_bug.cgi?id=661827
2010-12-10 James Antill <james@and.org>
* repoquery.py: Don't set basearch if it's src, because that's not
valid (esp. for MM etc.)
2010-12-08 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add basic yum-builddep completion (no support for
options yet).
2010-12-03 James Antill <james@and.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: Obey
manual --disablerepo in auto-up-di plugin.
2010-11-24 Panu Matilainen <pmatilai@redhat.com>
* yum-builddep.py: Teach yum-builddep to install buildrequires
parsed directly from spec - Split the actual install part out of
get_build_deps() to avoid code duplication - If rpm-python
supports it, accept spec files as arguments and grab buildrequires
directly out of the parsed spec
2010-11-24 James Antill <james@and.org>
* plugins/fastestmirror/fastestmirror.py: Don't crash when we can't
unlink the hostfilepath. BZ 650468.
2010-11-16 James Antill <james@and.org>
* docs/yum-versionlock.1, docs/yum-versionlock.conf.5,
plugins/versionlock/versionlock.py: Add excludes functionality to
versionlock. Document command.
2010-11-12 James Antill <james@and.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: Add rpmdb
caching to a-u-di.
2010-11-12 James Antill <james@and.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: Be less
verbose in a-u-di.
2010-11-09 Seth Vidal <skvidal@fedoraproject.org>
* plugins/priorities/priorities.py: add global check_obsoletes for
exclude hook. closes rh bug#651598
2010-11-07 Tim Lauridsen <timlau@fedoraproject.org>
* ChangeLog: updated ChangeLog
2010-11-07 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.29
2010-11-07 Tim Lauridsen <timlau@fedoraproject.org>
* Makefile: Make a better test-release Makefile target
2010-11-07 Tim Lauridsen <timlau@fedoraproject.org>
* test/yum-utils-pylintrc: fix config file format changes for pylint
in F14
2010-11-04 James Antill <james@and.org>
* plugins/security/security.py: Add --sec-severity, and deal with
severity data in updateinfo.
2010-11-04 James Antill <james@and.org>
* plugins/aliases/aliases: Some more aliases.
2010-11-01 James Antill <james@and.org>
* repoquery.py: Use arch as well as name in fmt_requires.
2010-10-26 Seth Vidal <skvidal@fedoraproject.org>
* yum-utils.spec: add 3.2.29 requirement for repoquery --search
2010-10-26 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: - fix repoquery for the bizarre empty results and the traceback on
bad input - also needs a fix for yum 3.2.29 in the searchGenerator
:(
2010-10-26 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: add --search and --searchfields to repoquery
2010-10-06 Florian Festi <ffesti@redhat.com>
* Makefile, docs/show-installed.1, docs/yum-utils.1,
repoclosure.py, show-installed.py, yum-utils.spec: show-installed, a
new tool to give a compat description of the packages installed on
the system making use of dependencies and comps groups
2010-10-26 James Antill <james@and.org>
* docs/yumdb.8, yumdb.py: Add yumdb copy-force, for symmetry with
rename-force.
2010-10-26 James Antill <james@and.org>
* yumdb.py: Cleanup yumdb rename/rename-force, and make the
difference more obvious.
2010-10-26 James Antill <james@and.org>
* docs/yumdb.8, yumdb.py: Add a yumdb sync command, for failed
transactions.
2010-10-26 James Antill <james@and.org>
* repodiff.py: Disable any excludes in repodiff.
2010-10-13 James Antill <james@and.org>
* plugins/priorities/priorities.py: Only display priorities message,
if we did something.
2010-10-13 James Antill <james@and.org>
* plugins/priorities/priorities.py: Speedup priorities: Reuse
rawobsoletes.
2010-10-13 Seth Vidal <skvidal@fedoraproject.org>
* plugins/auto-update-debuginfo/auto-update-debuginfo.py: make all
debuginfo repos enabled by auto-update-debuginfo be set to
skip_if_unavailable=True Also change some variable names so I don't
go blind when reading this code trying to figure out if 'repos' is
the repos object or something else.
2010-10-11 James Antill <james@and.org>
* yum-debug-dump.py: Fix the filename argument handling in
yum-debug-dump, BZ 641837
2010-10-05 James Antill <james@and.org>
* plugins/tmprepo/tmprepo.py: Obey --nogpgcheck in --tmprepo repos.
Use pkgs_gpgcheck/etc. for defaults.
2010-10-04 James Antill <james@and.org>
* repoquery.py: Fix unicide in repoquery --installed -a --changelog.
2010-10-04 Seth Vidal <skvidal@fedoraproject.org>
* plugins/changelog/changelog.py: to_unicode() on the changelog
output as per ticket 610 - thanks to Richard Fearn for the
suggestion
2010-10-04 James Antill <james@and.org>
* plugins/tmprepo/tmprepo.conf: Fix the text in the config. file for
the tmprepo plugin.
2010-09-20 Casey Jao <cjao@ugcs.caltech.edu>
* plugins/remove-with-leaves/remove-with-leaves.py:
Remove-with-leaves plugin: check install reason
2010-09-13 James Antill <james@and.org>
* docs/debuginfo-install.1, docs/yum-list-data.1: Fix typos in man
page, "pacakges" => packages. BZ 632857
2010-09-10 James Antill <james@and.org>
* repoquery.py: Make --groupmember have sorted output.
2010-09-09 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: when --groupmember is specified output the groups
per pkg not just as one lump intermixed pkgname @groupname
@groupname2 pkgname2 @groupname @groupname3 etc
2010-08-26 Seth Vidal <skvidal@fedoraproject.org>
* plugins/tsflags/tsflags.py: stop using setConfigOption in tsflags
plugin
2010-08-19 James Antill <james@and.org>
* docs/yum-security.8: Update the docs. for "yum-security".
2010-08-19 James Antill <james@and.org>
* plugins/security/security.py: Use .text() for notices, to drop
files output by default.
2010-08-10 Seth Vidal <skvidal@fedoraproject.org>
Merge branch 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils * 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils: Don't
display 0: for epoch, on installed kernels security warning Choose
the sub-command more intelligently, depending on the args. (or lack)
Display multiple certs, on newer yums ... almost certainly not
though
2010-08-10 Seth Vidal <skvidal@fedoraproject.org>
* repoclosure.py: fix the url-based repofrompaths with repoclosure
from having the wrong prefix prepended to them closes rh bug 622710
2010-08-09 James Antill <james@and.org>
* plugins/security/security.py: Don't display 0: for epoch, on
installed kernels security warning
2010-08-09 James Antill <james@and.org>
* plugins/security/security.py: Choose the sub-command more
intelligently, depending on the args. (or lack)
2010-08-09 James Antill <james@and.org>
* plugins/keys/keys.py: Display multiple certs, on newer yums ...
almost certainly not though
2010-08-05 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: catch repoErrors when we go to matchPkgs since
that's where they end up getting setup. partial fix for rh bug
#621639
2010-08-04 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add repoquery --lookaside bash completion.
2010-08-04 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add repoquery --tree-* bash completions.
2010-08-04 Ville Skyttä <ville.skytta@iki.fi>
* repoquery.py: --tree-whatrequires help string typo fix.
2010-08-04 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Add bash completion for repodiff.
2010-08-03 Seth Vidal <skvidal@fedoraproject.org>
* yum-utils.spec: add copying to each plugin for fedora policies
2010-08-03 Dennis Gregorovic <dgregor@redhat.com>
* repoclosure.py: add --lookaside switch for depsolving against a
repo without depsolving the repo itself
2010-08-03 Tim Lauridsen <timlau@fedoraproject.org>
* ChangeLog: updated ChangeLog
2010-08-03 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.28
2010-08-03 James Antill <james@and.org>
* repoquery.py: Fix pylint warnings (all false positives, I think).
2010-08-03 Tim Lauridsen <timlau@fedoraproject.org>
* repoquery.py: fix pylint errors ************* Module repoquery
W0211:283:pkgQuery._tree_print_req: Static method with 'self' as
first argument W0601:325:pkgQuery._fmt_tree_prov: Global variable
'__req2pkgs' undefined at the module level
W0601:430:pkgQuery.fmt_tree_what_requires: Global variable
'__prov2pkgs' undefined at the module level
E0602:399:pkgQuery.fmt_tree_obsoletes.obs2pkgs: Undefined variable
'obbs' E1120:364:pkgQuery._fmt_tree_prov: No value passed for
parameter 'level' in function call
E1120:373:pkgQuery._fmt_tree_prov: No value passed for parameter
'level' in function call E1120:463:pkgQuery.fmt_tree_what_requires:
No value passed for parameter 'level' in function call
E1120:476:pkgQuery.fmt_tree_what_requires: No value passed for
parameter 'level' in function call
E1120:413:pkgQuery.fmt_tree_obsoletes: No value passed for parameter
'level' in function call E1120:420:pkgQuery.fmt_tree_obsoletes: No
value passed for parameter 'level' in function call
2010-08-03 Tim Lauridsen <timlau@fedoraproject.org>
* plugins/ps/ps.py, plugins/security/security.py: fix pylint erros
************* Module ps W0311: 45: Bad indentation. Found 8 spaces,
expected 4 W0311: 47: Bad indentation. Found 8 spaces, expected 4
W0311: 48: Bad indentation. Found 8 spaces, expected 4 W0311: 49:
Bad indentation. Found 12 spaces, expected 8 W0311: 50: Bad
indentation. Found 16 spaces, expected 12 W0311: 51: Bad
indentation. Found 20 spaces, expected 16 W0311: 52: Bad
indentation. Found 24 spaces, expected 20 W0311: 53: Bad
indentation. Found 20 spaces, expected 16 W0311: 55: Bad
indentation. Found 8 spaces, expected 4 W0311: 56: Bad indentation.
Found 12 spaces, expected 8 W0311: 57: Bad indentation. Found 8
spaces, expected 4 W0611: 26: Unused import yum ************* Module
security W0611: 47: Unused import logginglevels
2010-08-03 Tim Lauridsen <timlau@fedoraproject.org>
* repoquery.py: fix pylint errors ************* Module repoquery
W0301:322: Unnecessary semicolon W0301:426: Unnecessary semicolon
E0213:267:pkgQuery.tree_print_req: Method should have "self" as
first argument E0213:272:pkgQuery.pkg2uniq: Method should have
"self" as first argument E0602:274:pkgQuery.pkg2uniq: Undefined
variable 'self' E0602:274:pkgQuery.pkg2uniq: Undefined variable
'self' E0213:277:pkgQuery.pkg2val: Method should have "self" as
first argument
2010-08-03 James Antill <james@and.org>
* plugins/security/security.py: Use print instead of log for
security output so -q "works", trac 307
2010-08-03 James Antill <james@and.org>
* plugins/security/security.py: Fix bug for when not using "all",
bah.
2010-08-03 James Antill <james@and.org>
* plugins/security/security.py: Add installed mark, when using
list/info "all". Fix usage text.
2010-08-02 James Antill <james@and.org>
* plugins/security/security.py: Big changes to security plugin command: . Move list, info, summary
under a single "updateinfo" command. . Allow each command to see
"available", "installed", "updates" or "all". So you can easily
see what has been applied as well as what is to be applied. .
Should be fully backward compat. . Cleanup some output. ...plugin
now approached ridiculously badly named status.
2010-08-02 Seth Vidal <skvidal@fedoraproject.org>
* repomanage.py: get rid of exception.message deprecated use
2010-08-02 Seth Vidal <skvidal@fedoraproject.org>
* repomanage.py: remove completely unused exception definition from
repomanage altogether
2010-07-30 James Antill <james@and.org>
* yum-config-manager.py: Fix unicide in yum-config-manager, BZ
619851
2010-07-29 Seth Vidal <skvidal@fedoraproject.org>
Merge branch 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils * 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils: Accept "*"
to mean all arches.
2010-07-29 Seth Vidal <skvidal@fedoraproject.org>
* yum-config-manager.py: add '--add-repo' option to
yum-config-manager to allow adding repos from:
http://someserver/foo.repo or http://someplace/this/is/a/repo/ and
setting them up, trivially.
2010-07-27 Dennis Gregorovic <dgregor@redhat.com>
* repodiff.py: Accept "*" to mean all arches.
2010-07-27 James Antill <james@and.org>
* repodiff.py: Don't traceback when --size isn't given.
2010-07-22 Seth Vidal <skvidal@fedoraproject.org>
Merge branch 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils * 'master' of
ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils: Fix some
minor problems with return codes in updateonboot initscript Fix
annoying warnings for non-cli yum callers
2010-07-22 Seth Vidal <skvidal@fedoraproject.org>
* repodiff.py: add --simple option to repodiff to condense its
output a lot.
2010-07-14 James Antill <james@and.org>
* updateonboot/yum-updateonboot.init: Fix some minor problems with
return codes in updateonboot initscript
2010-07-07 James Antill <james@and.org>
* plugins/ps/ps.py: Fix annoying warnings for non-cli yum callers
2010-07-06 Seth Vidal <skvidal@fedoraproject.org>
* debuginfo-install.py, package-cleanup.py, yum-builddep.py,
yum-complete-transaction.py: optionally call
doUtilBuildTransaction(), if available for all the utils that need
to do that
2010-06-30 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: - make queryErrors be normal for python exceptions - make
whatrequres/provides/conflicts/obsoletes work with --installed or
pkgnarrow=installed or all
2010-06-25 James Antill <james@and.org>
* repoquery.py: Fix doQuery() passing yb keyword, leftover snafu
from tree-* args. change
2010-06-22 James Antill <james@and.org>
* plugins/ps/ps.py, yum-utils.spec: Allow "ps" plugin to work on
much older yum versions
2010-06-21 James Antill <james@and.org>
* plugins/ps/ps.conf, plugins/ps/ps.py, yum-utils.spec: Add ps
plugin, to show info about running commands.
2010-06-18 James Antill <james@and.org>
* docs/repoquery.1, repoquery.py: Have repoquery --archlist change
preconf.arch too
2010-06-17 James Antill <james@and.org>
* docs/repoquery.1: Add docs for --tree-*
2010-06-16 James Antill <james@and.org>
* repoquery.py: Add --tree-requires, --tree-conflicts, --tree-obsoletes and
--tree-whatrequires options to repoquery. These replace
pkg-deps-tree-view.py and pkg-provs-tree-view.py, with conflicts
and obsoletes added "for fun". Could do --tree-whatconflicts and
--tree-whatobsoletes for even more fun, but I passed atm.
2010-06-15 Seth Vidal <skvidal@fedoraproject.org>
* reposync.py: get rid of keys() call to the FileTypes function
2010-06-14 Seth Vidal <skvidal@fedoraproject.org>
* repoquery.py: add repo. like yumdb_info. for repoquery to keep
arbitrary names out of the legacy of repoquery this makes:
repoquery -q --qf "%{name} %{repo.name} %{repo.baseurl}" pkgname
work correctly
2010-06-14 James Antill <james@and.org>
* repoquery.py: Fix reponame for installed
2010-06-14 James Antill <james@and.org>
* repoquery.py: Add reponame variable, as we can't use repo.name
2010-06-07 James Antill <james@and.org>
* repoquery.py: Don't pre-download filelists, often got this `wrong'
with alldeps
2010-06-06 James Antill <james@and.org>
* repoquery.py: Fix stupid typo in repoquery, let non-installed
packages work again
2010-06-06 Tim Lauridsen <timlau@fedoraproject.org>
* ChangeLog: updated ChangeLog
2010-06-06 Tim Lauridsen <timlau@fedoraproject.org>
* yum-utils.spec: bumped yum-utils version to 1.1.27
2010-06-05 Tim Lauridsen <timlau@fedoraproject.org>
* debuginfo-install.py, plugins/keys/keys.py,
yum-complete-transaction.py, yum-debug-dump.py, yumdownloader.py:
Fix pylint errors ************* Module debuginfo-install W0611: 26:
Unused import to_unicode ************* Module
yum-complete-transaction E0602:238:YumCompleteTransaction.main:
Undefined variable 'YumBaseError' ************* Module
yum-debug-dump E1103:100:YumDebugDump.dump_yum_config_info: Instance
of 'DummyYumPlugins' has no '_plugins' member (but some types could
not be inferred) ************* Module yumdownloader W0611: 22:
Unused import getCacheDir ************* Module keys
E9905:229:KeysInfoCommand.show_key: Too many arguments for format
string
2010-06-04 Seth Vidal <skvidal@fedoraproject.org>
* repodiff.py: to_unicode() summary for repodiff, too closes
https://bugzilla.redhat.com/show_bug.cgi?id=600501
2010-06-04 James Antill <james@and.org>
* repoquery.py: Overridding .qf happens in doQuery, so we have to
cache multiple translations
2010-06-04 James Antill <james@and.org>
* repoquery.py: Do the right thing for: --nevra --qf "blah"
2010-06-03 James Antill <james@and.org>
* yumdownloader.py: Have yumdownloader use yb.setCacheDir() so it
goes the same location. BZ 599726
2010-06-03 Seth Vidal <skvidal@fedoraproject.org>
* yum-complete-transaction.py: handle corrupt transaction journals
- catch the misc exception when the transaction file is corrupt -
tell the user to file a bug b/c whatever made their file corrupt is
probably not good for their fs - deals with
https://bugzilla.redhat.com/show_bug.cgi?id=599574
2010-06-03 James Antill <james@and.org>
* repoquery.py: Sort the packages, when we have plain pkgs,
basically free!
2010-06-03 James Antill <james@and.org>
* repoquery.py: Don't match '*' against each pkg. for all, just get
all of them
2010-06-03 James Antill <james@and.org>
* repoquery.py: Don't convert the user qf for each package, when we
can now do it once.
2010-06-03 James Antill <james@and.org>
* repoquery.py: Don't create N PkgQuery objects, when we can reuse
them.
2010-06-02 James Antill <james@and.org>
* repoquery.py: Don't explicitly call doRepoSetup()
2010-06-02 James Antill <james@and.org>
* repoquery.py: Use .arch.archlist if available, also don't call
.doTsSetup
2010-06-02 James Antill <james@and.org>
* repoquery.py: Use prerepoconf, if available
2010-06-02 James Antill <james@and.org>
* repoquery.py: Don't auto needfiles, when we are just looking at
installed
2010-05-25 James Antill <james@and.org>
* repodiff.py: Fix comment typo
2010-05-24 James Antill <james@and.org>
* yum-config-manager.py: Don't save anything we don't have to, mainly enable/disable hack
(should fix config. objects to not change unchanged things).
2010-05-21 James Antill <james@and.org>
* yum-builddep.py: Have yum-builddep just call .install(), deals
with updates and multilib.
2010-05-21 James Antill <james@and.org>
* Makefile, yum-config-manager.py, yum-show-config.py,
yum-utils.spec: Change show-config to config-manager, let people set
stuff too.
2010-05-21 James Antill <james@and.org>
* Makefile, yum-show-config.py, yum-utils.spec: Add yum-show-config
command, to let people see the config. as yum sees it.
2010-05-21 James Antill <james@and.org>
* repoquery.py: Fix the description of quiet (and tell people it's
on by default).
2010-05-21 James Antill <james@and.org>
* repoquery.py: Add errormsg for bad repofrompath argument, make
repoid not found an error
2010-05-20 James Antill <james@and.org>
* repomanage.py: Remove exception from getFileList() and return an
empty list, BZ 587288.
2010-05-20 James Antill <james@and.org>
* repoquery.py: Tell the user about bad --repoid args, but only in
non-quiet BZ 593786
2010-05-17 Ville Skyttä <ville.skytta@iki.fi>
* docs/debuginfo-install.1, docs/yum-changelog.1,
docs/yum-list-data.1, docs/yum-security.8: Man page formatting
fixes.
2010-05-12 James Antill <james@and.org>
* repoquery.py: Sort package lists, in repoquery --whatrequires
output.
2010-05-06 Ville Skyttä <ville.skytta@iki.fi>
* yum-utils.bash: Include --installed in repoquery completions.
2010-05-05 Tim Lauridsen <timlau@fedoraproject.org>
* plugins/fastestmirror/fastestmirror.py: fastestmirror: make it
work as non-root user (Don't setup cache dir to early) (rhbz