File: copyright

package info (click to toggle)
dnf 4.5.2-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,556 kB
  • sloc: python: 26,916; xml: 778; sh: 131; makefile: 42
file content (1115 lines) | stat: -rw-r--r-- 55,199 bytes parent folder | download
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
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: dnf
Upstream-Contact: https://github.com/rpm-software-management/dnf/issues
Source: https://github.com/rpm-software-management/dnf

Files: debian/*
Copyright: 2018-2019 Mihai Moldovan <ionic@ionic.de>
License: GPL-2+

Files: bin/dnf-automatic.in
 bin/dnf.in
 dnf/__init__.py
 dnf/automatic/__init__.py
 dnf/automatic/emitter.py
 dnf/automatic/main.py
 dnf/callback.py
 dnf/cli/__init__.py
 dnf/cli/aliases.py
 dnf/cli/commands/alias.py
 dnf/cli/commands/autoremove.py
 dnf/cli/commands/check.py
 dnf/cli/commands/clean.py
 dnf/cli/commands/deplist.py
 dnf/cli/commands/distrosync.py
 dnf/cli/commands/downgrade.py
 dnf/cli/commands/group.py
 dnf/cli/commands/install.py
 dnf/cli/commands/makecache.py
 dnf/cli/commands/mark.py
 dnf/cli/commands/module.py
 dnf/cli/commands/reinstall.py
 dnf/cli/commands/remove.py
 dnf/cli/commands/repolist.py
 dnf/cli/commands/repoquery.py
 dnf/cli/commands/search.py
 dnf/cli/commands/shell.py
 dnf/cli/commands/swap.py
 dnf/cli/commands/updateinfo.py
 dnf/cli/commands/upgrade.py
 dnf/cli/commands/upgrademinimal.py
 dnf/cli/demand.py
 dnf/cli/format.py
 dnf/cli/option_parser.py
 dnf/cli/progress.py
 dnf/comps.py
 dnf/conf/__init__.py
 dnf/conf/config.py
 dnf/conf/read.py
 dnf/conf/substitutions.py
 dnf/const.py.in
 dnf/crypto.py
 dnf/dnssec.py
 dnf/drpm.py
 dnf/goal.py
 dnf/history.py
 dnf/i18n.py
 dnf/lock.py
 dnf/logging.py
 dnf/match_counter.py
 dnf/module/exceptions.py
 dnf/package.py
 dnf/persistor.py
 dnf/plugin.py
 dnf/pycomp.py
 dnf/query.py
 dnf/repo.py
 dnf/repodict.py
 dnf/rpm/__init__.py
 dnf/rpm/connection.py
 dnf/rpm/error.py
 dnf/sack.py
 dnf/selector.py
 dnf/subject.py
 dnf/transaction.py
 dnf/util.py
 dnf/yum/__init__.py
 dnf/yum/misc.py
 doc/__init__.py
 doc/api.rst
 doc/api_base.rst
 doc/api_callback.rst
 doc/api_cli.rst
 doc/api_common.rst
 doc/api_comps.rst
 doc/api_conf.rst
 doc/api_exceptions.rst
 doc/api_package.rst
 doc/api_plugins.rst
 doc/api_queries.rst
 doc/api_repos.rst
 doc/api_rpm.rst
 doc/api_sack.rst
 doc/api_selector.rst
 doc/api_transaction.rst
 doc/api_vs_yum.rst
 doc/automatic.rst
 doc/command_ref.rst
 doc/conf_ref.rst
 doc/dnf-1_vs_dnf-2.rst
 doc/examples/install_extension.py
 doc/examples/install_plugin.py
 doc/examples/list_extras_extension.py
 doc/examples/list_obsoletes_plugin.py
 doc/index.rst
 doc/modularity.rst
 doc/release_notes.rst
 doc/rhbug.py
 doc/use_cases.rst
 doc/user_faq.rst
 tests/__init__.py
 tests/automatic/__init__.py
 tests/automatic/test_emitter.py
 tests/automatic/test_main.py
 tests/api/__init__.py
 tests/api/common.py
 tests/api/test_dnf.py
 tests/api/test_dnf_base.py
 tests/api/test_dnf_callback.py
 tests/api/test_dnf_cli.py
 tests/api/test_dnf_cli_cli.py
 tests/api/test_dnf_cli_commands.py
 tests/api/test_dnf_cli_demand.py
 tests/api/test_dnf_comps.py
 tests/api/test_dnf_conf.py
 tests/api/test_dnf_const.py
 tests/api/test_dnf_db_group.py
 tests/api/test_dnf_exceptions.py
 tests/api/test_dnf_logging.py
 tests/api/test_dnf_module_base.py
 tests/api/test_dnf_module_package.py
 tests/api/test_dnf_package.py
 tests/api/test_dnf_plugin.py
 tests/api/test_dnf_repodict.py
 tests/api/test_dnf_rpm.py
 tests/api/test_dnf_sack.py
 tests/api/test_dnf_subject.py
 tests/api/test_dnf_transaction.py
 tests/api/test_dnf_yum_rpmtrans.py
 tests/cli/__init__.py
 tests/cli/commands/__init__.py
 tests/cli/commands/test_autoremove.py
 tests/cli/commands/test_clean.py
 tests/cli/commands/test_group.py
 tests/cli/commands/test_makecache.py
 tests/cli/commands/test_remove.py
 tests/cli/commands/test_repolist.py
 tests/cli/commands/test_search.py
 tests/cli/commands/test_updateinfo.py
 tests/cli/test_aliases.py
 tests/cli/test_demand.py
 tests/cli/test_option_parser.py
 tests/cli/test_output.py
 tests/cli/test_term.py
 tests/conf/__init__.py
 tests/conf/test_list_option.py
 tests/conf/test_parser.py
 tests/conf/test_read.py
 tests/conf/test_substitutions.py
 tests/plugins/disabled-plugin.py
 tests/plugins/lucky.py
 tests/support.py
 tests/test_api.py
 tests/test_arch.py
 tests/test_base.py
 tests/test_check.py
 tests/test_cli.py
 tests/test_cli_format.py
 tests/test_cli_progress.py
 tests/test_commands.py
 tests/test_comps.py
 tests/test_config.py
 tests/test_crypto.py
 tests/test_distsync.py
 tests/test_dnssec.py
 tests/test_downgrade.py
 tests/test_downgrade_to.py
 tests/test_exceptions.py
 tests/test_goal.py
 tests/test_groups.py
 tests/test_history.py
 tests/test_history_undo.py
 tests/test_i18n.py
 tests/test_install.py
 tests/test_libcomps.py
 tests/test_list.py
 tests/test_lock.py
 tests/test_logging.py
 tests/test_main.py
 tests/test_match_counter.py
 tests/test_misc.py
 tests/test_modules.py
 tests/test_package.py
 tests/test_persistor.py
 tests/test_plugin.py
 tests/test_provides.py
 tests/test_queries.py
 tests/test_reinstall.py
 tests/test_remove.py
 tests/test_repodict.py
 tests/test_repoquery.py
 tests/test_rpmconnection.py
 tests/test_sack.py
 tests/test_sanity.py
 tests/test_subject.py
 tests/test_transaction.py
 tests/test_upgrade_to.py
 tests/test_util.py
 dnf/rpm/transaction.py
 scripts/update_releasenotes.py
 dnf/cli/term.py
 doc/cli_vs_yum.rst
Copyright: 1999-2002, 2009, 2012-2019, Red Hat, Inc.
License: GPL-2+-and-trademark-notice

Files: dnf/cli/utils.py
 dnf/db/__init__.py
 dnf/db/group.py
 dnf/db/history.py
 dnf/module/__init__.py
 dnf/module/module_base.py
 doc/conf.py
Copyright: 2009, 2012-2019, Red Hat, Inc.
License: GPL-2+

Files: .gitignore
 .packit.yaml
 .git-commit-template
 .tito/packages/.readme
 .tito/tito.props
 po/or.po
 po/vi.po
 setup.cfg
 CMakeLists.txt
 PACKAGE-LICENSING
 README.rst
 VERSION.cmake
 bin/CMakeLists.txt
 dnf.spec
 dnf/cli/commands/history.py
 dnf/transaction_sr.py
 dnf/CMakeLists.txt
 dnf/automatic/CMakeLists.txt
 dnf/cli/CMakeLists.txt
 dnf/cli/commands/CMakeLists.txt
 dnf/conf/CMakeLists.txt
 dnf/db/CMakeLists.txt
 dnf/module/CMakeLists.txt
 dnf/rpm/CMakeLists.txt
 dnf/yum/CMakeLists.txt
 doc/CMakeLists.txt
 doc/summaries_cache
 doc/api_module.rst
 doc/conf.py.in
 doc/transaction_json.rst
 etc/dnf/dnf-strict.conf
 etc/CMakeLists.txt
 etc/bash_completion.d/CMakeLists.txt
 etc/collect_dnf.conf
 etc/dnf/CMakeLists.txt
 etc/dnf/aliases.d/CMakeLists.txt
 etc/dnf/aliases.d/zypper.conf
 etc/dnf/automatic.conf
 etc/dnf/dnf.conf
 etc/dnf/dnf_test.conf.in
 etc/dnf/protected.d/CMakeLists.txt
 etc/dnf/protected.d/dnf.conf
 etc/dnf/protected.d/yum.conf
 etc/logrotate.d/CMakeLists.txt
 etc/logrotate.d/dnf
 etc/systemd/CMakeLists.txt
 etc/systemd/dnf-automatic-download.service
 etc/systemd/dnf-automatic-download.timer
 etc/systemd/dnf-automatic-install.service
 etc/systemd/dnf-automatic-install.timer
 etc/systemd/dnf-automatic-notifyonly.service
 etc/systemd/dnf-automatic-notifyonly.timer
 etc/systemd/dnf-automatic.service
 etc/systemd/dnf-automatic.timer
 etc/systemd/dnf-makecache.service
 etc/systemd/dnf-makecache.timer
 etc/tmpfiles.d/CMakeLists.txt
 etc/tmpfiles.d/dnf.conf
 po/.gitignore
 po/CMakeLists.txt
 po/hi.po
 po/ur.po
 po/dnf.pot
 po/zanata.xml
 rel-eng/README
 rel-eng/packages/.readme
 rel-eng/packages/dnf
 rel-eng/releasers.conf
 rel-eng/templates/version
 rel-eng/tito.props
 scripts/dnf_pylint
 scripts/pylint_false_positives
 scripts/sanitize_po_files.py
 sideci.yml
 tests/.gitignore
 tests/CMakeLists.txt
 tests/README
 tests/etc/aliases.d/aliases.conf
 tests/etc/automatic.conf
 tests/etc/empty_option.conf
 tests/etc/installroot.conf
 tests/etc/repos.conf
 tests/keys/key.pub
 tests/modules/defaults/httpd.yaml
 tests/modules/dnf-test
 tests/modules/etc/dnf/dnf.conf.in
 tests/modules/etc/dnf/modules.d/base-runtime.module
 tests/modules/etc/dnf/modules.d/httpd.module
 tests/modules/etc/dnf/modules.defaults.d/base-runtime.yaml
 tests/modules/etc/dnf/modules.defaults.d/httpd.yaml
 tests/modules/etc/dnf/repos.d/test.repo.in
 tests/modules/modules/_all/x86_64/base-runtime-f26-1.x86_64.yaml
 tests/modules/modules/_all/x86_64/base-runtime-f26-2.x86_64.yaml
 tests/modules/modules/_all/x86_64/base-runtime-rhel73-1.x86_64.yaml
 tests/modules/modules/_all/x86_64/basesystem-10.0-7.noarch.rpm
 tests/modules/modules/_all/x86_64/basesystem-11-3.noarch.rpm
 tests/modules/modules/_all/x86_64/bash-4.2.46-21.x86_64.rpm
 tests/modules/modules/_all/x86_64/bash-4.4.12-2.x86_64.rpm
 tests/modules/modules/_all/x86_64/bash-doc-4.2.46-21.noarch.rpm
 tests/modules/modules/_all/x86_64/bash-doc-4.4.12-2.noarch.rpm
 tests/modules/modules/_all/x86_64/dummy-nscd-2.17-157.x86_64.rpm
 tests/modules/modules/_all/x86_64/dummy-nscd-2.25-4.x86_64.rpm
 tests/modules/modules/_all/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm
 tests/modules/modules/_all/x86_64/filesystem-3.2-21.x86_64.rpm
 tests/modules/modules/_all/x86_64/filesystem-3.2-40.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-2.17-157.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-2.25-4.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-2.25.90-2.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-common-2.17-157.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-common-2.25-4.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-common-2.25.90-2.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm
 tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm
 tests/modules/modules/_all/x86_64/grub2-2.02-0.40.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-2.2-1.x86_64.yaml
 tests/modules/modules/_all/x86_64/httpd-2.2.10-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-2.2.15-59.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-2.4-1.x86_64.yaml
 tests/modules/modules/_all/x86_64/httpd-2.4-2.x86_64.yaml
 tests/modules/modules/_all/x86_64/httpd-2.4.25-7.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-2.4.25-8.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-doc-2.2.10-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-doc-2.2.15-59.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-7.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-8.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-provides-name-3.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/httpd.yaml
 tests/modules/modules/_all/x86_64/kernel-3.10.0-514.x86_64.rpm
 tests/modules/modules/_all/x86_64/kernel-4.11.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/kernel-doc-3.10.0-514.noarch.rpm
 tests/modules/modules/_all/x86_64/kernel-doc-4.11.0-1.noarch.rpm
 tests/modules/modules/_all/x86_64/kernel-headers-3.10.0-514.x86_64.rpm
 tests/modules/modules/_all/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm
 tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
 tests/modules/modules/_all/x86_64/m4-1.4.18-1.x86_64.yaml
 tests/modules/modules/_all/x86_64/m4-1.4.18-6.x86_64.rpm
 tests/modules/modules/_all/x86_64/systemd-219-30.x86_64.rpm
 tests/modules/modules/_all/x86_64/systemd-233-3.x86_64.rpm
 tests/modules/modules/_all/x86_64/repodata/23f9fa47b12caedc5f13f66df52695fcaea77c4c66dc28edd80b86852f8e42cb-modules.yaml.gz
 tests/modules/modules/_all/x86_64/repodata/5555625d8791c4cbee96ab32c23a8cd18955f2b6bb0f4adbad57e4bc62644dbc-primary.xml.gz
 tests/modules/modules/_all/x86_64/repodata/898b238daf0b66d228beb623538b8fdaa30c5971d576952b93ca70f296038333-other.xml.gz
 tests/modules/modules/_all/x86_64/repodata/8ceb82d8e12ad9605e7625f5a2e9798b12e52f72fe1cd6b3ed22e520e2ecd03c-filelists.xml.gz
 tests/modules/modules/_all/x86_64/repodata/9a8fba72f7f66138d27f243aa649e18b99eaeb6fbd4c57e1ea1c8e02a9bdd562-filelists.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/d2a57244a5774a7f02821aefcb4bf27ca2c1adf47dde411934f8cf9d3580effb-other.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/f835f27c133334bea4bd28b4e9e6f629fb455c53d9c8b2b9fedef609f5221763-primary.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/repomd.xml
 tests/modules/modules/_non-modular/src/grub2-2.02-0.40.src.rpm
 tests/modules/modules/_non-modular/src/httpd-2.2.10-1.src.rpm
 tests/modules/modules/_non-modular/src/httpd-provides-name-3.0-1.src.rpm
 tests/modules/modules/_non-modular/src/httpd-provides-name-version-release-3.0-1.src.rpm
 tests/modules/modules/_non-modular/src/libnghttp2-1.21.1-1.1.src.rpm
 tests/modules/modules/_non-modular/x86_64/grub2-2.02-0.40.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-2.2.10-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-doc-2.2.10-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-provides-name-3.0-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm
 tests/modules/modules/_non-modular/x86_64/repodata/2603f883d5dada8e8747c737fce75cdf733ce2c059027a49b55e9717027a47b4-other.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/31f1fe072d277d235c198c4481c647824c8669a85324a72d4dfbbad319410287-other.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/35d26170d41861b68ac7fef74e0d5f8cc977886579de19a8c6496bfa94fb0825-filelists.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/aa9c1c3bff655d8e191b9f5de26218d95449b68acbe9157bf0b51104300a0ca6-filelists.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/cb2ccbdd3075defb28cf934c734a8366a2781d41d0381e379f8a86f0dc35f0df-primary.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/f02bcd188e1ac34156f700c82051fe774c37db6ad74b5dd97f773e9a041c0589-primary.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/repomd.xml
 tests/modules/modules/base-runtime-f26-1/noarch/basesystem-11-3.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/noarch/bash-doc-4.4.12-2.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/noarch/kernel-doc-4.11.0-1.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/src/base-runtime-f26-1.src.yaml
 tests/modules/modules/base-runtime-f26-1/src/basesystem-11-3.src.rpm
 tests/modules/modules/base-runtime-f26-1/src/bash-4.4.12-2.src.rpm
 tests/modules/modules/base-runtime-f26-1/src/filesystem-3.2-40.src.rpm
 tests/modules/modules/base-runtime-f26-1/src/glibc-2.25-4.src.rpm
 tests/modules/modules/base-runtime-f26-1/src/kernel-4.11.0-1.src.rpm
 tests/modules/modules/base-runtime-f26-1/src/systemd-233-3.src.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/basesystem-11-3.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/base-runtime-f26-1.x86_64.yaml
 tests/modules/modules/base-runtime-f26-1/x86_64/bash-4.4.12-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/bash-doc-4.4.12-2.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/dummy-nscd-2.25-4.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/filesystem-3.2-40.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/glibc-2.25-4.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/glibc-common-2.25-4.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/kernel-4.11.0-1.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/kernel-doc-4.11.0-1.noarch.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/systemd-233-3.x86_64.rpm
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/11a3f90a83c0b78bb49ace0c6661aa3321a2e1d511db74a7d0fd67684fbddb7a-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/3b8cf4e690c967243c0973ad0a803f6b462ca1c4c851ea16b00ccc9d06fb5cf0-primary.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/6bbb4e495a8140867dfdd13b3909f2fe7b90840d1e733cbf7f7de41780d8dc84-modules.yaml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/7283b7feca2768a5c14ae5b6d391fdf7ee1c19244df3d323ee04269a8ec86836-other.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/8f94815ba6a68fc6730bb7b38acbf9d8afd10bf27d06d150116da16c9d4cbdfe-primary.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/9e125f58c56b6c4a31cc1c8e04a0a8cc2391d53b605d784eaaff65c77cc63aa3-other.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/dd173b81d1858c7a68d5e71a891fd600f8f69260fb143d3044543429cde73132-filelists.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/repomd.xml
 tests/modules/modules/base-runtime-f26-2/noarch/basesystem-11-3.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/noarch/bash-doc-4.4.12-2.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/noarch/kernel-doc-4.11.0-1.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/src/base-runtime-f26-2.src.yaml
 tests/modules/modules/base-runtime-f26-2/src/basesystem-11-3.src.rpm
 tests/modules/modules/base-runtime-f26-2/src/bash-4.4.12-2.src.rpm
 tests/modules/modules/base-runtime-f26-2/src/glibc-2.25.90-2.src.rpm
 tests/modules/modules/base-runtime-f26-2/src/kernel-4.11.0-1.src.rpm
 tests/modules/modules/base-runtime-f26-2/src/filesystem-3.2-40.src.rpm
 tests/modules/modules/base-runtime-f26-2/src/systemd-233-3.src.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/basesystem-11-3.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/base-runtime-f26-2.x86_64.yaml
 tests/modules/modules/base-runtime-f26-2/x86_64/bash-4.4.12-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/bash-doc-4.4.12-2.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/filesystem-3.2-40.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/glibc-2.25.90-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/glibc-common-2.25.90-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/kernel-4.11.0-1.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/kernel-doc-4.11.0-1.noarch.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/systemd-233-3.x86_64.rpm
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/1bd2a68b47fd4d3201ddd84eb623533fc46a76171b67b46c239b3bea19577fa3-modules.yaml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/27e98871e1153ce3f0f851877f76a019c1f9cd411c89d968b3f2c69c7853c6e6-primary.sqlite.bz2
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/52405d853f91aa1488086e609b369af3333d4f6bbcae697e6b13cb759f46e6ef-other.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/716f098f0c18dd7e81706a1391a890d23eea6d5856dfb43517fada0f49b66a1f-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/85e91fb36a090cf9a34c2cf97d29dcc86f69feb247e8ee4bfb1b96e9e3ff6cba-filelists.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/9d89694305e49e3e9badecdf50f660da0487e96f4bb725044893012cbe5969fe-other.sqlite.bz2
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/ac29250d8c838a6cbfe74f6861cc61e7167a631aa268fa36cd6eea70e9d34a3f-primary.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/repomd.xml
 tests/modules/modules/base-runtime-rhel73-1/noarch/basesystem-10.0-7.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/noarch/bash-doc-4.2.46-21.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/noarch/kernel-doc-3.10.0-514.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/base-runtime-rhel73-1.src.yaml
 tests/modules/modules/base-runtime-rhel73-1/src/basesystem-10.0-7.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/bash-4.2.46-21.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/filesystem-3.2-21.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/glibc-2.17-157.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/kernel-3.10.0-514.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/src/systemd-219-30.src.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/base-runtime-rhel73-1.x86_64.yaml
 tests/modules/modules/base-runtime-rhel73-1/x86_64/basesystem-10.0-7.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-4.2.46-21.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-doc-4.2.46-21.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/dummy-nscd-2.17-157.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/filesystem-3.2-21.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-2.17-157.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-common-2.17-157.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-3.10.0-514.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-doc-3.10.0-514.noarch.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-headers-3.10.0-514.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/systemd-219-30.x86_64.rpm
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/429feeff2c590966f6f80061c12e36976ef3479e8f4cd0f89dfa6b7cf6f70fd4-other.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/4aa6f4fadf74ab06f4c7f436653f68026d18245acfca597763f62d77d956d65c-modules.yaml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/8949023d45d446c6e8e94eb2e6a3ecb71c19a427560e229ce35d9e5be2271020-primary.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/b3410bbc216a4d9cf4285ae2e253c5ba42b9fa245885b7e062daa46e7d455b00-primary.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/dcf87cccae6c8c1d8e71c424cffa0e3cddf830bb9da2b54dccc4e880936f78cf-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/f1d6bc382e1a541b0a09173e7212583fbb003ae86f752e0d9bbe1c58b2fb7126-filelists.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/ffcf889fe97ef5230905a77746526127ca4d3b44a7401f25834cc6b2a4c5ce4f-other.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/repomd.xml
 tests/modules/modules/httpd-2.2-1/src/httpd-2.2-1.src.yaml
 tests/modules/modules/httpd-2.2-1/src/httpd-2.2.15-59.src.rpm
 tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2-1.x86_64.yaml
 tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2.15-59.x86_64.rpm
 tests/modules/modules/httpd-2.2-1/x86_64/httpd-doc-2.2.15-59.x86_64.rpm
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/0c0bf4fb847743d975173c7a7e2c3b7218a78561f911a4e9eba6ca89ce7abb90-other.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/2defc3f519e757e3d43fd968d6d56d61e05f331e44b67d7506d5f788a479e928-other.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/7124302a27a3d61e9b01e0a4aaa2822f884b20a40d22f2d239843fe5dcdaa126-filelists.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/c198166f01d73a203675e1d752bd07f9b3a6adc6fb3e08ce86ee37078add3a2a-primary.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/cc8fd6955efaa133c509583c2832c010ed27f4403834193a29f01ab2baca6e41-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/dde337bbe50a138c8412c32f902fc02bf7398620398c39ea844f83ffdc37f086-modules.yaml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/f07b7224dfbd52a07c67673bdb56110cdad3ea13ce852ca97ba12f8f3bbcf0e6-primary.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/repomd.xml
 tests/modules/modules/httpd-2.4-1/src/httpd-2.4-1.src.yaml
 tests/modules/modules/httpd-2.4-1/src/httpd-2.4.25-7.src.rpm
 tests/modules/modules/httpd-2.4-1/src/libnghttp2-1.21.1-1.src.rpm
 tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4-1.x86_64.yaml
 tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4.25-7.x86_64.rpm
 tests/modules/modules/httpd-2.4-1/x86_64/httpd-doc-2.4.25-7.x86_64.rpm
 tests/modules/modules/httpd-2.4-1/x86_64/httpd.yaml
 tests/modules/modules/httpd-2.4-1/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/08237a11340676ff1a2feb23110eba3187687f9ffb3da4a548833e6a0a83ec2f-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/0a29ebe7056790ce78c7e5706a09c142228cd6648c5c4f8ffe4de5a9f3dd5476-primary.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/5bac069f64963a6ddff6ec7895e098c8d278ec91f10c6145c14475c253c79178-other.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/7846aade69ea57ab69af7af70ec20c8950d352f0c8ab83af4f6fd00da1e41366-primary.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/93764d2fef4b0d45523e0699968378fe1c10540f19f3105e769ca5b234a19270-other.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/bbb9cc479bb50dbf88fad748f6123af3292feae10c4fcfec6994c6ae8a9d9cbf-filelists.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/dbb9642a3d9540d328a7bbd389f448af49ea9353cafc65f84fb60c309635212a-modules.yaml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/repomd.xml
 tests/modules/modules/httpd-2.4-2/src/httpd-2.4-2.src.yaml
 tests/modules/modules/httpd-2.4-2/src/httpd-2.4.25-8.src.rpm
 tests/modules/modules/httpd-2.4-2/src/libnghttp2-1.21.1-1.src.rpm
 tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4-2.x86_64.yaml
 tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4.25-8.x86_64.rpm
 tests/modules/modules/httpd-2.4-2/x86_64/httpd-doc-2.4.25-8.x86_64.rpm
 tests/modules/modules/httpd-2.4-2/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/332224e24fa24192be78221e39f7de1cc35b8850c798a612d5d74a3838975c7f-filelists.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/3dbcb48722838f62949fce0c4758e61f82b2097c84c3dae8716cf2f5a9e242c8-other.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/63a396aad4180ee5eddb2d05c6d526ccb16ccbafd62fa8485fb015fe2a0b3fd0-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/8aee217ea9c28e6c91f47e04d1b9bdfb67097f446d3f3bf2e4db4cc3b4649671-primary.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/a07cd4f4bd86150b5a70db8dae6b6c7e4e5231d2d4e49e64d53cf26301d0f8ff-modules.yaml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/a58443841c66e06323f00087968ab31f85c23395e96de860fc5484d02742c0ad-primary.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/ea0299725e09c27f7b83ce30f604c59ea6cc46de78360fa21b279b9e44b1ecea-other.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/repomd.xml
 tests/modules/modules/m4-1.4.18-1/src/m4-1.4.18-1.src.yaml
 tests/modules/modules/m4-1.4.18-1/src/m4-1.4.18-6.src.rpm
 tests/modules/modules/m4-1.4.18-1/x86_64/m4-1.4.18-1.x86_64.yaml
 tests/modules/modules/m4-1.4.18-1/x86_64/m4-1.4.18-6.x86_64.rpm
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/0fcbc16a9715f66ff2f608e304781e17bd50658283cfa8afadb4a73e5767c795-primary.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/2280fcccea2c0970f28ac8dd2270c714afb1b84912215bf76131fca6d854628d-filelists.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/5ce420e3b6b9b9e6ff1e5ee978267bd8d1cd06e5f0b63ee2bf0653fa00934cf2-other.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/998229be9227cc8fbcbb2338fb234b133090b39bf99560d4d64621815dc02e97-modules.yaml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/d3346a66e21ba5e2923583544eb9d5595e365545d6717f1d81f85f034617fe97-filelists.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/da818cc09599112a1f60dba9d04568137edc5a270059fdd6ff686fa41186e2cb-other.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/e86da9af20e865d46fc43ce4b64957b35999c2be12815e6744b9451bccf05be1-primary.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/repomd.xml
 tests/modules/modules/_all/x86_64/repodata/2a120cfcb79d034d57025353e6d309850ae722fab747985ad663be7700afc791-filelists.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/394544778dd0769d634fbb4f160f3220820e5585ad6466ecbfe5909f969f4446-modules.yaml.gz
 tests/modules/modules/_all/x86_64/repodata/3cdfd8615c7f6aec8244215f6828390fbd51801e1c3c8efba5248f341fa279c6-other.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/3f8c14b8370c818ce4ace942d5539bc275ef89a9fda6bfa7d286455a08680686-primary.xml.gz
 tests/modules/modules/_all/x86_64/repodata/78895cb76ae731f4134b4376fa47c9421f5dee9b28d0df1ecb141a33b58fb000-other.xml.gz
 tests/modules/modules/_all/x86_64/repodata/82366168ba5e51e81cd9379b9027acb706f472da07b37db78f1ff6dd2414534c-primary.sqlite.bz2
 tests/modules/modules/_all/x86_64/repodata/86c0728dc94375c0a9a7d130e9ccd0468de7d5d09d17485503c3d593b0979a27-filelists.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/217dd9560be2298234e7c5859d6a87a01b876af58755651a609f668bf1754b98-primary.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/221f038e3ae9f4bda6f54343afa716a57b89f556f28e1ddabc651fcd5f923b55-other.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/5b707daef9af18c47e18cdc821199e5c8fb24a066cde2387f8b11b0a979c644d-filelists.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/a835bef49db5281309f4f88e2acebaa5e5d511ae63b16c5ca49123b5a22ec314-primary.xml.gz
 tests/modules/modules/_non-modular/x86_64/repodata/d96fa310536cacbd9e9166cb991f542e807db8568c487486f6d5eef314add935-filelists.sqlite.bz2
 tests/modules/modules/_non-modular/x86_64/repodata/ec21c73d1905a156d7ffc053716201627f932970b30d6584b096d4598ff29c63-other.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/0197616360469f9a10491cb6343b25a7f29d79ad4fc0a9751b13c1da12131ad1-primary.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/12f5f0e67c58fe247fe84e2c19921555addfc9a771a8c7dcdfb79cf373f0845f-primary.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/15783fdf17de66856d4a577c59a1dfb102f8279f76c5f147a4402e31df5448ca-filelists.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/4625b81a982cd0deafb765051c4e879144b6e7fee6bf2b5729638e7de214b807-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/46eedda537cfe23d3f1d639a89b0ea91416bffa67657c0834633fd0c47e9367b-other.xml.gz
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/6708380c43d31e91934c7f8ec7eef69557d79032db8ee9f646c00e4d658bc6b6-other.sqlite.bz2
 tests/modules/modules/base-runtime-f26-1/x86_64/repodata/91757d4d277d4722662bc5b5598e5277b6e4cac33b858ce61e8baa515a8fe10f-modules.yaml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/48b3835051a31ee8b6ac4579c7d1e477aff4c3ba939e350e61850d2b6304a8c7-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/6e3fd16df3fd15c094fa1c883dac5aeed912921fbc7669a46cd1823187b81d91-modules.yaml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/7320564c9feb7fcc79d9855641672f25ffaf1a73d2a923dd018fcb07d413b3da-filelists.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/9e46885615ecadd411204a2287cc8bef8883b1013bfe08506157d4f8ebf9c7a5-primary.sqlite.bz2
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/c2995be7257fc5d878819d3ee0a6c87dc10a7fa72f73488e2f3369a7f2c5f74c-primary.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/da2d04f332f1f05d1c6e83fcaccc352ca31fc22f0f0dc604ccc94f6cb1ad2755-other.xml.gz
 tests/modules/modules/base-runtime-f26-2/x86_64/repodata/ff93d4d4fc88f99f5e4089e4c405bbc82ec38a95e8e07f2758d4ed3c0ad9d4c9-other.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/18b3bb5d501d64b74a3e6f8a54c3ab22cef99ff5c7dd77405477c4acd91aa839-filelists.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/237137a49499452407d775099b9b9d0406cfcf9c8e04a73bed73c2f938539307-primary.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/4de79c0a33000cd3d2cc5271b987c928d758476f9917331cf5b3c91f40fa606e-filelists.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/522799d53efaa679d7e73c06253299e84e276e5b93e6132473a901a42b60d7b7-modules.yaml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/55af104f1eed5e3a2ae1d825bbec0086c6f0eff589f8bd20a1d82f84e355e9c9-primary.sqlite.bz2
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/b2f467bc4e17040eda3e6955be79cbdf5106184953a3a56bff091b7d8d38bc8c-other.xml.gz
 tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/dccf201e1489ed60934822f0e3fa0b920438f40d191c8dba9f0438b415a4b5d9-other.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/17773d659f5ab3eced8eda06454d8a879a1ebefad48a862c956de501c28006be-other.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/475c1e77d6ac0e9257e0a4c912c588f4ed7983d36916f3d7fbb1d8e72a3eb227-other.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/a382114aaf404f5ccb3e7e3346e2ef2a7a412d3fd00ac301065d76342a4fad9e-modules.yaml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/b6e9f594ea106e986808ed266e26580efcd43cde77c321edee8e9f49dd65fdef-primary.sqlite.bz2
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/c2c68892b743b0c6988ee136fba0956bd5d59d746b6d664d36e232b20703ed15-primary.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/d56bde2dcd7aefffb7bece9f583664c5ff1b467b29012ef7a6ec8e55090182e4-filelists.xml.gz
 tests/modules/modules/httpd-2.2-1/x86_64/repodata/f962bca691115890097706e228cc93abb1adcb8fc74f1c1818d6b90fc31e924a-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/05b5479e4faee14a1220e8dca896cb2c04f44833eaecbbce973bb2c35e910df4-primary.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/17842c5520dfd7c597048119bc04db89e9a6a26a24a293574aa237d3b6f7d7dc-primary.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/2455f6962f6b23bc8988809e0059f20349a08b41c50e0e20a9e8b2ae4b4bf3ff-filelists.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/372fc35c31f954808e53d298aa68bc9896a39c5e0e2120a23f4bc5ca371949bb-modules.yaml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/5a3b1577eb0d7df716ad4543e4672a7142ba1ec14478587cf387c55e9dc727fb-other.xml.gz
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/84e41f0c0d6e3f542049d80988836d0c47fd448417faa6401be6483828b2c96e-other.sqlite.bz2
 tests/modules/modules/httpd-2.4-1/x86_64/repodata/f4cdb62454768ee9172ba8d354cfafd859c4ed3129eb3a5758cac8fcd4c086b1-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/38acbd495714de43d030a2cf315ee38e139239583a47015a69d5d29a5b8d7a97-primary.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/a6b29f322f210cad38dfdecaa6504c554ab72fd54bb96269a99830c0cacd690e-modules.yaml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/bcff0ecab237918e242b6741a00ffeaaf99c1d36543d98465c23b77aa281dbe5-filelists.sqlite.bz2
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/be5001bacabe31ae8c9e536a6967bf1cfe11048f612fdc8dc2827e4a420408f7-primary.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/c3fb274e2e6206c2f8b660c7b08cb9bfb81c3ca6613b4b5493f2b67718c76205-other.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/cbf1c59c5c84cc78c2e3bd5fc4d1cbcc3332df16d43f1465e7560d06680be426-filelists.xml.gz
 tests/modules/modules/httpd-2.4-2/x86_64/repodata/e8fe6fa885cb012970c78b28d2cb234526a39c1a8a0ec74a7ed51ac2d112f80c-other.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/182b0cda9ac8d21e73ab6da586d864c77101eda91d3813cb578a12908bc0182a-other.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/2d85f633334f11b722b50eb362c0216f081b8c9d90b61daca80ddb71c3dc6000-filelists.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/48da8847a83c9da7d192d7f414399f3ce1c6240bc3e7521f962bd1be719f3bec-other.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/622c30bb8384a7053ec6d8e5cd54ac2856a64c5477f26931972e217afda6c33d-modules.yaml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/a5c2c7518ca79c09bf88d93062b85456d542f991b512fcf391eda1bdf7b84f23-filelists.sqlite.bz2
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/ba3eb60edbd52fb16ee4f7d8632a9e3bac48a1fc40bb7838c223b6f8f6cdad70-primary.xml.gz
 tests/modules/modules/m4-1.4.18-1/x86_64/repodata/d443140da4e0ed68d08600c911e44344f89d30b731686904caf8f184d65ae178-primary.sqlite.bz2
 tests/modules/specs/_create_modulemd.py
 tests/modules/specs/_createrepo_c_modularity_hack.py
 tests/modules/specs/_non-modular/grub2.spec
 tests/modules/specs/_non-modular/httpd-provides-name-version-release.spec
 tests/modules/specs/_non-modular/httpd-provides-name.spec
 tests/modules/specs/_non-modular/httpd.spec
 tests/modules/specs/_non-modular/libnghttp2.spec
 tests/modules/specs/base-runtime-f26-1/basesystem.spec
 tests/modules/specs/base-runtime-f26-1/bash.spec
 tests/modules/specs/base-runtime-f26-1/filesystem.spec
 tests/modules/specs/base-runtime-f26-1/glibc.spec
 tests/modules/specs/base-runtime-f26-1/kernel.spec
 tests/modules/specs/base-runtime-f26-1/profiles.json
 tests/modules/specs/base-runtime-f26-1/systemd.spec
 tests/modules/specs/base-runtime-f26-2/glibc.spec
 tests/modules/specs/base-runtime-rhel73-1/basesystem.spec
 tests/modules/specs/base-runtime-rhel73-1/bash.spec
 tests/modules/specs/base-runtime-rhel73-1/filesystem.spec
 tests/modules/specs/base-runtime-rhel73-1/glibc.spec
 tests/modules/specs/base-runtime-rhel73-1/kernel.spec
 tests/modules/specs/base-runtime-rhel73-1/systemd.spec
 tests/modules/specs/build.sh
 tests/modules/specs/httpd-2.2-1/httpd.spec
 tests/modules/specs/httpd-2.2-1/profiles.json
 tests/modules/specs/httpd-2.4-1/httpd.spec
 tests/modules/specs/httpd-2.4-1/libnghttp2.spec
 tests/modules/specs/httpd-2.4-2/httpd.spec
 tests/modules/specs/m4-1.4.18-1/m4.spec
 tests/modules/specs/m4-1.4.18-1/profiles.json
 tests/plugins/disabled.conf
 tests/plugins/lucky.conf
 tests/repos/@System.repo
 tests/repos/broken_deps.repo
 tests/repos/broken_group.repo
 tests/repos/distro.repo
 tests/repos/drpm/drpms/tour-5-1.noarch.drpm
 tests/repos/drpm/recreate
 tests/repos/drpm/repodata/00e5847bcfaa79556ddfd52e2dd49caf5b56f62621c4994bac6e36e54c880ad4-filelists.xml.gz
 tests/repos/drpm/repodata/32b62a8f543fc3f9b2a224bab06b847274192db22eeaec374185a40709a9d398-primary.xml.gz
 tests/repos/drpm/repodata/501f13c9f94997a8088dea3c09a7c38f569bbfec71399fc37d820ef2989820ab-prestodelta.xml.gz
 tests/repos/drpm/repodata/a1c55e45bc0d7de52a968828c10f41d0c92983886c4c0a21b26c5251d9509483-other.xml.gz
 tests/repos/drpm/repodata/repomd.xml
 tests/repos/main.repo
 tests/repos/main_comps.xml
 tests/repos/multilib.repo
 tests/repos/old_versions.repo
 tests/repos/rpm/mirrorlist
 tests/repos/rpm/recreate
 tests/repos/rpm/repodata/01471ffc16a1c17750d69143a53b8b3693fba2a31bd3f03ead6176adc9cb9c64-updateinfo.xml.gz
 tests/repos/rpm/repodata/324614ce8ad0918336251f79cc5b59adc56efb3fe5d4009f419f792fa8fe2649-other.xml.gz
 tests/repos/rpm/repodata/8194e855b947b3d394ccfa59ddc0f1bc00d74ed34d43f570b4208293510719ac-primary.xml.gz
 tests/repos/rpm/repodata/ae207ec9e54d7656b27feca26ebd99b4e894f7bba8785b673e7bdce8e8652581-filelists.xml.gz
 tests/repos/rpm/repodata/repomd.xml
 tests/repos/rpm/tour-4-4.noarch.rpm
 tests/repos/rpm/tour-5-0.noarch.rpm
 tests/repos/rpm/tour-5-1.noarch.rpm
 tests/repos/rpm/tour.spec
 tests/repos/rpm/updateinfo.xml
 tests/repos/search.repo
 tests/repos/third_party.repo
 tests/repos/updates.repo
 tox.ini
 scripts/update-copyright-years.sh
 AUTHORS
Copyright: 2012-2019, Red Hat, Inc.
License: GPL-2+

Files: dnf/base.py
 dnf/cli/cli.py
 dnf/cli/commands/__init__.py
 dnf/cli/main.py
 dnf/cli/output.py
Copyright: 2005, 2006, Duke University
  2012-2016, Red Hat, Inc.
License: GPL-2+

Files: dnf/exceptions.py
 dnf/rpm/miscutils.py
Copyright: 2003-2004, Duke University
License: GPL-2+

Files: etc/bash_completion.d/dnf
Copyright: 2013, (C) Elad Alfassa <elad@fedoraproject.org>
  2014-2015, (C) Igor Gnatenko <i.gnatenko.brain@gmail.com>
License: GPL-2+

Files: dnf/cli/completion_helper.py.in
Copyright: 2015, (C) Igor Gnatenko <i.gnatenko.brain@gmail.com>
  2016, (C) Red Hat, Inc.
License: GPL-2+

Files: dnf/yum/rpmtrans.py
Copyright: 2005, Duke University
  2007, Red Hat, Inc
License: GPL-2+

Files: tests/mock.py
Copyright: 2007-2012, Michael Foord & the mock team <fuzzyman AT voidspace DOT org DOT uk>
License: BSD-3-clause

Files: po/bn_IN.po
Copyright: 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/de.po
Copyright: 2011, Vinzenz Vietzke <vinz@fedoraproject.org>
 2011, Hendrik Richter <hendrikr@gnome.org>
 2011, Laurin <lineak@fedoraproject.org>
 2011, 2014, 2018 Fabian Affolter <fab@fedoraproject.org>
 2012, brummbq <yellowcake-@gmx.net>
 2012, 2014-2016, 2019, Mario Blättermann <mario.blaettermann@gmail.com>
 2012, 2014, 2017, Roman Spirgi <bigant@fedoraproject.org>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015, Nils-C. Fiedler <ncfiedler@gnome.org>
 2016-2018, Florian H. <postfuerflo@gmail.com>
 2016, Lisa Stemmler <lstemmle@redhat.com>
 2016-2017, Tobias Weise <tobias.weise@web.de>
 2017, Robert Scheck <robert@fedoraproject.org>
 2017, Thomas Eichhorn <tomislav@posteo.de>
 2017, Till Maas <opensource@till.name>
 2018, Ludek Janda <ljanda@redhat.com>
 2018, Paul Ritter <paul-ritter@gmx.net>
License: GPL-2+

Files: po/el.po
Copyright: 2011, Dimitris Glezos <glezos@indifex.com>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/en_GB.po
Copyright: 2011, Bruce Cowan <l10n@bcowan.fastmail.co.uk>
 2015, Jan Silhan <jsilhan@redhat.com>
 2017, Waldo Ribeiro <waldoribeiro@sapo.pt>
License: GPL-2+

Files: po/eu.po
Copyright: 2011, 2014-2015, assar <asiersar@yahoo.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015-2017, Asier Sarasua Garmendia <asier.sarasua@gmail.com>
License: GPL-2+

Files: po/fi.po
Copyright: 2011, Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015, 2017-2018, Jiri Grönroos <jiri.gronroos@iki.fi>
 2017, Toni Rantala <trantalafilo@gmail.com>
License: GPL-2+

Files: po/gu.po
Copyright: 2011, sweta <swkothar@redhat.com>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/he.po
Copyright: 2014, Rabin.IO <rabin@rabin.io>
 2015, Jan Silhan <jsilhan@redhat.com>
 2016, Niv Baehr <bloop93@gmail.com>
License: GPL-2+

Files: po/id.po
Copyright: 2011, Teguh Dwicaksana <dheche@songolimo.net>
 2014, La Ode Muh. Fadlun Akbar <fadlun.net@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2016, Teguh Dwicaksana <dheche@fedoraproject.org>
 2016, sentabi <sentabi@fedoraproject.org>
 2018, Andika Triwidada <andika@gmail.com>
License: GPL-2+

Files: po/ka.po
Copyright: 2015, George Machitidze <giomac@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/lt.po
Copyright: 2011, aurisc4 <aurisc4@gmail.com>
 2014-2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/ms.po
Copyright: 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/nb.po
Copyright: 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/pl.po
Copyright: 2011, 2014-2019, Piotr Drąg <piotrdrag@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/ru.po
Copyright: 2011, Misha Shnurapet <shnurapet AT fedoraproject.org>
 2014, kotl <mailbox-07@bk.ru>
 2014, 2017, Igor Gnatenko <i.gnatenko.brain@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015, Artem Vinokurov <vinokurov@tortstudio.com>
 2016-2019, Igor Gorbounov <igor.gorbounov@gmail.com>
License: GPL-2+

Files: po/sr.po
Copyright: 2015, Jan Silhan <jsilhan@redhat.com>
 2015, Momcilo Medic <medicmomcilo@gmail.com>
 2016-2017, 2019, Marko Kostic <marko.m.kostic@gmail.com>
License: GPL-2+

Files: po/sr@latin.po
Copyright: 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/sv.po
Copyright: 2011, 2014-2019, Göran Uddeborg <goeran@uddeborg.se>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/uk.po
Copyright: 2011, 2015-2019, Yuri Chornoivan <yurchor@ukr.net>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/ar.po
Copyright: 2017, AbdelHakim ALLAL <hakim.7x2uv@gmail.com>
License: GPL-2+

Files: po/kk.po
Copyright: 2015-2017, Baurzhan Muftakhidinov <baurthefirst@gmail.com>
License: GPL-2+

Files: po/zh_CN.po
Copyright: 2011, Adam  Pribyl <covex@lowlevel.cz>
 2011, zpavlas <zpavlas@redhat.com>
 2014, paveltizek <pavel@tizek.cz>
 2014, rexcze <rexcze@gmail.com>
 2014, zatloukal.frantisek <zatloukal.frantisek@gmail.com>
 2014, xMstSpider <zse@apgrco.com>
 2014, 2016, Jiri Eischmann <jiri@eischmann.cz>
 2015, zdenek <chmelarz@gmail.com
 2015, Jan Silhan <jsilhan@redhat.com>
 2015, Michal Pohorely <michal@pohorely.cz>
 2015-2017, Josef Hruška <hrusjos@gmail.com>
 2016, František Zatloukal <Zatloukal.Frantisek@gmail.com>
 2016-2018, Zdenek <chmelarz@gmail.com>
 2017, Marek Suchánek <m.suchanek.2@gmail.com>
 2018-2019, Daniel Rusek <mail@asciiwolf.com>
License: GPL-2+

Files: po/zh_TW.po
Copyright: 2015-2019, Cheng-Chia Tseng <pswo10680@gmail.com>
 2018, Peter Pan <pan93412@gmail.com>
License: GPL-2+

Files: po/bg.po
Copyright: 2015-2018, Valentin Laskov <laskov@festa.bg>
License: GPL-2+

Files: po/fur.po
Copyright: 2017-2018, Fabio Tomat <f.t.public@gmail.com>
License: GPL-2+

Files: po/hr.po
Copyright: 2016, Goran <goransocemo@gmail.com>
License: GPL-2+

Files: po/ml.po
Copyright: 2016, Naveej Ahamed <naveej.ahamed@wipro.com>
License: GPL-2+

Files: po/mr.po
Copyright: 2015, Abhijeet Kasurde <akasurde@redhat.com>
 2016, Parag <pnemade@redhat.com>
License: GPL-2+

Files: po/sq.po
Copyright: 2016, Anxhelo Lushka <an_xhelo@hotmail.com>
 2017, Enea Jahollari <jahollarienea14@gmail.com>
 2017, Mariana Balla <marianaballa848@gmail.com>
 2017, Sidorela Uku <uku.sidorela@gmail.com>
License: GPL-2+

Files: po/th.po
Copyright: 2015, Sukit Arseanrapoj <sukit.arseanrapoj@gmail.com>
License: GPL-2+

Files: po/tr.po
Copyright: 2015-2016, Akın Ömeroğlu <akinomeroglu@gmail.com>
 2016-2017, Emin Tufan Çetin <etcetin@gmail.com>
 2018, Muhammet Kara <muhammet.k@gmail.com>
 2019, Serdar Sağlam <teknomobil@msn.com>
License: GPL-2+

Files: po/sk.po
Copyright: 2015-2016, Dusan Kazik <prescott66@gmail.com>
 2016, feonsu <feonsu@gmail.com>
 2017, Matej Marusak <mmarusak@redhat.com>
License: GPL-2+

Files: po/pt_BR.po
Copyright: 2011, Cleiton cleitonlima <cleitonlima@lavabit.com>
 2011, ufa <ufa@technotroll.org>
 2015, jonataszv <jonatas.zv@openmailbox.org>
 2016-2017, Daniel Lara <danniel@fedoraproject.org>
 2017, Athos Ribeiro <athoscribeiro@gmail.com>
 2017, Bruno Furtado <bffurtado@gmail.com>
 2017, Frederico Henrique Gonçalves Lima <fred@fredericolima.com.br>
 2017, Mateus de Melo Santos <mateusms@tutanota.com>
 2017, Wellerson Jeremias Colombari <wellerson2004@yahoo.ca>
 2018, Adriano de Souza Xavier <adrianosoxav@gmail.com>
 2018, Ludek Janda <ljanda@redhat.com>
 2019, Caronte <caronte.tur@protonmail.com>
License: GPL-2+

Files: po/pt.po
Copyright: 2015, Miguel Sousa <migueljorgesousa@gmail.com>
 2016, Ricardo Pinto <ricardo.bigote@gmail.com>
 2016, pedro andrade <pmm.andrade@gmail.com>
 2017, Joao Almeida <intjalmeida@gmail.com>
 2017, Rodrigo de Araujo Sousa Fonseca <rodrigodearaujo@fedoraproject.org>
License: GPL-2+

Files: po/es.po
Copyright: 2011, beckerde <domingobecker@gmail.com>
 2011, Claudio Rodrigo Pereyra Diaz <elsupergomez@gmail.com>
 2011, 2015, Dennis Tobar <dennis.tobar@gmail.com>
 2014, mrkzboo <mrkzmrkz@gmail.com>
 2014-2015, Gerardo Rosales <grosale86@gmail.com>
 2015, Hernan Gabriel Alvarez Guerra <hernan.alvarez.guerra@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015-2016, William  Moreno Reyes <williamjmorenor@gmail.com>
 2015-2019, Máximo Castañeda Riloba <mcrcctm@gmail.com>
 2017, Eduard Lucena <x3mboy@fedoraproject.org>
 2017, Emilio Herrera <ehespinosa57@gmail.com>
 2018, Ludek Janda <ljanda@redhat.com>
 2019, Javier Blanco <javi.deb@gmail.com>
License: GPL-2+

Files: po/da.po
Copyright: 2014, Anders J. Sørensen
 2011, 2014-2015, Kris Thomsen <lakristho@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2017-2019, scootergrisen <scootergrisen@gmail.com>
License: GPL-2+

Files: po/it.po
Copyright: 2011, Guido Grazioli <guido.grazioli@gmail.com>
 2014, Gianluca Sforna <giallu@gmail.com>
 2014, 2017-2018, Germano Massullo <germano.massullo@gmail.com>
 2015, Andrea Masala <andrea.masala87@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2016-2017, Gregorio <devim@outlook.it>
 2016-2017, Luca Ciavatta <luca.ciavatta@gmail.com>
 2016-2017, Luigi Toscano <luigi.toscano@tiscali.it>
 2017, Alessio Ciregia <alciregi@gmail.com>
 2017, Davide Giunchi <davide@giunchi.net>
 2017-2018, Giovanni Grieco <giovanni.grc96@gmail.com>
 2018, Ludek Janda <ljanda@redhat.com>
License: GPL-2+

Files: po/ja.po
Copyright: 2011, Tadashi Jokagi <elf@elf.no-ip.org>
 2011, 2015, 2017, Hajime Taira <htaira@redhat.com>
 2014, Satoshi Matsumoto <kaorimatz@gmail.com>
 2014, Takayuki Ogawa <takayuki@compusophia.com>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015-2019, Ooyama Yosiyuki <qqke6wd9k@apricot.ocn.ne.jp>
 2018, Casey Jones <nahareport@live.com>
 2018, Ludek Janda <ljanda@redhat.com>
 2018, Noriko Mizumoto <noriko.mizumoto@gmail.com>
License: GPL-2+

Files: po/fr.po
Copyright: 2011, 2014, dominique bribanick <chepioq@gmail.com>
 2011, Kévin Raymond <shaiton@fedoraproject.org>
 2014, Clément David <c.david86@gmail.com>
 2014, David Snel-Larochette <toxn@free.fr>
 2014, 2017, Jérôme Fenal <jfenal@gmail.com>
 2016-2019, Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>
 2016-2017, José Fournier <jaaf64@zoraldia.com>
 2018, Ludek Janda <ljanda@redhat.com>
License: GPL-2+

Files: po/ca.po
Copyright: 2014-2015, Robert Antoni Buj i Gelonch
 2015, Jan Silhan <jsilhan@redhat.com>
 2015-2018, Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
 2016, David <rbndavid@gmail.com>
License: GPL-2+

Files: po/cs.po
Copyright: 2011, Adam  Pribyl <covex@lowlevel.cz>
 2011, zpavlas <zpavlas@redhat.com>
 2014, paveltizek <pavel@tizek.cz>
 2014, rexcze <rexcze@gmail.com>
 2014, zatloukal.frantisek <zatloukal.frantisek@gmail.com>
 2014, xMstSpider <zse@apgrco.com>
 2014, 2016, Jiri Eischmann <jiri@eischmann.cz>
 2015, Jan Silhan <jsilhan@redhat.com>
 2015, Michal Pohorely <michal@pohorely.cz>
 2015-2018, zdenek <chmelarz@gmail.com>
 2015-2017, Josef Hruška <hrusjos@gmail.com>
 2016, František Zatloukal <Zatloukal.Frantisek@gmail.com>
 2017, Marek Suchánek <m.suchanek.2@gmail.com>
 2018-2019, Daniel Rusek <mail@asciiwolf.com>
License: GPL-2+

Files: po/hu.po
Copyright: 2011, 2014, András Bögöly <ebogoly@gmail.com>
 2014, Peter Borsa <peter.borsa@gmail.com>
 2014, teknos.ferenc <teknos.ferenc@gmail.com>
 2014, 2017, Zoltan Hoppár <zoltanh721@fedoraproject.org>
 2016-2019, Meskó Balázs <meskobalazs@gmail.com>
License: GPL-2+

Files: po/pa.po
Copyright: 2011, 2014-2019, A S Alam <apreet.alam@gmail.com>
 2015, Jan Silhan <jsilhan@redhat.com>
License: GPL-2+

Files: po/ko.po
Copyright: 2015, MinWoo Joh <igtzhsou@naver.com>
 2016, Eun-Ju Kim <eukim@redhat.com>
 2018, Ludek Janda <ljanda@redhat.com>
License: GPL-2+

Files: po/nl.po
Copyright: 2016-2019, Geert Warrink <geert.warrink@onsnet.nu>
 2016-2017, Richard E. van der Luit <nippur@fedoraproject.org>
 2017, Corne van der Plas <vdplas@gmail.com>
License: GPL-2+

Files: po/eo.po
Copyright: 2019, Carmen Bianca Bakker <carmen@carmenbianca.eu>
License: GPL-2+

Files: po/fa.po
Copyright: 2019, Hesam Esfahlani <hesam.es@gmail.com>
License: GPL-2+

Files: po/fil.po
Copyright: 2018, Alvin Abuke <abuke.ac@gmail.com>
License: GPL-2+

Files: po/gd.po
Copyright: 2018, John Dulaney <jdulaney@fedoraproject.org
 2018, Marek Blaha <mblaha@redhat.com>>
License: GPL-2+

License: GPL-2+-and-trademark-notice
 This copyrighted material is made available to anyone wishing to use,
 modify, copy, or redistribute it subject to the terms and conditions of
 the GNU General Public License v.2, or (at your option) any later version.
 This program is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY expressed or implied, including the implied warranties of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
 Public License for more details.  You should have received a copy of the
 GNU General Public License along with this program; if not, write to the
 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
 source code or documentation are not subject to the GNU General Public
 License and may only be used or replicated with the express permission of
 Red Hat, Inc.
 .
 On Debian systems, the complete text of the GNU General Public
 License v2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the complete text of the GNU General Public
 License v2 can be found in `/usr/share/common-licenses/GPL-2'.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
 .
 * Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
 .
 * Neither the name of the author nor the names of Contributors
   may be used to endorse or promote products derived from this
   software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.