-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphotonos-urlhealth-5.0_202311291657.prn
990 lines (990 loc) · 500 KB
/
photonos-urlhealth-5.0_202311291657.prn
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
Spec,Source0 original,Modified Source0 for url health check,UrlHealth,UpdateAvailable,UpdateURL,HealthUpdateURL,Name,SHAName,UpdateDownloadName
abupdate.spec,abupdate,,0,,,,abupdate,,
acl.spec,http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz,http://download.savannah.gnu.org/releases/acl/acl-2.3.1.tar.gz,200,(same version),,,acl,%{name},
aide.spec,https://github.com/aide/aide/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/aide/aide/archive/refs/tags/v0.17.4.tar.gz,200,0.18.6,https://github.com/aide/aide/archive/refs/tags/v0.18.6.tar.gz,200,aide,%{name},aide-0.18.6.tar.gz
alsa-lib.spec,https://www.alsa-project.org/files/pub/lib/%{name}-%{version}.tar.bz2,https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.8.tar.bz2,200,1.2.10,https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.10.tar.bz2,200,alsa-lib,%{name},alsa-lib-1.2.10.tar.bz2
alsa-utils.spec,https://www.alsa-project.org/files/pub/utils/%{name}-%{version}.tar.bz2,https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.8.tar.bz2,200,1.2.10,https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.10.tar.bz2,200,alsa-utils,%{name},alsa-utils-1.2.10.tar.bz2
amdvlk.spec,https://github.com/GPUOpen-Drivers/AMDVLK/archive/refs/tags/%{name}-%{version}.tar.xz,https://github.com/GPUOpen-Drivers/AMDVLK/archive/refs/tags/v-2023.Q1.3.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/GPUOpen-Drivers/AMDVLK/archive/refs/tags/amdvlk-2023_q4_2.tar.xz,404,amdvlk,%{name},
ansible.spec,http://releases.ansible.com/ansible/%{name}-%{version}.tar.gz,https://github.com/ansible/ansible/archive/refs/tags/v2.14.2.tar.gz,200,2.16.0,https://github.com/ansible/ansible/archive/refs/tags/v2.16.0.tar.gz,200,ansible,%{name},ansible-2.16.0.tar.gz
ansible-community-general.spec,https://github.com/ansible-collections/community.general/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/ansible-collections/community.general/archive/refs/tags/6.3.0.tar.gz,200,8.0.2,https://github.com/ansible-collections/community.general/archive/refs/tags/8.0.2.tar.gz,200,ansible-community-general,%{name}-%{version},ansible-community-general-8.0.2.tar.gz
ansible-posix.spec,https://github.com/ansible-collections/ansible.posix/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/ansible-collections/ansible.posix/archive/refs/tags/1.5.1.tar.gz,200,1.5.2,https://github.com/ansible-collections/ansible.posix/archive/refs/tags/1.5.2.tar.gz,200,ansible-posix,%{name}-%{version},ansible-posix-1.5.2.tar.gz
ant-contrib.spec,https://packages.vmware.com/photon/photon_sources/1.0/%{name}-%{version}-src.tar.gz,https://packages.vmware.com/photon/photon_sources/1.0/ant-contrib-1.0b3-src.tar.gz,200,Info: Source0 contains a VMware internal url address.,,,ant-contrib,%{name},
apache-ant.spec,http://apache.mirrors.lucidnetworks.net/ant/source/%{name}-%{version}-src.tar.gz,https://github.com/apache/ant/archive/refs/tags/rel/1.10.12.tar.gz,200,1.10.14,https://github.com/apache/ant/archive/refs/tags/rel/1.10.14.tar.gz,200,apache-ant,%{name} hamcrest maven-ant-tasks,apache-ant-1.10.14.tar.gz
apache-maven.spec,https://github.com/apache/maven/archive/refs/tags/maven-%{version}.tar.gz,https://github.com/apache/maven/archive/refs/tags/maven-3.9.0.tar.gz,200,3.9.5,https://github.com/apache/maven/archive/refs/tags/maven-3.9.5.tar.gz,200,apache-maven,maven,maven-3.9.5.tar.gz
apache-tomcat10.spec,https://archive.apache.org/dist/tomcat/tomcat-10/v%{version}/src/%{_origname}-%{version}-src.tar.gz,https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.15/src/%{_origname}-10.1.15-src.tar.gz,substitution_unfinished,(same version),,,apache-tomcat,%{_origname} base,
apache-tomcat9.spec,https://archive.apache.org/dist/tomcat/tomcat-9/v%{version}/src/%{_origname}-%{version}-src.tar.gz,https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.82/src/%{_origname}-9.0.82-src.tar.gz,substitution_unfinished,(same version),,,apache-tomcat,%{_origname} base,
apache-tomcat-native.spec,https://dlcdn.apache.org/tomcat/tomcat-connectors/native/%{version}/source/tomcat-native-%{version}-src.tar.gz,https://github.com/apache/tomcat-native/archive/refs/tags/2.0.3.tar.gz,200,2.0.6,https://github.com/apache/tomcat-native/archive/refs/tags/2.0.6.tar.gz,200,apache-tomcat-native,tomcat-native,apache-tomcat-native-2.0.6.tar.gz
apparmor.spec,https://launchpad.net/%{name}/3.1/%{version}/+download/%{name}-%{version}.tar.gz,https://launchpad.net/apparmor/3.1/3.1.2/+download/apparmor-3.1.2.tar.gz,200,3.1.6,https://launchpad.net/apparmor/3.1/3.1.6/+download/apparmor-3.1.6.tar.gz,200,apparmor,%{name},apparmor-3.1.6.tar.gz
apr.spec,http://archive.apache.org/dist/%{name}/%{name}-%{version}.tar.gz,https://github.com/apache/apr/archive/refs/tags/1.7.4.tar.gz,200,(same version),,,apr,%{name},
apr-util.spec,http://archive.apache.org/dist/apr/%{name}-%{version}.tar.gz,https://github.com/apache/apr-util/archive/refs/tags/1.6.3.tar.gz,200,(same version),,,apr-util,%{name},
argon2.spec,https://github.com/P-H-C/phc-winner-argon2/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/P-H-C/phc-winner-argon2/archive/refs/tags/20190702.tar.gz,200,(same version),,,argon2,%{name},
asciidoc3.spec,https://asciidoc3.org/%{name}-%{version}.tar.gz,https://gitlab.com/asciidoc3/asciidoc3/-/archive/v3.2.3/asciidoc3-v3.2.3.tar.gz,200,(same version),,,asciidoc3,%{name},
at-spi2-core.spec,http://ftp.gnome.org/pub/gnome/sources/%{name}/2.46/%{name}-%{version}.tar.xz,https://github.com/GNOME/at-spi2-core/archive/refs/tags/AT_SPI2_CORE_2_46_0.tar.xz,200,2.50.0,http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/2.50/at-spi2-core-2.50.0.tar.xz,200,at-spi2-core,at-spi2-core,at-spi2-core-2.50.0.tar.xz
atftp.spec,http://sourceforge.net/projects/%{name}/files/latest/download/%{name}-%{version}.tar.gz,http://sourceforge.net/projects/atftp/files/latest/download/atftp-0.8.0.tar.gz,200,(same version),,,atftp,%{name},
atk.spec,http://ftp.gnome.org/pub/gnome/sources/%{name}/2.16/%{name}-%{version}.tar.xz,https://github.com/GNOME/atk/archive/refs/tags/2.38.0.tar.gz,200,(same version),,,atk,atk,
attr.spec,http://download.savannah.gnu.org/releases/attr/%{name}-%{version}.tar.gz,http://download.savannah.gnu.org/releases/attr/attr-2.5.1.tar.gz,200,(same version),,,attr,%{name},
audit.spec,http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz,https://github.com/linux-audit/audit-userspace/archive/refs/tags/v3.0.9.tar.gz,200,3.1.2,https://github.com/linux-audit/audit-userspace/archive/refs/tags/v3.1.2.tar.gz,200,audit,%{name},audit-3.1.2.tar.gz
aufs-util.spec,%{name}-%{version}.tar.gz,https://github.com/sfjro/aufs-linux/archive/refs/tags/v6.0.tar.gz,200,6.6,https://github.com/sfjro/aufs-linux/archive/refs/tags/v6.6.tar.gz,200,aufs-util,%{name} aufs-standalone-aufs6.0,aufs-util-6.6.tar.gz
authbind.spec,http://ftp.debian.org/debian/pool/main/a/%{name}/%{name}_%{version}.tar.gz,http://ftp.debian.org/debian/pool/main/a/authbind/authbind_2.1.3.tar.gz,200,(same version),,,authbind,%{name},
autoconf.spec,http://ftp.gnu.org/gnu/autoconf/%{name}-%{version}.tar.xz,https://github.com/autotools-mirror/autoconf/archive/refs/tags/v2.71.tar.gz,200,(same version),,,autoconf,%{name},
autoconf-archive.spec,http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-2022.09.03.tar.xz,200,2023.02.20,http://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-2023.02.20.tar.xz,200,autoconf-archive,%{name},autoconf-archive-2023.02.20.tar.xz
autofs.spec,http://www.kernel.org/pub/linux/daemons/%{name}/v5/%{name}-%{version}.tar.xz,http://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-5.1.8.tar.xz,200,5.1.9,http://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-5.1.9.tar.xz,200,autofs,%{name},autofs-5.1.9.tar.xz
autogen.spec,https://ftp.gnu.org/gnu/autogen/rel%{version}/%{name}-%{version}.tar.xz,https://ftp.gnu.org/gnu/autogen/rel5.18.16/autogen-5.18.16.tar.xz,200,(same version),,,autogen,%{name},
automake.spec,https://ftp.gnu.org/gnu/automake/%{name}-%{version}.tar.xz,https://github.com/autotools-mirror/automake/archive/refs/tags/v1.16.5.tar.gz,200,(same version),,,automake,%{name},
aws-sdk-cpp.spec,https://github.com/aws/aws-sdk-cpp/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/aws/aws-sdk-cpp/archive/refs/tags/1.11.117.tar.gz,200,1.11.212,https://github.com/aws/aws-sdk-cpp/archive/refs/tags/1.11.212.tar.gz,200,aws-sdk-cpp,%{name},aws-sdk-cpp-1.11.212.tar.gz
backward-cpp.spec,https://github.com/bombela/backward-cpp/archive/refs/tags/%{name}-v%{version}.tar.gz,https://github.com/bombela/backward-cpp/archive/refs/tags/v1.6.tar.gz,200,(same version),,,backward-cpp,%{name},
bash.spec,https://ftp.gnu.org/gnu/bash/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/bash/bash-5.2.tar.gz,200,5.2.21,https://ftp.gnu.org/gnu/bash/bash-5.2.21.tar.gz,200,bash,%{name},bash-5.2.21.tar.gz
bats.spec,https://github.com/bats-core/bats-core/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/bats-core/bats-core/archive/refs/tags/v1.8.2.tar.gz,200,1.10.0,https://github.com/bats-core/bats-core/archive/refs/tags/v1.10.0.tar.gz,200,bats,%{name},bats-1.10.0.tar.gz
bazel.spec,https://github.com/bazelbuild/bazel/releases/download/%{version}/%{name}-%{version}-dist.zip,https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel-5.3.2-dist.zip,200,6.4.0,https://github.com/bazelbuild/bazel/releases/download/6.4.0/bazel-6.4.0-dist.zip,200,bazel,%{name},bazel-6.4.0-dist.zip
bc.spec,https://ftp.gnu.org/gnu/bc/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/bc/bc-1.07.1.tar.gz,200,(same version),,,bc,bc,
bcc.spec,https://github.com/iovisor/bcc/archive/%{name}-%{version}.tar.gz,https://github.com/iovisor/bcc/archive/refs/tags/v0.28.0.tar.gz,200,(same version),,,bcc,%{name},
bindutils.spec,https://ftp.isc.org/isc/bind9/%{version}/bind-%{version}.tar.xz,https://github.com/isc-projects/bind9/archive/refs/tags/v9.19.14.tar.xz,200,9.19.18,https://ftp.isc.org/isc/bind9/9.19.18/bind-9.19.18.tar.xz,200,bindutils,bind,bind-9.19.18.tar.xz
binutils.spec,http://ftp.gnu.org/gnu/binutils/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/binutils/binutils-2.39.tar.xz,200,2.41,http://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz,200,binutils,binutils,binutils-2.41.tar.xz
bison.spec,http://ftp.gnu.org/gnu/bison/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/bison/bison-3.8.2.tar.xz,200,(same version),,,bison,%{name},
blktrace.spec,https://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git/snapshot/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git/snapshot/blktrace-1.3.0.tar.gz,200,(same version),,,blktrace,blktrace,
bluez.spec,http://www.kernel.org/pub/linux/bluetooth/bluez-%{version}.tar.xz,http://www.kernel.org/pub/linux/bluetooth/bluez-5.66.tar.xz,200,5.70,http://www.kernel.org/pub/linux/bluetooth/bluez-5.70.tar.xz,200,bluez,%{name},bluez-5.70.tar.xz
bluez-tools.spec,https://github.com/khvzak/bluez-tools.git/master/bluez-tools-%{version}.tar.gz,https://github.com/khvzak/bluez-tools.git/master/bluez-tools-0.2.0.20140808.tar.gz,404,Warning: Cannot detect correlating tags from the repo provided.,,,bluez-tools,%{name},
boost.spec,https://boostorg.jfrog.io/artifactory/main/release/%{version}/source/boost_%{main_version}.tar.bz2,https://github.com/boostorg/boost/archive/refs/tags/boost-1.80.0.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,https://boostorg.jfrog.io/artifactory/main/release/1_83_0/source/boost_%{main_version}.tar.bz2,404,boost,boost,
bpftrace.spec,https://github.com/iovisor/bpftrace/archive/%{name}-%{version}.tar.gz,https://github.com/iovisor/bpftrace/archive/refs/tags/v0.18.0.tar.gz,200,0.19.1,https://github.com/iovisor/bpftrace/archive/refs/tags/v0.19.1.tar.gz,200,bpftrace,%{name},bpftrace-0.19.1.tar.gz
bridge-utils.spec,https://mirrors.edge.kernel.org/pub/linux/utils/net/bridge-utils/%{name}-%{version}.tar.xz,https://mirrors.edge.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils-1.7.1.tar.xz,200,(same version),,,bridge-utils,%{name},
btrfs-progs.spec,https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/%{name}-v%{version}.tar.xz,https://github.com/kdave/btrfs-progs/archive/refs/tags/v6.1.3.tar.xz,200,6.6.2,https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.6.2.tar.xz,200,btrfs-progs,%{name},btrfs-progs-v6.6.2.tar.xz
bubblewrap.spec,https://github.com/projectatomic/bubblewrap/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/containers/bubblewrap/archive/refs/tags/v0.7.0.tar.gz,200,0.8.0,https://github.com/containers/bubblewrap/archive/refs/tags/v0.8.0.tar.gz,200,bubblewrap,bubblewrap,bubblewrap-0.8.0.tar.gz
byacc.spec,https://invisible-island.net/archives/%{name}/%{name}-%{byaccdate}.tgz,https://invisible-island.net/archives/byacc/byacc-20221106.tgz,200,20230521,https://invisible-island.net/archives/byacc/byacc-20221106.tgz,200,byacc,%{name},byacc-20221106.tgz
bzip2.spec,https://sourceware.org/pub/bzip2/%{name}-%{version}.tar.gz,https://github.com/libarchive/bzip2/archive/refs/tags/bzip2-1.0.8.tar.gz ,200,(same version),,,bzip2,%{name},
c-ares.spec,http://c-ares.haxx.se/download/%{name}-%{version}.tar.gz,https://github.com/c-ares/c-ares/archive/refs/tags/cares-1_19_1.tar.gz,200,1.22.1,https://github.com/c-ares/c-ares/archive/refs/tags/cares-1_22_1.tar.gz,200,c-ares,c-ares,cares-1_22_1.tar.gz
ca-certificates.spec,certdata.txt,,404,,,,ca-certificates,,
cairo.spec,http://cairographics.org/releases/%{name}-%{version}.tar.xz,https://gitlab.freedesktop.org/cairo/cairo/-/archive/1.17.6/cairo-1.17.6.tar.xz ,200,1.18.0,https://gitlab.freedesktop.org/cairo/cairo/-/archive/1.18.0/cairo-1.18.0.tar.xz ,200,cairo,%{name},cairo-1.18.0.tar.xz
calico.spec,https://github.com/projectcalico/calico/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/projectcalico/calico/archive/refs/tags/v3.26.1.tar.gz,200,3.26.4,https://github.com/projectcalico/calico/archive/refs/tags/v3.26.4.tar.gz,200,calico,calico,calico-3.26.4.tar.gz
calico-bgp-daemon.spec,https://github.com/projectcalico/calico-bgp-daemon/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/projectcalico/calico-bgp-daemon/archive/refs/tags/v0.2.2.tar.gz,200,(same version),,,calico-bgp-daemon,calico-bgp-daemon glide-cache-for-%{name},
calico-bird.spec,%{name}-%{version}.tar.gz,https://github.com/projectcalico/bird/archive/refs/tags/v0.3.3.tar.gz,200,(same version),,,calico-bird,calico-bird,
calico-libnetwork.spec,https://github.com/projectcalico/libnetwork-plugin/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/projectcalico/libnetwork-plugin/archive/refs/tags/v1.1.3.tar.gz,200,(same version),,,calico-libnetwork,calico-libnetwork glide-cache-for-%{name},
capstone.spec,https://github.com/aquynh/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/aquynh/capstone/archive/refs/tags/4.0.2.tar.gz,200,5.0.1,https://github.com/aquynh/capstone/archive/refs/tags/5.0.1.tar.gz,200,capstone,%{name},capstone-5.0.1.tar.gz
cassandra.spec,http://archive.apache.org/dist/cassandra/%{version}/apache-%{name}-%{version}-src.tar.gz,https://github.com/apache/cassandra/archive/refs/tags/cassandra-4.0.10.tar.gz ,200,4.1.3,https://github.com/apache/cassandra/archive/refs/tags/cassandra-4.1.3.tar.gz ,200,cassandra,apache-%{name},cassandra-4.1.3.tar.gz
cdrkit.spec,%{name}-%{version}.tar.gz,http://gd.tuwien.ac.at/utils/schilling/cdrtoolscdrkit-1.1.11.tar.gz,0,Warning: Source0 seems invalid and no other Official source has been found.,,,cdrkit,%{name},
cereal.spec,https://github.com/USCiLab/cereal/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/USCiLab/cereal/archive/refs/tags/v1.3.2.tar.gz,200,(same version),,,cereal,%{name},
check.spec,https://github.com/libcheck/check/archive/%{name}-%{version}.tar.gz,https://github.com/libcheck/check/archive/refs/tags/0.15.2.tar.gz,200,(same version),,,check,%{name},
checkpolicy.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/checkpolicy-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/checkpolicy-3.5.tar.gz,200,checkpolicy,%{name},checkpolicy-3.5.tar.gz
chkconfig.spec,http://fedorahosted.org/releases/c/h/chkconfig/%{name}-%{version}.tar.gz,http://fedorahosted.org/releases/c/h/chkconfig/chkconfig-1.21.tar.gz,200,,,,chkconfig,%{name},
chromium.spec,https://github.com/chromium/chromium/archive/%{name}-%{version}.tar.gz,https://github.com/chromium/chromium/archive/refs/tags/119.0.6045.176.tar.gz,200,121.0.6155.1,https://github.com/chromium/chromium/archive/refs/tags/121.0.6155.1.tar.gz,200,chromium,%{name} depot_tools,chromium-121.0.6155.1.tar.gz
chrony.spec,https://download.tuxfamily.org/chrony/chrony-%{version}.tar.gz,https://github.com/mlichvar/chrony/archive/refs/tags/4.3.tar.gz,200,4.4,https://github.com/mlichvar/chrony/archive/refs/tags/4.4.tar.gz,200,chrony,%{name},chrony-4.4.tar.gz
chrpath.spec,https://alioth.debian.org/frs/download.php/file/3979/%{name}-%{version}.tar.gz,,404,,,,chrpath,chrpath,
cifs-utils.spec,https://ftp.samba.org/pub/linux-cifs/cifs-utils/cifs-utils-%{version}.tar.bz2,https://ftp.samba.org/pub/linux-cifs/cifs-utils/cifs-utils-7.0.tar.bz2,200,(same version),,,cifs-utils,cifs-utils,
clang.spec,https://github.com/llvm/llvm-project/releases/tag/%{name}-%{version}.src.tar.xz,https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/clang-15.0.7.src.tar.xz,200,17.0.6,https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/clang-17.0.6.src.tar.xz,200,clang,%{name},clang-17.0.6.src.tar.xz
cloud-init.spec,https://launchpad.net/cloud-init/trunk/%{version}/+download/%{name}-%{version}.tar.gz,https://github.com/canonical/cloud-init/archive/refs/tags/23.3.2.tar.gz,200,23.3.3,https://github.com/canonical/cloud-init/archive/refs/tags/23.3.3.tar.gz,200,cloud-init,%{name},cloud-init-23.3.3.tar.gz
cloud-network-setup.spec,https://github.com/vmware/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/vmware/cloud-network-setup/archive/refs/tags/v0.2.2.tar.gz,200,(same version),,,cloud-network-setup,%{name},
cloud-utils.spec,https://launchpad.net/cloud-utils/trunk/%{version}/+download/cloud-utils-%{version}.tar.gz,https://github.com/canonical/cloud-utils/archive/refs/tags/0.32.tar.gz,200,0.33,https://github.com/canonical/cloud-utils/archive/refs/tags/0.33.tar.gz,200,cloud-utils,%{name},cloud-utils-0.33.tar.gz
cmake.spec,https://github.com/Kitware/CMake/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2.tar.gz,200,3.27.9,https://github.com/Kitware/CMake/releases/download/v3.27.9/cmake-3.27.9.tar.gz,200,cmake,%{name},cmake-3.27.9.tar.gz
cmocka.spec,https://cmocka.org/files/1.1/%{name}-%{version}.tar.xz,https://cmocka.org/files/1.1/cmocka-1.1.5.tar.xz,200,1.1.7,https://cmocka.org/files/1.1/cmocka-1.1.7.tar.xz,200,cmocka,%{name},cmocka-1.1.7.tar.xz
cni.spec,https://github.com/containernetworking/plugins/archive/%{name}-v%{version}.tar.gz,https://github.com/containernetworking/plugins/archive/refs/tags/v1.1.1.tar.gz,200,1.3.0,https://github.com/containernetworking/plugins/archive/refs/tags/v1.3.0.tar.gz,200,cni,%{name},cni-1.3.0.tar.gz
colm.spec,https://github.com/adrian-thurston/colm/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/adrian-thurston/colm/archive/refs/tags/0.14.7.tar.gz,200,(same version),,,colm,%{name},
commons-daemon.spec,https://mirrors.ocf.berkeley.edu/apache//commons/daemon/source/%{name}-%{version}-src.tar.gz,https://github.com/apache/commons-daemon/archive/refs/tags/commons-daemon-1.3.3.tar.gz,200,1.3.4,https://github.com/apache/commons-daemon/archive/refs/tags/commons-daemon-1.3.4.tar.gz,200,commons-daemon,%{name}-%{version}-src %{name}-%{version}-bin,commons-daemon-1.3.4.tar.gz
commons-httpclient.spec,https://archive.apache.org/dist/httpcomponents/%{name}/source/%{name}-%{version}-src.tar.gz,https://archive.apache.org/dist/httpcomponents/commons-httpclient/source/commons-httpclient-3.1-src.tar.gz,200,(same version),,,commons-httpclient,%{name} %{name}-buildrequires-jars,
conmon.spec,conmon-%{version}.tar.gz,https://github.com/containers/conmon/archive/refs/tags/v2.1.7.tar.gz,200,2.1.8,https://github.com/containers/conmon/archive/refs/tags/v2.1.8.tar.gz,200,conmon,%{name},conmon-2.1.8.tar.gz
conntrack-tools.spec,http://netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://www.netfilter.org/projects/conntrack-tools/files/conntrack-tools-1.4.7.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://netfilter.org/projects/conntrack-tools/files/conntrack-tools-1.4_8.tar.bz2,403,conntrack-tools,%{name},
consul.spec,https://github.com/hashicorp/consul/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/hashicorp/consul/archive/refs/tags/v1.14.8.tar.gz,200,1.17.0,https://github.com/hashicorp/consul/archive/refs/tags/v1.17.0.tar.gz,200,consul,%{name}-%{version},consul-1.17.0.tar.gz
containerd.spec,https://github.com/containerd/containerd/archive/%{name}-%{version}.tar.gz,https://github.com/containerd/containerd/archive/refs/tags/v1.6.21.tar.gz,200,1.7.9,https://github.com/containerd/containerd/archive/refs/tags/v1.7.9.tar.gz,200,containerd,%{name},containerd-1.7.9.tar.gz
containers-common.spec,%{name}-%{version}.tar.gz,https://github.com/containers/common/archive/refs/tags/v4.tar.gz,404,Warning: containers-common.spec Source0 version 4 is higher than detected latest version 0.57.0 .,,,containers-common,%{name},
copenapi.spec,%{name}-%{version}.tar.gz,https://www.github.com/vmware/copenapi/archive/refs/tags/v0.0.2.tar.gz,200,(same version),,,copenapi,copenapi,
coredns.spec,https://github.com/coredns/coredns/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/coredns/coredns/archive/refs/tags/v1.11.1.tar.gz,200,(same version),,,coredns,%{name},
coreutils-selinux.spec,http://ftp.gnu.org/gnu/coreutils/%{srcname}-%{version}.tar.xz,http://ftp.gnu.org/gnu/coreutils/coreutils-9.1.tar.xz,200,9.4,http://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.xz,200,coreutils,%{srcname},coreutils-9.4.tar.xz
coreutils.spec,http://ftp.gnu.org/gnu/coreutils/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/coreutils/coreutils-9.1.tar.xz,200,9.4,http://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.xz,200,coreutils,%{name},coreutils-9.4.tar.xz
cpio.spec,http://ftp.gnu.org/pub/gnu/cpio/%{name}-%{version}.tar.bz2,http://ftp.gnu.org/pub/gnu/cpio/cpio-2.13.tar.bz2,200,2.14,http://ftp.gnu.org/pub/gnu/cpio/cpio-2.14.tar.bz2,200,cpio,%{name},cpio-2.14.tar.bz2
cppcheck.spec,https://github.com/danmar/cppcheck/archive/%{name}-%{version}.tar.gz,https://github.com/danmar/cppcheck/archive/refs/tags/2.9.3.tar.gz,200,2.12.1,https://github.com/danmar/cppcheck/archive/refs/tags/2.12.1.tar.gz,200,cppcheck,%{name},cppcheck-2.12.1.tar.gz
cppunit.spec,https://sourceforge.net/projects/cppunit/files/%{name}/%{version}/%{name}-%{version}.tar.gz,https://sourceforge.net/projects/cppunit/files/cppunit/1.12.1/cppunit-1.12.1.tar.gz,200,(same version),,,cppunit,cppunit,
cpulimit.spec,https://sourceforge.net/projects/limitcpu/files/limitcpu/%{name}-%{version}.tar.gz,https://sourceforge.net/projects/limitcpu/files/limitcpu/cpulimit-2.8.tar.gz,200,3.0,https://sourceforge.net/projects/limitcpu/files/limitcpu/cpulimit-3.0.tar.gz,200,cpulimit,%{name},cpulimit-3.0.tar.gz
cracklib.spec,https://github.com/cracklib/cracklib/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/cracklib/cracklib/archive/refs/tags/v2.9.8.tar.gz ,200,2.9.11,https://github.com/cracklib/cracklib/archive/refs/tags/v2.9.11.tar.gz ,200,cracklib,%{name}-%{version} %{name}-words-%{version},cracklib-2.9.11.tar.gz
crash.spec,http://people.redhat.com/anderson/crash-%{version}.tar.gz,http://people.redhat.com/anderson/crash-8.0.2.tar.gz,404,Warning: Source0 seems invalid and no other Official source has been found.,,,crash,%{name} crash-gcore gdb,
createrepo_c.spec,https://github.com/rpm-software-management/createrepo_c/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/rpm-software-management/createrepo_c/archive/refs/tags/0.20.1.tar.gz,200,1.0.2,https://github.com/rpm-software-management/createrepo_c/archive/refs/tags/1.0.2.tar.gz,200,createrepo_c,%{name},createrepo_c-1.0.2.tar.gz
cri-tools.spec,https://github.com/kubernetes-incubator/%{name}/releases/tag/archive/%{name}-%{version}.tar.gz,https://github.com/kubernetes-sigs/cri-tools/archive/refs/tags/v1.22.0.tar.gz,200,1.28.0,https://github.com/kubernetes-sigs/cri-tools/archive/refs/tags/v1.28.0.tar.gz,200,cri-tools,%{name}-%{version}.tar.gz,cri-tools-1.28.0.tar.gz
cronie.spec,https://github.com/cronie-crond/cronie/releases/download/cronie-%{version}/cronie-%{version}.tar.gz,https://github.com/cronie-crond/cronie/releases/download/cronie-1.6.1/cronie-1.6.1.tar.gz,200,1.7.0,https://github.com/cronie-crond/cronie/releases/download/cronie-1.7.0/cronie-1.7.0.tar.gz,200,cronie,cronie,cronie-1.7.0.tar.gz
crun.spec,https://github.com/containers/crun/releases/download/%{version}/%{name}-%{version}.tar.xz,https://github.com/containers/crun/releases/download/1.8/crun-1.8.tar.xz,200,1.12,https://github.com/containers/crun/releases/download/1.12/crun-1.12.tar.xz,200,crun,crun,crun-1.12.tar.xz
cryptsetup.spec,%{name}-v%{version}.tar.gz,https://github.com/mbroz/cryptsetup/archive/refs/tags/v2.4.3.tar.gz,200,2.6.1,https://github.com/mbroz/cryptsetup/archive/refs/tags/v2.6.1.tar.gz,200,cryptsetup,%{name},cryptsetup-2.6.1.tar.gz
cups.spec,https://github.com/OpenPrinting/cups/releases/download/v%{version}/cups-%{version}.tar.gz,https://github.com/OpenPrinting/cups/archive/refs/tags/v2.4.7.tar.gz,200,(same version),,,cups,%{name},
curl.spec,http://curl.haxx.se/download/%{name}-%{version}.tar.xz,http://curl.haxx.se/download/curl-8.1.2.tar.xz,200,8.4.0,http://curl.haxx.se/download/curl-8.4.0.tar.xz,200,curl,%{name},curl-8.4.0.tar.xz
cve-check-tool.spec,https://github.com/clearlinux/cve-check-tool/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/clearlinux/cve-check-tool/archive/refs/tags/v5.6.4.1.tar.gz,404,Warning: repo isn't maintained anymore.,,,cve-check-tool,%{name},
cyrus-sasl.spec,https://github.com/cyrusimap/cyrus-sasl/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/cyrusimap/cyrus-sasl/archive/refs/tags/cyrus-sasl-2.1.28.tar.gz ,200,(same version),,,cyrus-sasl,%{name},
cython3.spec,https://github.com/cython/cython/archive/Cython-%{version}.tar.gz,https://github.com/cython/cython/archive/refs/tags/0.29.32.tar.gz,200,3.0.6,https://github.com/cython/cython/archive/refs/tags/3.0.6.tar.gz,200,cython3,Cython,cython3-3.0.6.tar.gz
dbus.spec,http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.xz,http://dbus.freedesktop.org/releases/dbus/dbus-1.15.4.tar.xz,200,1.15.8,http://dbus.freedesktop.org/releases/dbus/dbus-1.15.8.tar.xz,200,dbus,%{name},dbus-1.15.8.tar.xz
dbus-broker.spec,https://github.com/bus1/dbus-broker/releases/download/v%{version}/dbus-broker-%{version}.tar.xz,https://github.com/bus1/dbus-broker/releases/download/v33/dbus-broker-33.tar.xz,200,(same version),,,dbus-broker,dbus-broker,
dbus-glib.spec,http://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz,http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.112.tar.gz,200,(same version),,,dbus-glib,%{name},
dbus-python.spec,http://dbus.freedesktop.org/releases/dbus-python/dbus-python-%{version}.tar.gz,http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.3.2.tar.gz,200,(same version),,,dbus-python,,
dbxtool.spec,https://github.com/rhboot/dbxtool/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2,https://github.com/rhboot/dbxtool/releases/download/dbxtool-8/dbxtool-8.tar.bz2,200,(same version),,,dbxtool,dbxtool,
ddclient.spec,http://downloads.sourceforge.net/project/ddclient/ddclient/ddclient-%{version}.tar.gz,http://downloads.sourceforge.net/project/ddclient/ddclient/ddclient-3.9.1.tar.gz,200,(same version),,,ddclient,ddclient,
debugedit.spec,https://sourceware.org/ftp/debugedit/%{version}/%{name}-%{version}.tar.xz,https://sourceware.org/ftp/debugedit/5.0/debugedit-5.0.tar.xz,200,(same version),,,debugedit,%{name},
dejagnu.spec,https://ftp.gnu.org/pub/gnu/dejagnu/%{name}-%{version}.tar.gz,https://ftp.gnu.org/pub/gnu/dejagnu/dejagnu-1.6.2.tar.gz,200,1.6.3,https://ftp.gnu.org/pub/gnu/dejagnu/dejagnu-1.6.3.tar.gz,200,dejagnu,dejagnu,dejagnu-1.6.3.tar.gz
dejavu-fonts.spec,http://sourceforge.net/projects/dejavu/files/dejavu/%{version}/dejavu-fonts-ttf-%{version}.tar.bz2,http://sourceforge.net/projects/dejavu/files/dejavu/2.37/dejavu-fonts-ttf-2.37.tar.bz2,200,(same version),,,dejavu-fonts,dejavu-fonts-ttf,
device-mapper-multipath.spec,https://github.com/opensvc/multipath-tools/archive/refs/tags/multipath-tools-%{version}.tar.gz,https://github.com/opensvc/multipath-tools/archive/refs/tags/0.9.4.tar.gz,200,0.9.7,https://github.com/opensvc/multipath-tools/archive/refs/tags/0.9.7.tar.gz,200,device-mapper-multipath,multipath-tools,device-mapper-multipath-0.9.7.tar.gz
dhcp.spec,ftp://ftp.isc.org/isc/dhcp/${version}/%{name}-%{version}.tar.gz,ftp://ftp.isc.org/isc/dhcp/${version}/dhcp-4.4.3.tar.gz,substitution_unfinished,Warning: repo isn't maintained anymore. See https://www.isc.org/dhcp_migration/,,,dhcp,dhcp,
dialog.spec,https://invisible-mirror.net/archives/dialog/%{name}-%{version}-%{dialogsubversion}.tgz,https://invisible-island.net/archives/dialog/dialog-1.3-20220728.tgz,200,1.3-20231002,https://invisible-island.net/archives/dialog/dialog-1.3-20231002.tgz,200,dialog,%{name},dialog-1.3-20231002.tgz
diffutils.spec,http://ftp.gnu.org/gnu/diffutils/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/diffutils/diffutils-3.8.tar.xz,200,3.10,http://ftp.gnu.org/gnu/diffutils/diffutils-3.10.tar.xz,200,diffutils,%{name},diffutils-3.10.tar.xz
ding-libs.spec,https://github.com/SSSD/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SSSD/ding-libs/releases/download/0.6.2/ding-libs-0.6.2.tar.gz,200,(same version),,,ding-libs,%{name},
distcc.spec,https://github.com/distcc/distcc/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/distcc/distcc/archive/v3.4/distcc-3.4.tar.gz,200,(same version),,,distcc,%{name},
distrib-compat.spec,%{name}-%{version}.tar.bz2,http://photon.orgdistrib-compat-0.1.tar.bz2,0,Info: Source0 contains a VMware internal url address.,,,distrib-compat,%{name},
dkms.spec,https://github.com/dell/dkms/archive/%{name}-%{version}.tar.gz,https://github.com/dell/dkms/archive/refs/tags/v3.0.10.tar.gz,200,3.0.12,https://github.com/dell/dkms/archive/refs/tags/v3.0.12.tar.gz,200,dkms,%{name},dkms-3.0.12.tar.gz
dmidecode.spec,http://download.savannah.gnu.org/releases/dmidecode/%{name}-%{version}.tar.xz,http://download.savannah.gnu.org/releases/dmidecode/dmidecode-3.5.tar.xz,200,(same version),,,dmidecode,%{name},
dnsmasq.spec,https://thekelleys.org.uk/dnsmasq/%{name}-%{version}.tar.xz,https://thekelleys.org.uk/dnsmasq/dnsmasq-2.89.tar.xz,200,(same version),,,dnsmasq,%{name},
docbook-xml.spec,http://www.docbook.org/xml/4.5/%{name}-%{version}.zip,https://docbook.org/xml/4.5/docbook-4.5.zip,404,5.0.1,https://docbook.org/xml/5.0.1/docbook-5.0.1.zip,200,docbook-xml,docbook-xml,docbook-5.0.1.zip
docbook-xsl.spec,http://downloads.sourceforge.net/docbook/%{name}-%{version}.tar.bz2,http://downloads.sourceforge.net/docbook/docbook-xsl-1.79.1.tar.bz2,200,(same version),,,docbook-xsl,docbook-xsl,
docker.spec,https://github.com/moby/moby/archive/moby-%{version}.tar.gz,https://github.com/moby/moby/archive/refs/tags/v24.0.5.tar.gz,404,24.0.7,https://github.com/moby/moby/archive/refs/tags/v24.0.7.tar.gz,200,docker,moby tini libnetwork docker-cli,docker-24.0.7.tar.gz
docker-compose.spec,https://github.com/docker/compose/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz,https://github.com/docker/compose/archive/refs/tags/v2.20.2.tar.gz#/docker-compose-2.20.2.tar.gz,200,2.23.3,https://github.com/docker/compose/archive/refs/tags/v2.23.3.tar.gz#/docker-compose-2.23.3.tar.gz,200,docker-compose,%{name},docker-compose-2.23.3.tar.gz
docker-py.spec,https://github.com/docker/docker-py/releases/download/%{version}/docker-%{version}.tar.gz,https://github.com/docker/docker-py/releases/download/6.0.0/docker-6.0.0.tar.gz,200,6.1.3,https://github.com/docker/docker-py/releases/download/6.1.3/docker-6.1.3.tar.gz,200,docker-py,docker,docker-6.1.3.tar.gz
docker-pycreds.spec,https://github.com/shin-/dockerpy-creds/archive/refs/tags/docker-pycreds-%{version}.tar.gz,https://github.com/shin-/dockerpy-creds/archive/refs/tags/0.4.0.tar.gz,200,(same version),,,docker-pycreds,docker-pycreds,
dool.spec,https://github.com/scottchiefbaker/dool/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/scottchiefbaker/dool/archive/refs/tags/v1.2.0.tar.gz,200,1.3.0,https://github.com/scottchiefbaker/dool/archive/refs/tags/v1.3.0.tar.gz,200,dool,%{name},dool-1.3.0.tar.gz
dos2unix.spec,https://waterlan.home.xs4all.nl/dos2unix/%{name}-%{version}.tar.gz,https://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.4.3.tar.gz,200,7.5.1,https://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.5.1.tar.gz,200,dos2unix,%{name},dos2unix-7.5.1.tar.gz
dosfstools.spec,http://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz,http://github.com/dosfstools/dosfstools/releases/download/v4.2/dosfstools-4.2.tar.gz,200,(same version),,,dosfstools,%{name},
dotnet-runtime.spec,%{name}-%{version}-linux-x64.tar.gz,https://github.com/dotnet/runtime/archive/refs/tags/v7.0.5.tar.gz,200,8.0.0,https://github.com/dotnet/runtime/archive/refs/tags/v8.0.0.tar.gz,200,dotnet-runtime,%{name},dotnet-runtime-8.0.0.tar.gz
dotnet-sdk.spec,%{name}-%{version}-linux-x64.tar.gz,https://github.com/dotnet/sdk/archive/refs/tags/v7.0.203.tar.gz,200,8.0.100,https://github.com/dotnet/sdk/archive/refs/tags/v8.0.100.tar.gz,200,dotnet-sdk,%{name},dotnet-sdk-8.0.100.tar.gz
double-conversion.spec,https://github.com/google/double-conversion/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/google/double-conversion/archive/refs/tags/v3.2.1.tar.gz,200,3.3.0,https://github.com/google/double-conversion/archive/refs/tags/v3.3.0.tar.gz,200,double-conversion,double-conversion,double-conversion-3.3.0.tar.gz
doxygen.spec,http://doxygen.nl/files/doxygen-%{version}.src.tar.gz,https://github.com/doxygen/doxygen/archive/refs/tags/Release_1_9_5.tar.gz,200,1.9.8,http://doxygen.nl/files/doxygen-1.9.8.src.tar.gz,200,doxygen,%{name},doxygen-1.9.8.src.tar.gz
dracut.spec,https://github.com/dracutdevs/dracut/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/dracutdevs/dracut/archive/refs/tags/059.tar.gz,200,(same version),,,dracut,%{name},
drpm.spec,https://github.com/rpm-software-management/drpm/releases/download/%{version}/drpm-%{version}.tar.bz2,https://github.com/rpm-software-management/drpm/releases/download/0.5.1/drpm-0.5.1.tar.bz2,200,0.5.2,https://github.com/rpm-software-management/drpm/releases/download/0.5.2/drpm-0.5.2.tar.bz2,200,drpm,%{name},drpm-0.5.2.tar.bz2
dtb-raspberrypi.spec,https://github.com/raspberrypi/linux/archive/rpi-linux-%{version}.tar.gz,https://github.com/raspberrypi/linux/archive/rpi-linux-6.1.10.2023.02.28.tar.gz,404,Warning: dtb-raspberrypi.spec Source0 version 6.1.10.2023.02.28 is higher than detected latest version 1.20230405 .,,,dtb-raspberrypi,rpi-linux,
dtc.spec,https://www.kernel.org/pub/software/utils/%{name}/%{name}-%{version}.tar.gz,https://www.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.gz,200,1.7.0,https://www.kernel.org/pub/software/utils/dtc/dtc-1.7.0.tar.gz,200,dtc,%{name},dtc-1.7.0.tar.gz
duktape.spec,http://duktape.org/%{name}-%{version}.tar.xz,https://github.com/svaarala/duktape/archive/refs/tags/v2.7.0.tar.gz,200,(same version),,,duktape,%{name},
dwarves.spec,http://fedorapeople.org/~acme/dwarves/%{name}-%{version}.tar.xz,http://fedorapeople.org/~acme/dwarves/dwarves-1.24.tar.xz,200,1.25,http://fedorapeople.org/~acme/dwarves/dwarves-1.25.tar.xz,200,dwarves,%{name}-%{version},dwarves-1.25.tar.xz
dwz.spec,https://sourceware.org/ftp/dwz/releases/%{name}-%{version}.tar.xz,https://sourceware.org/ftp/dwz/releases/dwz-0.15.tar.xz,200,(same version),,,dwz,%{name},
e2fsprogs.spec,http://prdownloads.sourceforge.net/e2fsprogs/%{name}-%{version}.tar.gz,http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.46.5.tar.gz,200,1.47.0,http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.47.0.tar.gz,200,e2fsprogs,%{name},e2fsprogs-1.47.0.tar.gz
ebtables.spec,https://www.netfilter.org/pub/ebtables/%{name}-%{version}.tar.gz,https://www.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz,200,(same version),,,ebtables,%{name},
ed.spec,https://fossies.org/linux/privat/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/ed/ed-1.19.tar.lz,200,(same version),,,ed,ed,
edgex.spec,https://github.com/edgexfoundry/edgex-go/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/edgexfoundry/edgex-go/archive/refs/tags/v2.2.0.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/edgexfoundry/edgex-go/archive/refs/tags/edgex-v3_1_0.tar.gz,404,edgex,%{name},
efibootmgr.spec,https://github.com/rhinstaller/efibootmgr/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/rhboot/efibootmgr/archive/refs/tags/18.tar.gz,200,(same version),,,efibootmgr,%{name},
efivar.spec,https://github.com/rhboot/efivar/releases/download/%{version}/%{name}-%{version}.tar.bz2,https://github.com/rhboot/efivar/releases/download/38/efivar-38.tar.bz2,200,(same version),,,efivar,%{name},
elfutils.spec,https://sourceware.org/elfutils/ftp/%{version}/%{name}-%{version}.tar.bz2,https://sourceware.org/elfutils/ftp/0.189/elfutils-0.189.tar.bz2,200,(same version),,,elfutils,%{name},
elixir.spec,https://github.com/elixir-lang/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/elixir-lang/elixir/archive/v1.14.2/elixir-1.14.2.tar.gz,200,1.15.7,https://github.com/elixir-lang/elixir/archive/v1.15.7/elixir-1.15.7.tar.gz,200,elixir,%{name},elixir-1.15.7.tar.gz
emacs.spec,https://ftp.gnu.org/gnu/emacs/%{name}-%{version}.tar.xz,https://ftp.gnu.org/gnu/emacs/emacs-28.2.tar.xz,200,29.1,https://ftp.gnu.org/gnu/emacs/emacs-29.1.tar.xz,200,emacs,%{name},emacs-29.1.tar.xz
erlang.spec,https://github.com/erlang/otp/archive/refs/tags/OTP-%{version}.tar.gz,https://github.com/erlang/otp/archive/refs/tags/OTP-25.1.2.tar.gz,200,26.1.2,https://github.com/erlang/otp/archive/refs/tags/OTP-26.1.2.tar.gz,200,erlang,OTP,OTP-26.1.2.tar.gz
erlang-sd_notify.spec,https://github.com/systemd/erlang-%{realname}/archive/%{name}-%{version}.tar.gz,https://github.com/systemd/erlang-sd_notify/archive/refs/tags/v1.1.tar.gz,200,(same version),,,erlang-sd_notify,%{name},
etcd.spec,https://github.com/etcd-io/etcd/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/etcd-io/etcd/archive/refs/tags/v3.5.9.tar.gz,200,3.5.10,https://github.com/etcd-io/etcd/archive/refs/tags/v3.5.10.tar.gz,200,etcd,etcd,etcd-3.5.10.tar.gz
ethtool.spec,https://www.kernel.org/pub/software/network/%{name}/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/software/network/ethtool/ethtool-6.1.tar.xz,200,6.6,https://www.kernel.org/pub/software/network/ethtool/ethtool-6.6.tar.xz,200,ethtool,%{name},ethtool-6.6.tar.xz
eventlog.spec,https://www.balabit.com/downloads/files/eventlog/0.2/%{name}_%{version}.tar.gz,https://www.balabit.com/downloads/files/eventlog/0.2/eventlog_0.2.12.tar.gz,200,,,,eventlog,%{name},
expat.spec,https://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.xz,https://sourceforge.net/projects/expat/files/expat/2.5.0/expat-2.5.0.tar.xz,200,(same version),,,expat,%{name},
expect.spec,https://sourceforge.net/projects/%{name}/files/Expect/%{version}/%{name}%{version}.tar.gz,https://sourceforge.net/projects/expect/files/Expect/5.45.4/expect5.45.4.tar.gz,200,(same version),,,expect,%{name},
fail2ban.spec,https://github.com/%{name}/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/fail2ban/fail2ban/archive/refs/tags/1.0.2.tar.gz,200,(same version),,,fail2ban,%{name},
fakeroot-ng.spec,http://downloads.sourceforge.net/project/fakerootng/fakeroot-ng/%{version}/fakeroot-ng-%{version}.tar.gz,http://downloads.sourceforge.net/project/fakerootng/fakeroot-ng/0.18/fakeroot-ng-0.18.tar.gz,200,(same version),,,fakeroot-ng,%{name},
falco.spec,https://github.com/falcosecurity/falco/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/falcosecurity/falco/archive/refs/tags/0.32.2.tar.gz,200,0.36.2,https://github.com/falcosecurity/falco/archive/refs/tags/0.36.2.tar.gz,200,falco,%{name},falco-0.36.2.tar.gz
fatrace.spec,https://launchpad.net/fatrace/trunk/%{version}/+download/%{name}-%{version}.tar.bz2,https://github.com/martinpitt/fatrace/archive/refs/tags/0.15.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,https://launchpad.net/fatrace/trunk/0_17_0/+download/fatrace-0_17_0.tar.bz2,404,fatrace,fatrace,
file.spec,ftp://ftp.astron.com/pub/file/%{name}-%{version}.tar.gz,http://ftp.astron.com/pub/file/file-5.43.tar.gz,200,5.45,http://ftp.astron.com/pub/file/file-5.45.tar.gz,200,file,file,file-5.45.tar.gz
findutils.spec,http://ftp.gnu.org/gnu/findutils/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/findutils/findutils-4.9.0.tar.xz,200,(same version),,,findutils,%{name},
finger.spec,ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/bsd-finger-%{version}.tar.gz,ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/bsd-finger-0.17.tar.gz,0,Warning: Source0 seems invalid and no other Official source has been found.,,,finger,bsd-finger,
fio.spec,https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio.git/snapshot/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio.git/snapshot/fio-3.33.tar.gz,200,3.34,https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio.git/snapshot/fio-3.34.tar.gz,200,fio,%{name},fio-3.34.tar.gz
flannel.spec,https://github.com/coreos/flannel/archive/%{name}-%{version}.tar.gz,https://github.com/coreos/flannel/archive/refs/tags/v0.22.0.tar.gz,200,0.23.0,https://github.com/coreos/flannel/archive/refs/tags/v0.23.0.tar.gz,200,flannel,flannel,flannel-0.23.0.tar.gz
flex.spec,https://github.com/westes/flex/releases/%{name}-%{version}.tar.gz,https://github.com/westes/flex/archive/refs/tags/v2.6.4.tar.gz,200,(same version),,,flex,flex,
font-util.spec,http://ftp.x.org/pub/individual/font/%{name}-%{version}.tar.gz,http://ftp.x.org/pub/individual/font/font-util-1.3.3.tar.gz,200,1.4.1,http://ftp.x.org/pub/individual/font/font-util-1.4.1.tar.gz,200,font-util,font-util,font-util-1.4.1.tar.gz
fontconfig.spec,https://www.freedesktop.org/software/fontconfig/release/%{name}-%{version}.tar.gz,https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.14.1.tar.gz,200,2.14.2,https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.14.2.tar.gz,200,fontconfig,fontconfig,fontconfig-2.14.2.tar.gz
fping.spec,http://fping.org/dist/%{name}-%{version}.tar.gz,https://github.com/schweikert/fping/archive/refs/tags/v5.1.tar.gz,200,(same version),,,fping,fping,
freetds.spec,https://www.freetds.org/files/stable/%{name}-%{version}.tar.gz,https://github.com/FreeTDS/freetds/archive/refs/tags/v1.3.10.tar.gz,200,,,,freetds,%{name},
freetype2.spec,http://download.savannah.gnu.org/releases/freetype/freetype-%{version}.tar.gz,http://download.savannah.gnu.org/releases/freetype/freetype-2.13.0.tar.gz,200,2.13.2,http://download.savannah.gnu.org/releases/freetype/freetype-2.13.2.tar.gz,200,freetype2,freetype,freetype-2.13.2.tar.gz
fribidi.spec,https://github.com/fribidi/fribidi/releases/download/v%{version}/%{name}-%{version}.tar.xz,https://github.com/fribidi/fribidi/archive/refs/tags/v1.0.12.tar.xz,200,1.0.13,https://github.com/fribidi/fribidi/releases/download/v1.0.13/fribidi-1.0.13.tar.xz,200,fribidi,%{name},fribidi-1.0.13.tar.xz
frr.spec,https://github.com/FRRouting/frr/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/FRRouting/frr/archive/refs/tags/frr-8.5.2.tar.gz,200,9.1,https://github.com/FRRouting/frr/archive/refs/tags/frr-9.1.tar.gz,200,frr,%{name},frr-9.1.tar.gz
fsarchiver.spec,https://github.com/fdupoux/fsarchiver/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/fdupoux/fsarchiver/releases/download/0.8.6/fsarchiver-0.8.6.tar.gz,200,0.8.7,https://github.com/fdupoux/fsarchiver/releases/download/0.8.7/fsarchiver-0.8.7.tar.gz,200,fsarchiver,%{name},fsarchiver-0.8.7.tar.gz
fuse.spec,https://github.com/libfuse/libfuse/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz,200,3.16.2,https://github.com/libfuse/libfuse/releases/download/fuse-3.16.2/fuse-3.16.2.tar.gz,200,fuse,fuse,fuse-3.16.2.tar.gz
fuse3.spec,https://github.com/libfuse/libfuse/archive/%{name}-%{version}.tar.gz,https://github.com/libfuse/libfuse/archive/fuse-3.12.0.tar.gz,200,3.16.2,https://github.com/libfuse/libfuse/archive/fuse-3.16.2.tar.gz,200,fuse,fuse3,fuse-3.16.2.tar.gz
fuse-overlayfs.spec,https://github.com/containers/fuse-overlayfs/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.12.tar.gz,200,1.13,https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.13.tar.gz,200,fuse-overlayfs,%{name},fuse-overlayfs-1.13.tar.gz
fuse-overlayfs-snapshotter.spec,https://github.com/containerd/fuse-overlayfs-snapshotter/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.0.6.tar.gz,404,1.13,https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.13.tar.gz,200,fuse-overlayfs-snapshotter,%{name},fuse-overlayfs-snapshotter-1.13.tar.gz
gawk.spec,http://ftp.gnu.org/gnu/gawk/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gawk/gawk-5.1.1.tar.xz,200,5.3.0,http://ftp.gnu.org/gnu/gawk/gawk-5.3.0.tar.xz,200,gawk,%{name},gawk-5.3.0.tar.xz
gc.spec,http://www.hboehm.info/gc/gc_source/%{name}-%{version}.tar.gz,http://www.hboehm.info/gc/gc_source/gc-8.2.2.tar.gz,200,8.2.4,http://www.hboehm.info/gc/gc_source/gc-8.2.4.tar.gz,200,gc,%{name},gc-8.2.4.tar.gz
gcc.spec,http://ftp.gnu.org/gnu/gcc/%{name}-%{version}/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gcc/gcc-12.2.0/gcc-12.2.0.tar.xz,200,(same version),,,gcc,%{name},
GConf.spec,http://ftp.gnome.org/pub/gnome/sources/%{name}/3.2/%{name}-%{version}.tar.xz,http://ftp.gnome.org/pub/gnome/sources/GConf/3.2/GConf-3.2.6.tar.xz,200,(same version),,,GConf,%{name},
gcovr.spec,https://github.com/gcovr/gcovr/archive/%{name}-%{version}.tar.gz,https://github.com/gcovr/gcovr/archive/refs/tags/5.2.tar.gz,200,6.0,https://github.com/gcovr/gcovr/archive/refs/tags/6.0.tar.gz,200,gcovr,%{name},gcovr-6.0.tar.gz
gdb.spec,http://ftp.gnu.org/gnu/gdb/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gdb/gdb-13.2.tar.xz,200,(same version),,,gdb,%{name},
gdbm.spec,http://ftp.gnu.org/gnu/gdbm/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/gdbm/gdbm-1.23.tar.gz,200,(same version),,,gdbm,%{name},
gdk-pixbuf.spec,http://ftp.gnome.org/pub/gnome/sources/%{name}/2.42/%{name}-%{version}.tar.xz,https://github.com/GNOME/gdk-pixbuf/archive/refs/tags/2.42.0.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.90/gdk-pixbuf-2_90_3.tar.xz,404,gdk-pixbuf,%{name},
geoip-api-c.spec,https://github.com/maxmind/geoip-api-c/releases/download/v%{version}/GeoIP-%{version}.tar.gz,https://github.com/maxmind/geoip-api-c/releases/download/v1.6.12/GeoIP-1.6.12.tar.gz,200,(same version),,,geoip-api-c,GeoIP,
geos.spec,http://download.osgeo.org/geos/%{name}-%{version}.tar.bz2,https://github.com/libgeos/geos/archive/refs/tags/3.11.1.tar.bz2,200,3.12.1,http://download.osgeo.org/geos/geos-3.12.1.tar.bz2,200,geos,%{name},geos-3.12.1.tar.bz2
getdns.spec,http://www.getdnsapi.net/dist/%{name}-%{version}.tar.gz,https://github.com/getdnsapi/getdns/archive/refs/tags/v1.7.2.tar.gz,200,1.7.3,https://github.com/getdnsapi/getdns/archive/refs/tags/v1.7.3.tar.gz,200,getdns,%{name},getdns-1.7.3.tar.gz
gettext.spec,http://ftp.gnu.org/gnu/gettext/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gettext/gettext-0.21.1.tar.xz,200,0.22.4,http://ftp.gnu.org/gnu/gettext/gettext-0.22.4.tar.xz,200,gettext,gettext,gettext-0.22.4.tar.xz
gflags.spec,https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/gflags/gflags/archive/v2.2.2/gflags-2.2.2.tar.gz,200,(same version),,,gflags,%{name},
git.spec,https://www.kernel.org/pub/software/scm/git/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/software/scm/git/git-2.39.0.tar.xz,200,2.43.0,https://www.kernel.org/pub/software/scm/git/git-2.43.0.tar.xz,200,git,%{name},git-2.43.0.tar.xz
git-lfs.spec,https://github.com/git-lfs/git-lfs/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/git-lfs/git-lfs/archive/refs/tags/v3.2.0.tar.gz,200,3.4.0,https://github.com/git-lfs/git-lfs/archive/refs/tags/v3.4.0.tar.gz,200,git-lfs,%{name},git-lfs-3.4.0.tar.gz
glib.spec,https://gitlab.gnome.org/GNOME/glib/-/releases/{version}/glib-%{version}.tar.xz,https://github.com/GNOME/glib/archive/refs/tags/2.75.2.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://gitlab.gnome.org/GNOME/glib/-/releases/{version}/glib-2_78_1.tar.xz,404,glib,%{name},
glib-networking.spec,http://ftp.gnome.org/pub/GNOME/sources/glib-networking/%{version}/%{name}-%{version}.tar.xz,https://github.com/GNOME/glib-networking/archive/refs/tags/2.74.0.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.gnome.org/pub/GNOME/sources/glib-networking/2_78_0/glib-networking-2_78_0.tar.xz,404,glib-networking,%{name},
glibc.spec,http://ftp.gnu.org/gnu/glibc/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/glibc/glibc-2.36.tar.xz,200,2.38,http://ftp.gnu.org/gnu/glibc/glibc-2.38.tar.xz,200,glibc,%{name},glibc-2.38.tar.xz
glibmm.spec,http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.74/%{name}-%{version}.tar.xz,https://github.com/GNOME/glibmm/archive/refs/tags/2.74.0.tar.xz,200,2.78.0,http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.78/glibmm-2.78.0.tar.xz,200,glibmm,%{name},glibmm-2.78.0.tar.xz
glide.spec,https://github.com/Masterminds/glide/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/Masterminds/glide/archive/refs/tags/v0.13.3.tar.gz,200,(same version),,,glide,%{name},
glog.spec,https://github.com/google/glog/archive/%{name}-%{version}.tar.gz,https://github.com/google/glog/archive/refs/tags/v0.6.0.tar.gz,200,(same version),,,glog,%{name},
glslang.spec,https://github.com/KhronosGroup/glslang/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/KhronosGroup/glslang/archive/refs/tags/11.13.0.tar.gz,200,13.1.1,https://github.com/KhronosGroup/glslang/archive/refs/tags/13.1.1.tar.gz,200,glslang,%{name},glslang-13.1.1.tar.gz
gmp.spec,http://ftp.gnu.org/gnu/gmp/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz,200,6.3.0,http://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz,200,gmp,%{name},gmp-6.3.0.tar.xz
gnome-common.spec,http://ftp.gnome.org/pub/GNOME/sources/%{name}/%{version}/%{name}-%{version}.tar.xz,https://github.com/GNOME/gnome-common/archive/refs/tags/3.18.0.tar.gz,200,(same version),,,gnome-common,gnome-common,
gnu-efi.spec,https://download.sourceforge.net/gnu-efi/%{name}-%{version}.tar.bz2,https://download.sourceforge.net/gnu-efi/gnu-efi-3.0.15.tar.bz2,200,3.0.17,https://download.sourceforge.net/gnu-efi/gnu-efi-3.0.17.tar.bz2,200,gnu-efi,%{name},gnu-efi-3.0.17.tar.bz2
gnupg.spec,https://gnupg.org/ftp/gcrypt/gnupg/%{name}-%{version}.tar.bz2,https://github.com/gpg/gnupg/archive/refs/tags/gnupg-2.2.41.tar.bz2,200,2.4.3,https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.4.3.tar.bz2,200,gnupg,%{name},gnupg-2.4.3.tar.bz2
gnuplot.spec,http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz,https://github.com/gnuplot/gnuplot/archive/refs/tags/5.4.5.tar.gz,200,5.5,https://github.com/gnuplot/gnuplot/archive/refs/tags/5.5.tar.gz,200,gnuplot,%{name},gnuplot-5.5.tar.gz
gnutls.spec,https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/%{name}-%{version}.tar.xz,https://github.com/gnutls/gnutls/archive/refs/tags/3.7.7.tar.xz,200,3.8.2,https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.2.tar.xz,200,gnutls,%{name},gnutls-3.8.2.tar.xz
go.spec,https://golang.org/dl/%{name}%{version}.src.tar.gz,https://github.com/golang/go/archive/refs/tags/go1.20.10.tar.gz,200,1.21.4,https://github.com/golang/go/archive/refs/tags/go1.21.4.tar.gz,200,go,go,go1.21.4.tar.gz
go-md2man.spec,https://github.com/cpuguy83/go-md2man/archive/%{name}-%{version}.tar.gz,https://github.com/cpuguy83/go-md2man/archive/refs/tags/v2.0.2.tar.gz,200,2.0.3,https://github.com/cpuguy83/go-md2man/archive/refs/tags/v2.0.3.tar.gz,200,go-md2man,go-md2man,go-md2man-2.0.3.tar.gz
gobgp.spec,https://github.com/osrg/gobgp/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/osrg/gobgp/archive/refs/tags/v3.1.0.tar.gz,200,3.20.0,https://github.com/osrg/gobgp/archive/refs/tags/v3.20.0.tar.gz,200,gobgp,gobgp,gobgp-3.20.0.tar.gz
gobject-introspection.spec,https://gitlab.gnome.org/GNOME/gobject-introspection/-/archive/%{version}/%{name}-%{version}.tar.xz,https://github.com/GNOME/gobject-introspection/archive/refs/tags/1.74.0.tar.xz,200,1.78.1,https://gitlab.gnome.org/GNOME/gobject-introspection/-/archive/1.78.1/gobject-introspection-1.78.1.tar.xz,200,gobject-introspection,%{name},gobject-introspection-1.78.1.tar.xz
google-benchmark.spec,https://github.com/google/benchmark/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/google/benchmark/archive/refs/tags/v1.7.1.tar.gz,200,1.8.3,https://github.com/google/benchmark/archive/refs/tags/v1.8.3.tar.gz,200,google-benchmark,%{name},google-benchmark-1.8.3.tar.gz
google-compute-engine.spec,https://github.com/GoogleCloudPlatform/compute-image-packages/archive/compute-image-packages-%{version}.tar.gz,https://github.com/GoogleCloudPlatform/compute-image-packages/archive/refs/tags/v20191210.tar.gz,200,(same version),,,google-compute-engine,compute-image-packages,
govmomi.spec,https://github.com/vmware/govmomi/%{name}-%{version}.tar.gz,https://github.com/vmware/govmomi//archive/refs/tags/v0.29.0.tar.gz,200,0.33.0,https://github.com/vmware/govmomi//archive/refs/tags/v0.33.0.tar.gz,200,govmomi,govmomi,govmomi-0.33.0.tar.gz
gperf.spec,http://ftp.gnu.org/gnu/gperf/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/gperf/gperf-3.1.tar.gz,200,(same version),,,gperf,gperf,
gperftools.spec,https://github.com/gperftools/gperftools/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/gperftools/gperftools/releases/download/gperftools-2.10/gperftools-2.10.tar.gz,200,2.13,https://github.com/gperftools/gperftools/releases/download/gperftools-2.13/gperftools-2.13.tar.gz,200,gperftools,gperftools,gperftools-2.13.tar.gz
gpgme.spec,https://www.gnupg.org/ftp/gcrypt/%{name}/%{name}-%{version}.tar.bz2,https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.18.0.tar.bz2,200,1.23.2,https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.23.2.tar.bz2,200,gpgme,%{name},gpgme-1.23.2.tar.bz2
gpsd.spec,https://download-mirror.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz,https://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-3.25.tar.gz,200,(same version),,,gpsd,%{name},
gptfdisk.spec,http://downloads.sourceforge.net/project/gptfdisk/%{version}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/project/gptfdisk/1.0.9/gptfdisk-1.0.9.tar.gz,200,(same version),,,gptfdisk,%{name},
graphene.spec,https://github.com/ebassi/graphene/archive/refs/tags//%{name}-%{version}.tar.gz,https://github.com/ebassi/graphene/archive/refs/tags/1.10.8.tar.gz,200,(same version),,,graphene,%{name},
grep.spec,http://ftp.gnu.org/gnu/grep/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/grep/grep-3.7.tar.xz,200,3.11,http://ftp.gnu.org/gnu/grep/grep-3.11.tar.xz,200,grep,%{name},grep-3.11.tar.xz
groff.spec,http://ftp.gnu.org/gnu/groff/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/groff/groff-1.22.4.tar.gz,200,1.23.0,http://ftp.gnu.org/gnu/groff/groff-1.23.0.tar.gz,200,groff,groff,groff-1.23.0.tar.gz
grpc.spec,https://github.com/grpc/grpc/archive/%{name}-%{version}.tar.gz,https://github.com/grpc/grpc/archive/refs/tags/v1.54.3.tar.gz,200,1.60.0,https://github.com/grpc/grpc/archive/refs/tags/v1.60.0.tar.gz,200,grpc,%{name} abseil data-plane-api googleapis opencensus-proto xds,grpc-1.60.0.tar.gz
grub2.spec,https://ftp.gnu.org/gnu/grub/grub-%{version}.tar.xz,https://ftp.gnu.org/gnu/grub/grub-2.06.tar.xz,200,(same version),,,grub2,grub,
grub2-theme.spec,%{name}-%{version}.tar.xz,https://vmware.github.io/photongrub2-theme-5.0.tar.xz,404,Info: Source0 contains a VMware internal url address.,,,grub2-theme,grub2-theme,
gssntlmssp.spec,https://github.com/gssapi/gss-ntlmssp/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/gssapi/gss-ntlmssp/releases/download/v1.1.0/gssntlmssp-1.1.0.tar.gz,200,1.2.0,https://github.com/gssapi/gss-ntlmssp/releases/download/v1.2.0/gssntlmssp-1.2.0.tar.gz,200,gssntlmssp,%{name},gssntlmssp-1.2.0.tar.gz
gst-plugins-bad.spec,http://gstreamer.freedesktop.org/src/%{name}/%{name}-%{version}.tar.xz,http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.21.3.tar.xz,200,1.22.7,http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.22.7.tar.xz,200,gst-plugins-bad,%{name},gst-plugins-bad-1.22.7.tar.xz
gstreamer.spec,https://gstreamer.freedesktop.org/src/%{name}/%{name}-%{version}.tar.xz,https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.21.3.tar.xz,200,1.22.7,https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.22.7.tar.xz,200,gstreamer,gstreamer,gstreamer-1.22.7.tar.xz
gstreamer-plugins-base.spec,http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{version}.tar.xz,http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.21.3.tar.xz,200,1.22.7,http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.22.7.tar.xz,200,gstreamer-plugins-base,gst-plugins-base,gst-plugins-base-1.22.7.tar.xz
gtest.spec,https://github.com/google/googletest/archive/googletest-%{version}.tar.gz,https://github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz,200,v1.14.0,https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz,200,gtest,googletest,gtest-1.14.0.tar.gz
gtk-doc.spec,http://ftp.acc.umu.se/pub/gnome/sources/gtk-doc/1.33/gtk-doc-%{version}.tar.xz,https://github.com/GNOME/gtk-doc/archive/refs/tags/1.33.2.tar.gz,200,(same version),,,gtk-doc,%{name},
gtk3.spec,http://ftp.gnome.org/pub/gnome/sources/gtk/3.23/gtk+-%{version}.tar.xz,https://github.com/GNOME/gtk/archive/refs/tags/3.23.3.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.gnome.org/pub/gnome/sources/gtk/4.13/gtk+-4_13_3.tar.xz,404,gtk3,gtk+-3,
guile.spec,https://ftp.gnu.org/gnu/guile/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/guile/guile-2.2.7.tar.gz,200,3.0.9,https://ftp.gnu.org/gnu/guile/guile-3.0.9.tar.gz,200,guile,%{name},guile-3.0.9.tar.gz
guile3.spec,https://ftp.gnu.org/gnu/guile/guile-%{version}.tar.xz,https://ftp.gnu.org/gnu/guile/guile-3.0.8.tar.xz,200,3.0.9,https://ftp.gnu.org/gnu/guile/guile-3.0.9.tar.xz,200,guile,guile,guile-3.0.9.tar.xz
gzip.spec,http://ftp.gnu.org/gnu/gzip/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/gzip/gzip-1.12.tar.xz,200,1.13,http://ftp.gnu.org/gnu/gzip/gzip-1.13.tar.xz,200,gzip,%{name},gzip-1.13.tar.xz
haproxy.spec,http://www.haproxy.org/download/2.7/src/%{name}-%{version}.tar.gz,https://www.haproxy.org/download/2.2/src/haproxy-2.7.10.tar.gz,404,Warning: haproxy.spec Source0 version 2.7.10 is higher than detected latest version 2.2.31 .,,,haproxy,%{name},
haproxy-dataplaneapi.spec,https://github.com/haproxytech/%{name}-%{version}.tar.gz,https://github.com/haproxytech/dataplaneapi/archive/refs/tags/v2.7.1.tar.gz,200,2.8.4,https://github.com/haproxytech/dataplaneapi/archive/refs/tags/v2.8.4.tar.gz,200,haproxy-dataplaneapi,%{name},haproxy-dataplaneapi-2.8.4.tar.gz
harfbuzz.spec,https://github.com/harfbuzz/harfbuzz/releases/download/%{version}/%{name}-%{version}.tar.xz,https://github.com/harfbuzz/harfbuzz/releases/download/7.0.1/harfbuzz-7.0.1.tar.xz,200,8.3.0,https://github.com/harfbuzz/harfbuzz/releases/download/8.3.0/harfbuzz-8.3.0.tar.xz,200,harfbuzz,%{name},harfbuzz-8.3.0.tar.xz
haveged.spec,http://www.issihosts.com/haveged/%{name}-%{version}.tar.gz,https://github.com/jirka-h/haveged/archive/refs/tags/v1.9.18.tar.gz,200,(same version),,,haveged,%{name},
hdparm.spec,http://downloads.sourceforge.net/hdparm/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/hdparm/hdparm-9.65.tar.gz,200,(same version),,,hdparm,hdparm,
heapster.spec,https://github.com/kubernetes/heapster/archive/%{name}-%{version}.tar.gz,https://github.com/kubernetes/heapster/archive/refs/tags/v1.5.4.tar.gz,200,(same version),,,heapster,%{name},
hiredis.spec,https://github.com/redis/hiredis/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/redis/hiredis/archive/v1.1.0/hiredis-1.1.0.tar.gz,200,1.2.0,https://github.com/redis/hiredis/archive/v1.2.0/hiredis-1.2.0.tar.gz,200,hiredis,%{name},hiredis-1.2.0.tar.gz
htop.spec,https://github.com/htop-dev/htop/archive/%{name}-%{version}.tar.gz,https://github.com/htop-dev/htop/archive/refs/tags/3.2.1.tar.gz,200,3.2.2,https://github.com/htop-dev/htop/archive/refs/tags/3.2.2.tar.gz,200,htop,htop,htop-3.2.2.tar.gz
http-parser.spec,%{name}-v%{version}.tar.gz,https://github.com/nodejs/http-parser/archive/refs/tags/v2.9.4.tar.gz,200,Warning: repo isn't maintained anymore.,,,http-parser,http-parser,
httpd.spec,https://dlcdn.apache.org/%{name}/%{name}-%{version}.tar.bz2,https://github.com/apache/httpd/archive/refs/tags/2.4.58.tar.gz,200,(same version),,,httpd,%{name},
httpd-mod_jk.spec,http://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-%{version}-src.tar.gz,,404,,,,httpd-mod_jk,tomcat-connectors,
hwloc.spec,https://github.com/open-mpi/hwloc/archive/%{name}-%{version}.tar.gz,https://github.com/open-mpi/hwloc/archive/hwloc-2.8.0.tar.gz,200,Warning: hwloc.spec Source0 version 2.8.0 is higher than detected latest version 2.1.0 .,,,hwloc,hwloc,
hyper-v.spec,%{name}-%{version}.tar.gz,,404,,,,hyper-v,%{name},
hyperscan.spec,https://github.com/intel/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz,https://github.com/intel/hyperscan/archive/v5.4.0.tar.gz#/hyperscan-5.4.0.tar.gz,200,5.4.2,https://github.com/intel/hyperscan/archive/v5.4.2.tar.gz#/hyperscan-5.4.2.tar.gz,200,hyperscan,hyperscan,hyperscan-5.4.2.tar.gz
i2c-tools.spec,https://www.kernel.org/pub/software/utils/i2c-tools/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/software/utils/i2c-tools/i2c-tools-4.3.tar.xz,200,(same version),,,i2c-tools,%{name}-%{version},
iana-etc.spec,http://anduin.linuxfromscratch.org/sources/LFS/lfs-packages/conglomeration//iana-etc/%{name}-%{version}.tar.bz2,http://anduin.linuxfromscratch.org/sources/LFS/lfs-packages/conglomeration//iana-etc/iana-etc-2.30.tar.bz2,200,(same version),,,iana-etc,iana-etc,
ibmtpm.spec,%{name}%{version}.tar.gz,https://sourceforge.net/projects/ibmswtpm2/filesibmtpm1682.tar.gz,404,(same version),,,ibmtpm,%{name},
icu.spec,https://github.com/unicode-org/icu/archive/refs/tags/%{name}4c-72_1-src.tgz,https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz,200,,,,icu,%{name},
ImageMagick.spec,https://www.imagemagick.org/download/%{name}-%{VER}-%{Patchlevel}.tar.gz,https://www.imagemagick.org/download/ImageMagick-%{VER}-%{Patchlevel}.tar.gz,substitution_unfinished,Warning: Manufacturer may changed version packaging format.,https://www.imagemagick.org/download/ImageMagick-%{VER}-%{Patchlevel}.tar.gz,404,ImageMagick,%{name},
influxdb.spec,https://github.com/influxdata/influxdb/archive/%{name}-%{version}.tar.gz,https://github.com/influxdata/influxdb/archive/refs/tags/v1.8.10.tar.gz,200,2.7.3,https://github.com/influxdata/influxdb/archive/refs/tags/v2.7.3.tar.gz,200,influxdb,%{name} golang-dep-0.3.0,influxdb-2.7.3.tar.gz
inih.spec,https://github.com/benhoyt/inih/archive/refs/tags/libinih-%{version}.tar.gz,https://github.com/benhoyt/inih/archive/refs/tags/r56.tar.gz,200,57,https://github.com/benhoyt/inih/archive/refs/tags/r57.tar.gz,200,inih,libinih,r57.tar.gz
iniparser.spec,https://github.com/ndevilla/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz,https://github.com/ndevilla/iniparser/archive/v4.1.tar.gz#/iniparser-4.1.tar.gz,200,(same version),,,iniparser,%{name},
initramfs.spec,fscks.conf,,404,,,,initramfs,,
initscripts.spec,https://github.com/fedora-sysv/initscripts/archive/%{name}-%{version}.tar.gz,https://github.com/fedora-sysv/initscripts/archive/refs/tags/10.17.tar.gz,200,10.19,https://github.com/fedora-sysv/initscripts/archive/refs/tags/10.19.tar.gz,200,initscripts,%{name},initscripts-10.19.tar.gz
inotify-tools.spec,http://sourceforge.net/projects/inotify-tools/files/latest/download/%{name}-%{version}.tar.gz,http://sourceforge.net/projects/inotify-tools/files/latest/download/inotify-tools-3.13.tar.gz,200,(same version),,,inotify-tools,%{name},
intltool.spec,https://launchpad.net/intltool/+download/%{name}-%{version}.tar.gz,https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz,200,,,,intltool,%{name},
iotop.spec,http://guichaz.free.fr/iotop/files/%{name}-%{version}.tar.gz,http://guichaz.free.fr/iotop/files/iotop-0.6.tar.gz,200,,,,iotop,iotop,
ipcalc.spec,https://gitlab.com/%{name}/%{name}/-/archive/%{version}/%{name}-%{version}.tar.gz,https://gitlab.com/ipcalc/ipcalc/-/archive/1.0.2/ipcalc-1.0.2.tar.gz,200,1.0.3,https://gitlab.com/ipcalc/ipcalc/-/archive/1.0.3/ipcalc-1.0.3.tar.gz,200,ipcalc,ipcalc,ipcalc-1.0.3.tar.gz
iperf.spec,https://github.com/esnet/iperf/archive/%{name}-%{version}.tar.gz,https://github.com/esnet/iperf/archive/refs/tags/3.14.tar.gz,200,3.15,https://github.com/esnet/iperf/archive/refs/tags/3.15.tar.gz,200,iperf,iperf,iperf-3.15.tar.gz
ipmitool.spec,https://github.com/ipmitool/ipmitool/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/ipmitool/ipmitool/archive/refs/tags/IPMITOOL_1_8_19.tar.gz,200,(same version),,,ipmitool,%{name},
iproute2.spec,http://www.kernel.org/pub/linux/utils/net/iproute2/%{name}-%{version}.tar.xz,http://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-6.0.0.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-6_6.6.tar.xz,404,iproute2,%{name},
ipset.spec,ipset.netfilter.org/%{name}-%{version}.tar.bz2,https://ipset.netfilter.org/ipset-7.15.tar.bz2,200,7.19,https://ipset.netfilter.org/ipset-7.19.tar.bz2,200,ipset,ipset,ipset-7.19.tar.bz2
iptables.spec,http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.xz,https://www.netfilter.org/projects/iptables/files/iptables-1.8.9.tar.xz,200,1.8.10,https://www.netfilter.org/projects/iptables/files/iptables-1.8.10.tar.xz,200,iptables,%{name}-%{version},iptables-1.8.10.tar.xz
iputils.spec,%{name}-s%{version}.tar.gz,https://github.com/iputils/iputils/archive/refs/tags/s20221126.tar.gz,404,(same version),,,iputils,%{name},
ipvsadm.spec,https://www.kernel.org/pub/linux/utils/kernel/ipvsadm/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/linux/utils/kernel/ipvsadm/ipvsadm-1.31.tar.xz,200,(same version),,,ipvsadm,%{name},
ipxe.spec,%{name}-%{version}.tar.gz,https://github.com/ipxe/ipxe/archive/refs/tags/v1.21.1.tar.gz,200,(same version),,,ipxe,%{name},
irqbalance.spec,%{name}-%{version}.tar.gz,https://github.com/Irqbalance/irqbalance/archive/refs/tags/v1.9.2.tar.gz,200,1.9.3,https://github.com/Irqbalance/irqbalance/archive/refs/tags/v1.9.3.tar.gz,200,irqbalance,%{name}-%{version},irqbalance-1.9.3.tar.gz
itstool.spec,http://files.itstool.org/itstool/%{name}-%{version}.tar.bz2,http://files.itstool.org/itstool/itstool-2.0.7.tar.bz2,200,(same version),,,itstool,itstool,
ivykis.spec,http://downloads.sourceforge.net/project/libivykis/%{version}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/project/libivykis/0.42.4/ivykis-0.42.4.tar.gz,200,(same version),,,ivykis,ivykis,
jansson.spec,http://www.digip.org/jansson/releases/%{name}-%{version}.tar.gz,https://github.com/akheron/jansson/archive/refs/tags/v2.13.1.tar.gz,200,2.14,https://github.com/akheron/jansson/archive/refs/tags/v2.14.tar.gz,200,jansson,%{name}-%{version},jansson-2.14.tar.gz
jc.spec,https://github.com/kellyjonbrazil/jc/archive/refs/tags/jc-%{version}.tar.gz,https://github.com/kellyjonbrazil/jc/archive/refs/tags/v1.23.6.tar.gz,200,(same version),,,jc,%{name},
jemalloc.spec,https://github.com/jemalloc/jemalloc/releases/download/%{version}/%{name}-%{version}.tar.bz2,https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2,200,(same version),,,jemalloc,jemalloc,
jna.spec,https://github.com/java-native-access/jna/archive/%{version}/%{name}-%{version}.tar.gz,https://github.com/java-native-access/jna/archive/5.12.1/jna-5.12.1.tar.gz,200,5.13.0,https://github.com/java-native-access/jna/archive/5.13.0/jna-5.13.0.tar.gz,200,jna,%{name}-%{version},jna-5.13.0.tar.gz
jq.spec,https://github.com/stedolan/jq/releases/download/jq-%{version}/jq-%{version}.tar.gz,https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz,200,1.7,https://github.com/stedolan/jq/releases/download/jq-1.7/jq-1.7.tar.gz,200,jq,%{name},jq-1.7.tar.gz
json-c.spec,https://s3.amazonaws.com/json-c_releases/releases/%{name}-%{version}.tar.gz,https://s3.amazonaws.com/json-c_releases/releases/json-c-0.16.tar.gz,200,,,,json-c,%{name}-%{version},
json-glib.spec,http://ftp.gnome.org/pub/GNOME/sources/json-glib/1.4/%{name}-%{version}.tar.xz,https://github.com/GNOME/json-glib/archive/refs/tags/1.6.6.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.gnome.org/pub/GNOME/sources/json-glib/1.4/json-glib-1_8_0.tar.xz,404,json-glib,%{name},
jsoncpp.spec,https://github.com/open-source-parsers/jsoncpp/archive/%{name}-%{version}.tar.gz,https://github.com/open-source-parsers/jsoncpp/archive/refs/tags/1.9.5.tar.gz,200,(same version),,,jsoncpp,%{name},
kafka.spec,%{name}-%{version}-src.tgz,https://github.com/apache/kafka/archive/refs/tags/3.4.0.tgz,200,Warning: Manufacturer may changed version packaging format.,kafka-3_6_0-src.tgz,0,kafka,%{name},
kapacitor.spec,https://github.com/influxdata/kapacitor/archive/%{name}-%{version}.tar.gz,https://github.com/influxdata/kapacitor/archive/refs/tags/v1.6.6.tar.gz,200,1.7.1,https://github.com/influxdata/kapacitor/archive/refs/tags/v1.7.1.tar.gz,200,kapacitor,%{name},kapacitor-1.7.1.tar.gz
kbd.spec,http://ftp.altlinux.org/pub/people/legion/kbd/%{name}-%{version}.tar.xz,https://github.com/legionus/kbd/archive/refs/tags/2.2.0.tar.xz,404,Warning: Manufacturer may changed version packaging format.,http://ftp.altlinux.org/pub/people/legion/kbd/kbd-2_6_3.tar.xz,404,kbd,%{name},
keepalived.spec,https://github.com/acassen/keepalived/archive/%{name}-%{version}.tar.gz,https://github.com/acassen/keepalived/archive/refs/tags/v2.2.7.tar.gz,200,2.2.8,https://github.com/acassen/keepalived/archive/refs/tags/v2.2.8.tar.gz,200,keepalived,%{name}-%{version},keepalived-2.2.8.tar.gz
kexec-tools.spec,https://www.kernel.org/pub/linux/utils/kernel/kexec/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.25.tar.xz,200,2.0.27,https://www.kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.27.tar.xz,200,kexec-tools,kexec-tools,kexec-tools-2.0.27.tar.xz
keyutils.spec,http://people.redhat.com/~dhowells/keyutils/keyutils-%{version}.tar.bz2,https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-1.6.1.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://people.redhat.com/~dhowells/keyutils/keyutils-1.6_3.tar.bz2,404,keyutils,%{name},
kmod.spec,http://www.kernel.org/pub/linux/utils/kernel/kmod/%{name}-%{version}.tar.xz,http://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-30.tar.xz,200,31,http://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-31.tar.xz,200,kmod,%{name}-%{version},kmod-31.tar.xz
kpatch.spec,https://github.com/dynup/kpatch/archive/refs/tags/kpatch-v%{version}.tar.gz,https://github.com/dynup/kpatch/archive/refs/tags/v0.9.8.tar.gz,200,0.9.9,https://github.com/dynup/kpatch/archive/refs/tags/v0.9.9.tar.gz,200,kpatch,%{name},kpatch-0.9.9.tar.gz
krb5.spec,http://web.mit.edu/kerberos/www/dist/%{name}/%{minor_ver}/%{name}-%{version}.tar.gz,https://github.com/krb5/krb5/archive/refs/tags/krb5-1.20.2-final.tar.gz,200,1.21.2,https://github.com/krb5/krb5/archive/refs/tags/krb5-1.21.2-final.tar.gz,200,krb5,%{name},krb5-1.21.2-final.tar.gz
kube-bench.spec,https://github.com/aquasecurity/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/aquasecurity/kube-bench/archive/refs/tags/v0.6.12.tar.gz,200,0.6.19,https://github.com/aquasecurity/kube-bench/archive/refs/tags/v0.6.19.tar.gz,200,kube-bench,%{name},kube-bench-0.6.19.tar.gz
kubernetes.spec,https://github.com/kubernetes/kubernetes/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/kubernetes/kubernetes/archive/refs/tags/v1.27.3.tar.gz,200,1.28.4,https://github.com/kubernetes/kubernetes/archive/refs/tags/v1.28.4.tar.gz,200,kubernetes,%{name}-%{version}.tar.gz contrib-%{contrib_ver} isolcpu,kubernetes-1.28.4.tar.gz
kubernetes-dashboard.spec,https://github.com/kubernetes/dashboard/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/kubernetes/dashboard/archive/refs/tags/v2.7.0.tar.gz,200,(same version),,,kubernetes-dashboard,%{name} dashboard-dist,
kubernetes-dns.spec,https://github.com/kubernetes/dns/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/kubernetes/dns/archive/refs/tags/1.22.20.tar.gz,200,1.22.28,https://github.com/kubernetes/dns/archive/refs/tags/1.22.28.tar.gz,200,kubernetes-dns,%{name},kubernetes-dns-1.22.28.tar.gz
kubernetes-metrics-server.spec,https://github.com/kubernetes-sigs/metrics-server/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/kubernetes-sigs/metrics-server/archive/refs/tags/v0.3.7.tar.gz,200,0.6.4,https://github.com/kubernetes-sigs/metrics-server/archive/refs/tags/v0.6.4.tar.gz,200,kubernetes-metrics-server,%{name}-%{version}.tar.gz,kubernetes-metrics-server-0.6.4.tar.gz
lapack.spec,http://www.netlib.org/%{name}/%{name}-%{version}.tar.gz,https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.11.0.tar.gz,200,3.12.0,https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.12.0.tar.gz,200,lapack,%{name},lapack-3.12.0.tar.gz
lasso.spec,http://dev.entrouvert.org/lasso/lasso-%{version}.tar.gz,https://dev.entrouvert.org/lasso/lasso-2.8.0.tar.gz,200,,,,lasso,lasso,
less.spec,http://www.greenwoodsoftware.com/less/%{name}-%{version}.tar.gz,https://github.com/gwsw/less/archive/refs/tags/v608.tar.gz,200,648,https://github.com/gwsw/less/archive/refs/tags/v648.tar.gz,200,less,%{name},less-648.tar.gz
leveldb.spec,https://github.com/google/leveldb/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/google/leveldb/archive/refs/tags/v1.23.tar.gz,404,(same version),,,leveldb,%{name},
libaio.spec,https://fedorahosted.org/releases/l/i/libaio/libaio-0.3.110.tar.gz,https://fedorahosted.org/releases/l/i/libaio/libaio-0.3.110.tar.gz,200,,,,libaio,libaio,
libarchive.spec,http://www.libarchive.org/downloads/%{name}-%{version}.tar.gz,https://github.com/libarchive/libarchive/archive/refs/tags/v3.7.1.tar.gz,200,3.7.2,https://github.com/libarchive/libarchive/archive/refs/tags/v3.7.2.tar.gz,200,libarchive,%{name},libarchive-3.7.2.tar.gz
libassuan.spec,https://www.gnupg.org/ftp/gcrypt/libassuan/%{name}-%{version}.tar.bz2,https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-2.5.5.tar.bz2,200,2.5.6,https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-2.5.6.tar.bz2,200,libassuan,%{name},libassuan-2.5.6.tar.bz2
libatomic_ops.spec,http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-%{version}.tar.gz,https://github.com/ivmai/libatomic_ops/archive/refs/tags/v7.6.14.tar.gz,200,7.8.0,https://github.com/ivmai/libatomic_ops/archive/refs/tags/v7.8.0.tar.gz,200,libatomic_ops,%{name},libatomic_ops-7.8.0.tar.gz
libbpf.spec,https://github.com/libbpf/libbpf/archive/refs/tags/libbpf-%{version}.tar.gz,https://github.com/libbpf/libbpf/archive/refs/tags/v1.2.2.tar.gz,200,1.3.0,https://github.com/libbpf/libbpf/archive/refs/tags/v1.3.0.tar.gz,200,libbpf,%{name},libbpf-1.3.0.tar.gz
libcap.spec,https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.66.tar.xz,200,2.69,https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.69.tar.xz,200,libcap,libcap,libcap-2.69.tar.xz
libcap-ng.spec,http://people.redhat.com/sgrubb/libcap-ng/%{name}-%{version}.tar.gz,http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.8.3.tar.gz,200,(same version),,,libcap-ng,libcap-ng,
libcbor.spec,https://github.com/PJK/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/PJK/libcbor/archive/refs/tags/v0.9.0.tar.gz,200,0.10.2,https://github.com/PJK/libcbor/archive/refs/tags/v0.10.2.tar.gz,200,libcbor,%{name},libcbor-0.10.2.tar.gz
libcgroup.spec,https://github.com/libcgroup/libcgroup/archive/%{name}-%{version}.tar.gz,https://github.com/libcgroup/libcgroup/archive/refs/tags/v3.0.0.tar.gz,200,3.1.0,https://github.com/libcgroup/libcgroup/archive/refs/tags/v3.1.0.tar.gz,200,libcgroup,%{name},libcgroup-3.1.0.tar.gz
libconfig.spec,%{name}-%{version}.tar.gz,https://github.com/hyperrealm/libconfig/archive/refs/tags/v1.7.3.tar.gz,200,(same version),,,libconfig,%{name},
libdaemon.spec,http://0pointer.de/lennart/projects/libdaemon/%{name}-%{version}.tar.gz,http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz,200,,,,libdaemon,%{name},
libdnet.spec,http://prdownloads.sourceforge.net/libdnet/%{name}-%{version}.tar.gz,http://prdownloads.sourceforge.net/libdnet/libdnet-1.11.tar.gz,200,(same version),,,libdnet,libdnet,
libdrm.spec,http://dri.freedesktop.org/libdrm/%{name}-%{version}.tar.xz,http://dri.freedesktop.org/libdrm/libdrm-2.4.113.tar.xz,200,2.4.118,http://dri.freedesktop.org/libdrm/libdrm-2.4.118.tar.xz,200,libdrm,libdrm,libdrm-2.4.118.tar.xz
libecap.spec,http://www.e-cap.org/archive/%{name}-%{version}.tar.gz,http://www.e-cap.org/archive/libecap-1.0.1.tar.gz,200,(same version),,,libecap,libecap,
libedit.spec,%{name}-%{libedit_release}-%{libedit_version}.tar.gz,https://www.thrysoee.dk/editline/libedit-20221030-3.1.tar.gz,200,Warning: libedit.spec Source0 version 3.1.20221030 is higher than detected latest version 20230828-3.1 .,,,libedit,%{name},
libepoxy.spec,https://github.com/anholt/libepoxy/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/anholt/libepoxy/archive/refs/tags/1.5.10.tar.gz,200,(same version),,,libepoxy,%{name},
libestr.spec,http://libestr.adiscon.com/files/download/%{name}-%{version}.tar.gz,https://github.com/rsyslog/libestr/archive/refs/tags/v0.1.11.tar.gz,200,(same version),,,libestr,%{name},
libev.spec,http://dist.schmorp.de/libev/%{name}-%{version}.tar.gz,http://dist.schmorp.de/libev/Attic/libev-4.33.tar.gz,200,(same version),,,libev,libev,
libevent.spec,https://github.com/%{name}/%{name}/releases/download/release-%{version}-stable/%{name}-%{version}-stable.tar.gz,https://github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gz,200,(same version),,,libevent,libevent,
libfastjson.spec,%{name}-%{version}.tar.gz,https://github.com/rsyslog/libfastjson/archive/refs/tags/v0.99.9.tar.gz,200,1.2304.0,https://github.com/rsyslog/libfastjson/archive/refs/tags/v1.2304.0.tar.gz,200,libfastjson,libfastjson,libfastjson-1.2304.0.tar.gz
libffi.spec,ftp://sourceware.org/pub/libffi/%{name}-%{version}.tar.gz,https://github.com/libffi/libffi/archive/refs/tags/v3.4.2.tar.gz,200,3.4.4,https://github.com/libffi/libffi/archive/refs/tags/v3.4.4.tar.gz,200,libffi,%{name},libffi-3.4.4.tar.gz
libfido2.spec,https://github.com/Yubico/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/Yubico/libfido2/archive/refs/tags/1.12.0.tar.gz,200,1.14.0,https://github.com/Yubico/libfido2/archive/refs/tags/1.14.0.tar.gz,200,libfido2,%{name},libfido2-1.14.0.tar.gz
libfontenc.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libfontenc-1.1.2.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libfontenc-1.1_7.tar.bz2,404,libfontenc,%{name},
libgcrypt.spec,ftp://ftp.gnupg.org/gcrypt/libgcrypt/%{name}-%{version}.tar.bz2,https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.10.1.tar.bz2,200,1.10.3,https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.10.3.tar.bz2,200,libgcrypt,%{name},libgcrypt-1.10.3.tar.bz2
libgd.spec,https://github.com/libgd/libgd/releases/download/gd-%{version}/%{name}-%{version}.tar.xz,https://github.com/libgd/libgd/releases/download/gd-2.3.3/libgd-2.3.3.tar.xz,200,(same version),,,libgd,%{name},
libglvnd.spec,https://github.com/NVIDIA/libglvnd/archive/%{name}-%{version}.tar.gz,https://github.com/NVIDIA/libglvnd/archive/refs/tags/v1.4.0.tar.gz,200,1.7.0,https://github.com/NVIDIA/libglvnd/archive/refs/tags/v1.7.0.tar.gz,200,libglvnd,%{name},libglvnd-1.7.0.tar.gz
libgpg-error.spec,ftp://ftp.gnupg.org/gcrypt/libgpg-error/%{name}-%{version}.tar.bz2,https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.46.tar.bz2,200,1.47,https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.47.tar.bz2,200,libgpg-error,libgpg-error,libgpg-error-1.47.tar.bz2
libgssglue.spec,http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/%{name}-%{version}.tar.gz,,403,,,,libgssglue,libgssglue,
libgudev.spec,https://git.gnome.org/browse/%{name}/snapshot/%{name}-%{version}.tar.xz,https://github.com/GNOME/libgudev/archive/refs/tags/237.tar.xz,200,238,https://git.gnome.org/browse/libgudev/snapshot/libgudev-238.tar.xz,200,libgudev,libgudev,libgudev-238.tar.xz
libhugetlbfs.spec,https://github.com/libhugetlbfs/libhugetlbfs/releases/download/%{version}/libhugetlbfs-%{version}.tar.gz,https://github.com/libhugetlbfs/libhugetlbfs/releases/download/2.23/libhugetlbfs-2.23.tar.gz,200,(same version),,,libhugetlbfs,libhuge,
libical.spec,https://github.com/libical/libical/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/libical/libical/releases/download/v3.0.14/libical-3.0.14.tar.gz,200,3.0.17,https://github.com/libical/libical/releases/download/v3.0.17/libical-3.0.17.tar.gz,200,libical,%{name},libical-3.0.17.tar.gz
libICE.spec,https://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.xz,https://ftp.x.org/pub/individual/lib/libICE-1.1.1.tar.xz,200,(same version),,,libICE,libICE,
libjpeg-turbo.spec,http://downloads.sourceforge.net/libjpeg-turbo/%{name}-%{version}.tar.gz,https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/2.1.4.tar.gz,200,3.0.1,https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/3.0.1.tar.gz,200,libjpeg-turbo,%{name},libjpeg-turbo-3.0.1.tar.gz
libksba.spec,https://www.gnupg.org/ftp/gcrypt/%{name}/%{name}-%{version}.tar.bz2,https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.6.3.tar.bz2,200,1.6.5,https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.6.5.tar.bz2,200,libksba,%{name},libksba-1.6.5.tar.bz2
libldb.spec,https://www.samba.org/ftp/ldb/ldb-%{version}.tar.gz,https://www.samba.org/ftp/ldb/ldb-2.7.2.tar.gz,200,2.8.0,https://www.samba.org/ftp/ldb/ldb-2.8.0.tar.gz,200,libldb,ldb,ldb-2.8.0.tar.gz
liblogging.spec,http://download.rsyslog.com/liblogging/liblogging-%{version}.tar.gz,https://github.com/rsyslog/liblogging/archive/refs/tags/v1.0.6.tar.gz,200,(same version),,,liblogging,%{name},
libmbim.spec,https://www.freedesktop.org/software/libmbim/libmbim-%{version}.tar.xz,https://www.freedesktop.org/software/libmbim/libmbim-1.26.2.tar.xz,200,1.26.4,https://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz,200,libmbim,%{name},libmbim-1.26.4.tar.xz
libmicrohttpd.spec,https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.76.tar.gz,200,0.9.77,https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.77.tar.gz,200,libmicrohttpd,%{name},libmicrohttpd-0.9.77.tar.gz
libmnl.spec,http://netfilter.org/projects/libmnl/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libmnl/files/libmnl-1.0.5.tar.bz2,200,(same version),,,libmnl,libmnl,
libmodulemd.spec,https://github.com/fedora-modularity/libmodulemd/archive/%{name}-%{version}.tar.gz,https://github.com/fedora-modularity/libmodulemd/archive/libmodulemd-2.14.0.tar.gz,200,2.15.0,https://github.com/fedora-modularity/libmodulemd/archive/libmodulemd-2.15.0.tar.gz,200,libmodulemd,%{name}-%{version},libmodulemd-2.15.0.tar.gz
libmspack.spec,http://www.cabextract.org.uk/libmspack/%{name}-%{version}.tar.gz,https://github.com/kyz/libmspack/archive/refs/tags/v0.10.1alpha.tar.gz,200,1.11,https://github.com/kyz/libmspack/archive/refs/tags/v1.11.tar.gz,200,libmspack,%{name},libmspack-1.11.tar.gz
libnetconf2.spec,https://github.com/CESNET/libnetconf2/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/CESNET/libnetconf2/archive/refs/tags/v2.1.18.tar.gz,200,2.1.34,https://github.com/CESNET/libnetconf2/archive/refs/tags/v2.1.34.tar.gz,200,libnetconf2,%{name},libnetconf2-2.1.34.tar.gz
libnetfilter_conntrack.spec,http://www.netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnetfilter_conntrack/files/libnetfilter_conntrack-1.0.9.tar.bz2,200,(same version),,,libnetfilter_conntrack,%{name},
libnetfilter_cthelper.spec,http://www.netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnetfilter_cthelper/files/libnetfilter_cthelper-1.0.1.tar.bz2,200,(same version),,,libnetfilter_cthelper,libnetfilter_cthelper,
libnetfilter_cttimeout.spec,http://www.netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnetfilter_cttimeout/files/libnetfilter_cttimeout-1.0.1.tar.bz2,200,(same version),,,libnetfilter_cttimeout,libnetfilter_cttimeout,
libnetfilter_queue.spec,http://www.netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnetfilter_queue/files/libnetfilter_queue-1.0.5.tar.bz2,200,(same version),,,libnetfilter_queue,%{name},
libnfnetlink.spec,http://www.netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.2.tar.bz2,200,(same version),,,libnfnetlink,libnfnetlink,
libnftnl.spec,https://netfilter.org/projects/libnftnl/files/%{name}-%{version}.tar.bz2,https://netfilter.org/projects/libnftnl/files/libnftnl-1.2.4.tar.xz,403,1.2.6,https://netfilter.org/projects/libnftnl/files/libnftnl-1.2.6.tar.xz,200,libnftnl,%{name}-%{version},libnftnl-1.2.6.tar.xz
libnl.spec,https://github.com/thom311/libnl/releases/download/libnl3_5_0/%{name}-%{version}.tar.gz,https://github.com/thom311/libnl/archive/refs/tags/libnl3_7_0.tar.gz,200,3.8.0,https://github.com/thom311/libnl/archive/refs/tags/libnl3_8_0.tar.gz,200,libnl,%{name},libnl3_8_0.tar.gz
libnsl.spec,https://github.com/thkukuk/libnsl/archive/v%{version}/libnsl-%{version}.tar.gz,https://github.com/thkukuk/libnsl/archive/v2.0.0/libnsl-2.0.0.tar.gz,200,2.0.1,https://github.com/thkukuk/libnsl/archive/v2.0.1/libnsl-2.0.1.tar.gz,200,libnsl,%{name},libnsl-2.0.1.tar.gz
libnvme.spec,https://github.com/linux-nvme/libnvme/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/linux-nvme/libnvme/archive/v1.3/libnvme-1.3.tar.gz,200,1.6,https://github.com/linux-nvme/libnvme/archive/v1.6/libnvme-1.6.tar.gz,200,libnvme,%{name}-%{version},libnvme-1.6.tar.gz
libpcap.spec,http://www.tcpdump.org/release/%{name}-%{version}.tar.gz,https://github.com/the-tcpdump-group/libpcap/archive/refs/tags/libpcap-1.10.1.tar.gz,200,1.10.4,https://github.com/the-tcpdump-group/libpcap/archive/refs/tags/libpcap-1.10.4.tar.gz,200,libpcap,libpcap,libpcap-1.10.4.tar.gz
libpciaccess.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libpciaccess-0.16.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libpciaccess-0_17.tar.bz2,404,libpciaccess,libpciaccess,
libpipeline.spec,http://download.savannah.gnu.org/releases/libpipeline/%{name}-%{version}.tar.gz,http://download.savannah.gnu.org/releases/libpipeline/libpipeline-1.5.6.tar.gz,200,1.5.7,http://download.savannah.gnu.org/releases/libpipeline/libpipeline-1.5.7.tar.gz,200,libpipeline,%{name},libpipeline-1.5.7.tar.gz
libpng.spec,http://downloads.sourceforge.net/libpng/%{name}-%{version}.tar.xz,http://downloads.sourceforge.net/libpng/libpng-1.6.38.tar.xz,200,1.6.40,http://downloads.sourceforge.net/libpng/libpng-1.6.40.tar.xz,200,libpng,libpng,libpng-1.6.40.tar.xz
libpsl.spec,https://github.com/rockdaboot/libpsl/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/rockdaboot/libpsl/archive/refs/tags/0.21.1.tar.gz,200,0.21.2,https://github.com/rockdaboot/libpsl/archive/refs/tags/0.21.2.tar.gz,200,libpsl,%{name},libpsl-0.21.2.tar.gz
libpwquality.spec,https://github.com/libpwquality/libpwquality/releases/download/libpwquality-%{version}/libpwquality-%{version}.tar.bz2,https://github.com/libpwquality/libpwquality/releases/download/libpwquality-1.4.4/libpwquality-1.4.4.tar.bz2,200,1.4.5,https://github.com/libpwquality/libpwquality/releases/download/libpwquality-1.4.5/libpwquality-1.4.5.tar.bz2,200,libpwquality,libpwquality,libpwquality-1.4.5.tar.bz2
libqmi.spec,https://www.freedesktop.org/software/libqmi/libqmi-%{version}.tar.xz,https://www.freedesktop.org/software/libqmi/libqmi-1.30.4.tar.xz,200,1.30.8,https://www.freedesktop.org/software/libqmi/libqmi-1.30.8.tar.xz,200,libqmi,%{name},libqmi-1.30.8.tar.xz
librdkafka.spec,%{name}-%{version}.tar.gz,https://github.com/edenhill/librdkafka/archive/refs/tags/v1.8.2.tar.gz,200,2.3.0,https://github.com/edenhill/librdkafka/archive/refs/tags/v2.3.0.tar.gz,200,librdkafka,%{name},librdkafka-2.3.0.tar.gz
librelp.spec,http://download.rsyslog.com/librelp/%{name}-%{version}.tar.gz,https://download.rsyslog.com/librelp/librelp-1.10.0.tar.gz,200,1.11.0,https://download.rsyslog.com/librelp/librelp-1.11.0.tar.gz,200,librelp,%{name},librelp-1.11.0.tar.gz
librepo.spec,https://github.com/rpm-software-management/librepo/archive/%{name}-%{version}.tar.gz,https://github.com/rpm-software-management/librepo/archive/refs/tags/1.14.5.tar.gz,200,1.17.0,https://github.com/rpm-software-management/librepo/archive/refs/tags/1.17.0.tar.gz,200,librepo,%{name}-%{version},librepo-1.17.0.tar.gz
librsync.spec,%{name}-%{version}.tar.gz,https://github.com/librsync/librsync/archive/refs/tags/v2.3.2.tar.gz,200,2.3.4,https://github.com/librsync/librsync/archive/refs/tags/v2.3.4.tar.gz,200,librsync,%{name},librsync-2.3.4.tar.gz
libseccomp.spec,https://github.com/seccomp/libseccomp/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/seccomp/libseccomp/releases/download/v2.5.4/libseccomp-2.5.4.tar.gz,200,(same version),,,libseccomp,%{name},
libselinux.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/archive/refs/tags/libselinux-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/archive/refs/tags/libselinux-3.5.tar.gz,200,libselinux,%{name},libselinux-3.5.tar.gz
libsemanage.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/libsemanage-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/libsemanage-3.5.tar.gz,200,libsemanage,%{name},libsemanage-3.5.tar.gz
libsepol.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/libsepol-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/libsepol-3.5.tar.gz,200,libsepol,%{name},libsepol-3.5.tar.gz
libsigc++.spec,http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.99/%{name}-%{version}.tar.xz,https://github.com/libsigcplusplus/libsigcplusplus/archive/refs/tags/3.2.0.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.99/libsigc++-3_6_0.tar.xz,404,libsigc++,libsigc,
libslirp.spec,https://gitlab.com/qemu-project/libslirp/-/archive/v%{version}/%{name}-v%{version}.tar.gz,https://gitlab.com/qemu-project/libslirp/-/archive/v4.7.0/libslirp-v4.7.0.tar.gz,200,(same version),,,libslirp,%{name}-v%{version},
libSM.spec,https://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.xz,https://ftp.x.org/pub/individual/lib/libSM-1.2.4.tar.xz,200,(same version),,,libSM,libSM,
libsodium.spec,https://download.libsodium.org/libsodium/releases/%{name}-%{version}-stable.tar.gz,https://download.libsodium.org/libsodium/releases/libsodium-1.0.18-stable.tar.gz,200,1.0.19,https://download.libsodium.org/libsodium/releases/libsodium-1.0.19-stable.tar.gz,200,libsodium,%{name},libsodium-1.0.19-stable.tar.gz
libsolv.spec,https://github.com/openSUSE/libsolv/archive/%{name}-%{version}.tar.gz,https://github.com/openSUSE/libsolv/archive/refs/tags/0.7.22.tar.gz,200,0.7.27,https://github.com/openSUSE/libsolv/archive/refs/tags/0.7.27.tar.gz,200,libsolv,%{name},libsolv-0.7.27.tar.gz
libsoup.spec,http://ftp.gnome.org/pub/GNOME/sources/libsoup/3.2/%{name}-%{version}.tar.xz,https://github.com/GNOME/libsoup/archive/refs/tags/3.2.1.tar.xz ,200,3.4.4,http://ftp.gnome.org/pub/GNOME/sources/libsoup/3.4/libsoup-3.4.4.tar.xz,200,libsoup,%{name},libsoup-3.4.4.tar.xz
libssh.spec,https://www.libssh.org/files/0.10/%{name}-%{version}.tar.xz,https://www.libssh.org/files/0.10/libssh-0.10.5.tar.xz,200,(same version),,,libssh,%{name},
libssh2.spec,https://www.libssh2.org/download/libssh2-%{version}.tar.gz,https://github.com/libssh2/libssh2/archive/refs/tags/libssh2-1.11.0.tar.gz,200,(same version),,,libssh2,libssh2,
libtalloc.spec,https://www.samba.org/ftp/talloc/talloc-%{version}.tar.gz,https://www.samba.org/ftp/talloc/talloc-2.4.0.tar.gz,200,2.4.1,https://www.samba.org/ftp/talloc/talloc-2.4.1.tar.gz,200,libtalloc,talloc,talloc-2.4.1.tar.gz
libtar.spec,https://github.com/tklauser/libtar/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/tklauser/libtar/archive/refs/tags/v1.2.20.tar.gz,200,Warning: repo isn't maintained anymore. See https://sources.debian.org/patches/libtar,,,libtar,%{name},
libtasn1.spec,http://ftp.gnu.org/gnu/libtasn1/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.19.0.tar.gz,200,(same version),,,libtasn1,libtasn1,
libtdb.spec,http://samba.org/ftp/tdb/tdb-%{version}.tar.gz,http://samba.org/ftp/tdb/tdb-1.4.8.tar.gz,200,1.4.9,http://samba.org/ftp/tdb/tdb-1.4.9.tar.gz,200,libtdb,tdb,tdb-1.4.9.tar.gz
libteam.spec,http://libteam.org/files/%{name}-%{version}.tar.gz,https://github.com/jpirko/libteam/archive/refs/tags/v1.31.tar.gz,200,1.32,https://github.com/jpirko/libteam/archive/refs/tags/v1.32.tar.gz,200,libteam,%{name},libteam-1.32.tar.gz
libtevent.spec,http://samba.org/ftp/tevent/tevent-%{version}.tar.gz,http://samba.org/ftp/tevent/tevent-0.14.1.tar.gz,200,0.16.0,http://samba.org/ftp/tevent/tevent-0.16.0.tar.gz,200,libtevent,tevent,tevent-0.16.0.tar.gz
libtiff.spec,https://gitlab.com/libtiff/libtiff/-/archive/v%{version}/libtiff-v%{version}.tar.gz,https://gitlab.com/libtiff/libtiff/-/archive/v4.5.1/libtiff-v4.5.1.tar.gz,200,4.6.0,https://gitlab.com/libtiff/libtiff/-/archive/v4.6.0/libtiff-v4.6.0.tar.gz,200,libtiff,libtiff-v,libtiff-v4.6.0.tar.gz
libtirpc.spec,http://downloads.sourceforge.net/project/libtirpc/libtirpc/0.3.2/%{name}-%{version}.tar.bz2,http://downloads.sourceforge.net/project/libtirpc/libtirpc/0.3.2/libtirpc-1.3.3.tar.bz2,200,1.3.4,http://downloads.sourceforge.net/project/libtirpc/libtirpc/0.3.2/libtirpc-1.3.4.tar.bz2,200,libtirpc,%{name},libtirpc-1.3.4.tar.bz2
libtool.spec,http://ftp.gnu.org/gnu/libtool/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/libtool/libtool-2.4.7.tar.xz,200,(same version),,,libtool,libtool,
libtraceevent.spec,https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/snapshot/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/snapshot/libtraceevent-1.6.3.tar.gz,200,1.7.3,https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/snapshot/libtraceevent-1.7.3.tar.gz,200,libtraceevent,%{name},libtraceevent-1.7.3.tar.gz
libtracefs.spec,https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/libtracefs-1.5.0.tar.gz,200,1.7.0,https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/libtracefs-1.7.0.tar.gz,200,libtracefs,%{name},libtracefs-1.7.0.tar.gz
libunistring.spec,http://ftp.gnu.org/gnu/libunistring/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/libunistring/libunistring-1.0.tar.xz,200,1.1,http://ftp.gnu.org/gnu/libunistring/libunistring-1.1.tar.xz,200,libunistring,%{name},libunistring-1.1.tar.xz
libunwind.spec,http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz,http://download.savannah.gnu.org/releases/libunwind/libunwind-1.6.2.tar.gz,200,(same version),,,libunwind,libunwind,
libusb.spec,http://downloads.sourceforge.net/libusb/libusb-%{version}.tar.bz2,http://downloads.sourceforge.net/libusb/libusb-1.0.26.tar.bz2,200,(same version),,,libusb,libusb,
libuv.spec,https://github.com/libuv/libuv/archive/%{name}-%{version}.tar.gz,https://github.com/libuv/libuv/archive/refs/tags/v1.44.2.tar.gz,200,1.47.0,https://github.com/libuv/libuv/archive/refs/tags/v1.47.0.tar.gz,200,libuv,libuv,libuv-1.47.0.tar.gz
libvirt.spec,http://libvirt.org/sources/%{name}-%{version}.tar.xz,https://github.com/libvirt/libvirt/archive/refs/tags/v9.3.0.tar.xz,200,9.9.0,http://libvirt.org/sources/libvirt-9.9.0.tar.xz,200,libvirt,%{name},libvirt-9.9.0.tar.xz
libwebp.spec,https://github.com/webmproject/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/webmproject/libwebp/archive/refs/tags/v1.3.2.tar.gz,200,(same version),,,libwebp,libwebp,
libX11.spec,https://github.com/freedesktop/xorg-libX11/archive/refs/tags/%{name}-%{version}.tar.gz,https://gitlab.freedesktop.org/xorg/lib/libx11/-/archive/libX11-1.8.5/libx11-libX11-1.8.5.tar.gz,200,1.8.7,https://gitlab.freedesktop.org/xorg/lib/libx11/-/archive/libX11-1.8.7/libx11-libX11-1.8.7.tar.gz,200,libX11,%{name},libx11-libX11-1.8.7.tar.gz
libXau.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXau-1.0.9.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXau-1.0_11.tar.bz2,404,libXau,libXau,
libxcb.spec,http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.gz,http://xcb.freedesktop.org/dist/libxcb-1.15.tar.gz,200,1.16,http://xcb.freedesktop.org/dist/libxcb-1.16.tar.gz,200,libxcb,libxcb,libxcb-1.16.tar.gz
libXcomposite.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXcomposite-0.4.5.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXcomposite-0.4_6.tar.bz2,404,libXcomposite,%{name},
libXcursor.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.gz,http://ftp.x.org/pub/individual/lib/libXcursor-1.2.1.tar.gz,200,(same version),,,libXcursor,%{name},
libXdamage.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXdamage-1.1.5.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXdamage-1.1_6.tar.bz2,404,libXdamage,%{name},
libXdmcp.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXdmcp-1.1.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXdmcp-1.1_4.tar.bz2,404,libXdmcp,libXdmcp,
libXext.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXext-1.3.4.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXext-1.3_5.tar.bz2,404,libXext,libXext,
libXfixes.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXfixes-5.0.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXfixes-6_0_1.tar.bz2,404,libXfixes,%{name},
libXfont2.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXfont2-2.0.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXfont2-2.0_6.tar.bz2,404,libXfont2,%{name},
libXi.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXi-1.7.10.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXi-1_8_1.tar.bz2,404,libXi,%{name},
libXinerama.spec,http://pub/individual/lib/%{name}-%{version}.tar.xz,https://gitlab.freedesktop.org/xorg/lib/libxinerama/-/archive/libXinerama-1.1.5/libxinerama-libXinerama-1.1.5.tar.gz,200,(same version),,,libXinerama,%{name},
libxkbcommon.spec,https://xkbcommon.org/download/%{name}-%{version}.tar.xz,https://xkbcommon.org/download/libxkbcommon-1.4.1.tar.xz,200,1.6.0,https://xkbcommon.org/download/libxkbcommon-1.6.0.tar.xz,200,libxkbcommon,%{name},libxkbcommon-1.6.0.tar.xz
libxml2.spec,https://download.gnome.org/sources/libxml2/2.9/%{name}-%{version}.tar.xz,https://github.com/GNOME/libxml2/archive/refs/tags/v2.11.4.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://download.gnome.org/sources/libxml2/2.9/libxml2-2_12_1.tar.xz,404,libxml2,%{name},
libXrandr.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXrandr-1.5.2.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXrandr-1.5_4.tar.bz2,404,libXrandr,libXrandr,
libXrender.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXrender-0.9.10.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXrender-0.9_11.tar.bz2,404,libXrender,libXrender,
libXScrnSaver.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXScrnSaver-1.2.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXScrnSaver-1.2_4.tar.bz2,404,libXScrnSaver,%{name},
libxshmfence.spec,https://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.gz,https://ftp.x.org/pub/individual/lib/libxshmfence-1.3.2.tar.gz,200,(same version),,,libxshmfence,libxshmfence,
libxslt.spec,https://download.gnome.org/sources/%{name}/1.1/%{name}-%{version}.tar.gz,https://github.com/GNOME/libxslt/archive/refs/tags/v1.1.37.tar.gz,200,1.1.39,https://github.com/GNOME/libxslt/archive/refs/tags/v1.1.39.tar.gz,200,libxslt,%{name},libxslt-1.1.39.tar.gz
libXt.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXt-1.2.1.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXt-1_3_0.tar.bz2,404,libXt,libXt,
libXtst.spec,http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2,http://ftp.x.org/pub/individual/lib/libXtst-1.2.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/lib/libXtst-1.2_4.tar.bz2,404,libXtst,%{name},
libyaml.spec,http://pyyaml.org/download/libyaml/yaml-%{version}.tar.gz,https://github.com/yaml/libyaml/archive/refs/tags/0.2.5.tar.gz,200,(same version),,,libyaml,yaml,
libyang.spec,https://github.com/CESNET/libyang/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/CESNET/libyang/archive/refs/tags/v2.1.55.tar.gz,200,2.1.128,https://github.com/CESNET/libyang/archive/refs/tags/v2.1.128.tar.gz,200,libyang,%{name},libyang-2.1.128.tar.gz
linux-esx.spec,http://www.kernel.org/pub/linux/kernel/v6.x/linux-%{version}.tar.xz,http://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.62.tar.xz,200,Warning: linux-esx.spec Source0 version 6.1.62 is higher than detected latest version 6.0.19 .,,,linux,linux i40e iavf ice fips-canister jitterentropy,
linux-rt.spec,http://www.kernel.org/pub/linux/kernel/v6.x/linux-%{version}.tar.xz,http://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.62.tar.xz,200,Warning: linux-rt.spec Source0 version 6.1.62 is higher than detected latest version 6.0.19 .,,,linux,linux i40e iavf ice fips-canister jitterentropy,
linux-secure.spec,http://www.kernel.org/pub/linux/kernel/v6.x/linux-%{version}.tar.xz,http://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.62.tar.xz,200,Warning: linux-secure.spec Source0 version 6.1.62 is higher than detected latest version 6.0.19 .,,,linux,linux fips-canister jitterentropy,
linux.spec,http://www.kernel.org/pub/linux/kernel/v6.x/linux-%{version}.tar.xz,http://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.62-acvp}.tar.xz,404,Warning: linux.spec Source0 version 6.1.62-acvp} is higher than detected latest version 6.0.19 .,,,linux,linux ena_linux efa_linux i40e iavf ice fips-canister jitterentropy,
linux-api-headers.spec,http://www.kernel.org/pub/linux/kernel/v6.x/linux-%{version}.tar.xz,http://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.62.tar.xz,200,Warning: linux-api-headers.spec Source0 version 6.1.62 is higher than detected latest version 6.0.19 .,,,linux-api-headers,linux,
linux-firmware.spec,%{name}-%{version}.tar.gz,https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/linux-firmware-20230207.tar.gz,404,20231111,https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/linux-firmware-20231111.tar.gz,200,linux-firmware,%{name},linux-firmware-20231111.tar.gz
Linux-PAM.spec,https://github.com/linux-pam/linux-pam/releases/download/v%{version}/%{name}-%{version}.tar.xz,https://github.com/linux-pam/linux-pam/releases/download/v1.5.3/Linux-PAM-1.5.3.tar.xz,200,(same version),,,Linux-PAM,%{name},
linuxptp.spec,%{name}-%{version}.tgz,https://github.com/richardcochran/linuxptp/archive/refs/tags/v4.0.tgz,200,Warning: Manufacturer may changed version packaging format.,linuxptp-4_1.tgz,0,linuxptp,linuxptp,
lksctp-tools.spec,https://github.com/sctp/lksctp-tools/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/sctp/lksctp-tools/archive/refs/tags/v1.0.19.tar.gz,200,(same version),,,lksctp-tools,%{name},
lldb.spec,https://github.com/llvm/llvm-project/releases/tag/%{name}-%{version}.src.tar.xz,https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/lldb-15.0.7.src.tar.xz,200,17.0.6,https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/lldb-17.0.6.src.tar.xz,200,lldb,%{name},lldb-17.0.6.src.tar.xz
llvm.spec,https://github.com/llvm/llvm-project/releases/tag/%{name}-%{version}.src.tar.xz,https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-15.0.7.src.tar.xz,200,17.0.6,https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/llvm-17.0.6.src.tar.xz,200,llvm,%{name} cmake,llvm-17.0.6.src.tar.xz
lm-sensors.spec,https://github.com/lm-sensors/lm-sensors/archive/%{name}-%{version}.tar.gz,https://github.com/lm-sensors/lm-sensors/archive/refs/tags/V3-6-0.tar.gz,200,(same version),,,lm-sensors,lm-sensors,
lmdb.spec,https://github.com/LMDB/lmdb/archive/LMDB_%{version}.tar.gz,https://github.com/LMDB/lmdb/archive/LMDB_0.9.29.tar.gz,200,0.9.31,https://github.com/LMDB/lmdb/archive/LMDB_0.9.31.tar.gz,200,lmdb,LMDB,LMDB_0.9.31.tar.gz
logrotate.spec,https://github.com/logrotate/logrotate/archive/%{name}-%{version}.tar.gz,https://github.com/logrotate/logrotate/archive/refs/tags/3.20.1.tar.gz,200,3.21.0,https://github.com/logrotate/logrotate/archive/refs/tags/3.21.0.tar.gz,200,logrotate,logrotate,logrotate-3.21.0.tar.gz
lshw.spec,http://www.ezix.org/software/files/%{name}-%{version}.tar.gz,https://github.com/lyonel/lshw/archive/refs/tags/B.02.19.tar.gz,200,(same version),,,lshw,lshw,
lsof.spec,https://github.com/lsof-org/lsof/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/lsof-org/lsof/archive/refs/tags/4.96.4.tar.gz,200,4.99.0,https://github.com/lsof-org/lsof/archive/refs/tags/4.99.0.tar.gz,200,lsof,%{name},lsof-4.99.0.tar.gz
lsscsi.spec,http://sg.danny.cz/scsi/%{name}-%{version}.tar.xz,http://sg.danny.cz/scsi/lsscsi-0.32.tar.xz,200,(same version),,,lsscsi,lsscsi,
ltrace.spec,http://www.ltrace.org/%{name}_%{version}.orig.tar.bz2,http://www.ltrace.org/ltrace_0.7.3.orig.tar.bz2,200,(same version),,,ltrace,ltrace,
lua.spec,http://www.lua.org/ftp/%{name}-%{version}.tar.gz,http://www.lua.org/ftp/lua-5.4.6.tar.gz,200,(same version),,,lua,%{name}-%{version} %{name}-%{bootstrap_version},
lvm2.spec,https://www.sourceware.org/pub/lvm2/releases/LVM2.%{version}.tgz,https://github.com/lvmteam/lvm2/archive/refs/tags/v2_03_16.tgz,200,2.03.22,https://www.sourceware.org/pub/lvm2/releases/LVM2.2.03.22.tgz,200,lvm2,LVM2,LVM2.2.03.22.tgz
lxcfs.spec,%{name}-%{version}.tar.gz,https://github.com/lxc/lxcfs/archive/refs/tags/lxcfs-5.0.3.tar.gz,200,5.0.4,https://github.com/lxc/lxcfs/archive/refs/tags/lxcfs-5.0.4.tar.gz,200,lxcfs,%{name},lxcfs-5.0.4.tar.gz
lz4.spec,https://github.com/lz4/lz4/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/lz4/lz4/archive/v1.9.4/lz4-1.9.4.tar.gz,200,(same version),,,lz4,%{name},
lzo.spec,http://www.oberhumer.com/opensource/lzo/download/%{name}-%{version}.tar.gz,http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz,200,,,,lzo,%{name},
m4.spec,http://ftp.gnu.org/gnu/m4/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz,200,(same version),,,m4,m4,
make.spec,http://ftp.gnu.org/gnu/make/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/make/make-4.3.tar.gz,200,4.4.1,http://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz,200,make,make,make-4.4.1.tar.gz
man-db.spec,http://download.savannah.nongnu.org/releases/man-db/%{name}-%{version}.tar.xz,https://gitlab.com/man-db/man-db/-/archive/2.11.1/man-db-2.11.1.tar.xz,200,2.12.0,http://download.savannah.nongnu.org/releases/man-db/man-db-2.12.0.tar.xz,200,man-db,man-db,man-db-2.12.0.tar.xz
man-pages.spec,http://www.kernel.org/pub/linux/docs/man-pages/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/snapshot/man-pages-5.13.tar.gz,200,6.05.01,https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/snapshot/man-pages-6.05.01.tar.gz,200,man-pages,man-pages,man-pages-6.05.01.tar.gz
mariadb.spec,https://archive.mariadb.org/%{name}-%{version}/source/%{name}-%{version}.tar.gz,https://github.com/MariaDB/server/archive/refs/tags/mariadb-10.9.4.tar.gz,200,11.3.1,https://github.com/MariaDB/server/archive/refs/tags/mariadb-11.3.1.tar.gz,200,mariadb,%{name},mariadb-11.3.1.tar.gz
mc.spec,http://ftp.midnight-commander.orgtar/%{name}-%{version}.tar.xz,https://github.com/MidnightCommander/mc/archive/refs/tags/4.8.28.tar.xz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.midnight-commander.orgtar/mc-4.8_30.tar.xz,0,mc,%{name},
memcached.spec,https://www.memcached.org/files/%{name}-%{version}.tar.gz,https://github.com/memcached/memcached/archive/refs/tags/1.6.22.tar.gz,200,(same version),,,memcached,%{name},
mercurial.spec,https://www.mercurial-scm.org/release/%{name}-%{version}.tar.gz,https://www.mercurial-scm.org/release/mercurial-6.3.1.tar.gz,200,6.6,https://www.mercurial-scm.org/release/mercurial-6.6.tar.gz,200,mercurial,%{name},mercurial-6.6.tar.gz
mesa.spec,http://ftp.freedesktop.org/pub/%{name}/%{version}/%{name}-%{version}.tar.gz,https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-23.0.0/mesa-mesa-23.0.0.tar.gz,200,23.3.0,https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-23.3.0/mesa-mesa-23.3.0.tar.gz,200,mesa,%{name},mesa-mesa-23.3.0.tar.gz
meson.spec,https://github.com/mesonbuild/meson/archive/%{version}/%{name}-%{version}.tar.gz,https://github.com/mesonbuild/meson/archive/1.0.0/meson-1.0.0.tar.gz,200,1.3.0,https://github.com/mesonbuild/meson/archive/1.3.0/meson-1.3.0.tar.gz,200,meson,%{name},meson-1.3.0.tar.gz
mingetty.spec,http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/mingetty/mingetty-1.08.tar.gz,200,(same version),,,mingetty,%{name},
mkinitcpio.spec,https://projects.archlinux.org/mkinitcpio.git/snapshot/%{name}-%{version}.tar.gz,https://github.com/archlinux/mkinitcpio/archive/refs/tags/v34.tar.gz,200,37,https://github.com/archlinux/mkinitcpio/archive/refs/tags/v37.tar.gz,200,mkinitcpio,%{name},mkinitcpio-37.tar.gz
mlocate.spec,http://releases.pagure.org/mlocate/%{name}-%{version}.tar.xz,http://releases.pagure.org/mlocate/mlocate-0.26.tar.xz,200,(same version),,,mlocate,%{name},
mm-common.spec,https://gitlab.gnome.org/GNOME/mm-common/-/archive/%{version}/mm-common-%{version}.tar.gz,https://gitlab.gnome.org/GNOME/mm-common/-/archive/1.0.5/mm-common-1.0.5.tar.gz,200,(same version),,,mm-common,mm-common,
ModemManager.spec,https://www.freedesktop.org/software/ModemManager/%{name}-%{version}.tar.xz,https://www.freedesktop.org/software/ModemManager/ModemManager-1.18.12.tar.xz,200,(same version),,,ModemManager,%{name},
mokutil.spec,https://github.com/lcp/mokutil/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz,https://github.com/lcp/mokutil/archive/0.6.0.tar.gz#/mokutil-0.6.0.tar.gz,200,(same version),,,mokutil,%{name},
monitoring-plugins.spec,https://github.com/%{name}/%{name}/archive/refs/tags/%{name}-%{version},https://github.com/monitoring-plugins/monitoring-plugins/archive/refs/tags/v2.3.1.tar.gz,200,2.3.5,https://github.com/monitoring-plugins/monitoring-plugins/archive/refs/tags/v2.3.5.tar.gz,200,monitoring-plugins,monitoring-plugins,monitoring-plugins-2.3.5.tar.gz
motd.spec,https://github.com/rtnpro/motdgen/archive/motdgen-a152954.tar.gz,https://github.com/rtnpro/motdgen/archive/motdgen-a152954.tar.gz,404,Warning: motd.spec Source0 version 0.1.3 is higher than detected latest version 0.1.2 .,,,motd,motdgen-a152954.tar.gz,
mozjs.spec,https://ftp.mozilla.org/pub/firefox/releases/%{version}esr/source/firefox-%{version}esr.source.tar.xz,https://ftp.mozilla.org/pub/firefox/releases/102.12.0esr/source/firefox-102.12.0esr.source.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://ftp.mozilla.org/pub/firefox/releases/120_0esr/source/firefox-120_0esr.source.tar.xz,404,mozjs,firefox-%{version},
mpc.spec,http://www.multiprecision.org/mpc/download/%{name}-%{version}.tar.gz,https://www.multiprecision.org/downloads/mpc-1.3.1.tar.gz,200,,,,mpc,mpc,
mpfr.spec,http://www.mpfr.org/%{name}-%{version}/%{name}-%{version}.tar.xz,http://www.mpfr.org/mpfr-4.1.0/mpfr-4.1.0.tar.xz,200,(same version),,,mpfr,mpfr,
mysql.spec,https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-boost-%{version}.tar.gz,https://github.com/mysql/mysql-server/archive/refs/tags/mysql-8.0.35.tar.gz,200,8.2.0,https://github.com/mysql/mysql-server/archive/refs/tags/mysql-8.2.0.tar.gz,200,mysql,%{name}-boost,mysql-8.2.0.tar.gz
nano.spec,http://www.nano-editor.org/dist/v3/%{name}-%{version}.tar.xz,https://ftpmirror.gnu.org/nano/nano-7.0.tar.xz,200,7.2,https://ftpmirror.gnu.org/nano/nano-7.2.tar.xz,200,nano,%{name},nano-7.2.tar.xz
nasm.spec,http://www.nasm.us/pub/nasm/releasebuilds/%{version}/nasm-%{version}.tar.xz,https://github.com/netwide-assembler/nasm/archive/refs/tags/nasm-2.16.01.tar.gz,200,(same version),,,nasm,%{name} %{name}-%{version}-xdoc,
ncurses.spec,https://invisible-island.net/archives/ncurses/current/%{name}-%{version}-%{ncursessubversion}.tgz,https://github.com/ThomasDickey/ncurses-snapshots/archive/refs/tags/v6_4.tgz,200,Warning: Manufacturer may changed version packaging format.,https://invisible-island.net/archives/ncurses/current/ncurses-6.4.20231125_20231125-%{ncursessubversion}.tgz,404,ncurses,%{name},
ndctl.spec,https://github.com/pmem/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/pmem/ndctl/archive/refs/tags/v74.tar.gz,200,78,https://github.com/pmem/ndctl/archive/refs/tags/v78.tar.gz,200,ndctl,%{name},ndctl-78.tar.gz
nerdctl.spec,https://github.com/containerd/nerdctl/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/containerd/nerdctl/archive/refs/tags/v1.4.0.tar.gz,200,1.7.0,https://github.com/containerd/nerdctl/archive/refs/tags/v1.7.0.tar.gz,200,nerdctl,%{name},nerdctl-1.7.0.tar.gz
net-snmp.spec,http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.gz,https://github.com/net-snmp/net-snmp/archive/refs/tags/v5.9.3.tar.gz,200,5.9.4,https://github.com/net-snmp/net-snmp/archive/refs/tags/v5.9.4.tar.gz,200,net-snmp,%{name},net-snmp-5.9.4.tar.gz
net-tools.spec,https://github.com/ecki/net-tools/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/ecki/net-tools/archive/refs/tags/v2.10.tar.gz,200,(same version),,,net-tools,%{name},
netcat.spec,http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/project/netcat/netcat/0.7.1/netcat-0.7.1.tar.gz,200,(same version),,,netcat,%{name},
netkit-telnet.spec,http://ftp.linux.org.uk/pub/linux/Networking/netkit/%{name}-%{version}.tar.gz,http://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-telnet-0.17.tar.gz,200,(same version),,,netkit-telnet,netkit-telnet,
nettle.spec,https://ftp.gnu.org/gnu/nettle/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/nettle/nettle-3.8.1.tar.gz,200,3.9.1,https://ftp.gnu.org/gnu/nettle/nettle-3.9.1.tar.gz,200,nettle,%{name},nettle-3.9.1.tar.gz
network-config-manager.spec,https://github.com/vmware/network-config-manager/archive/%{name}-%{version}.tar.gz,https://github.com/vmware/network-config-manager/archive/refs/tags/v0.6.5.tar.gz,200,(same version),,,network-config-manager,%{name}-%{version},
network-event-broker.spec,https://github.com/vmware/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/vmware/network-event-broker/archive/refs/tags/v0.3.tar.gz,200,0.3.1,https://github.com/vmware/network-event-broker/archive/refs/tags/v0.3.1.tar.gz,200,network-event-broker,%{name},network-event-broker-0.3.1.tar.gz
newt.spec,https://fedorahosted.org/releases/n/e/newt/%{name}-%{version}.tar.gz,https://github.com/mlichvar/newt/archive/refs/tags/r0-52-21.tar.gz,200,0.52.24,https://fedorahosted.org/releases/n/e/newt/newt-0.52.24.tar.gz,200,newt,newt,newt-0.52.24.tar.gz
nfs-utils.spec,https://sourceforge.net/projects/nfs/files/nfs-utils/%{version}/%{name}-%{version}.tar.xz,https://sourceforge.net/projects/nfs/files/nfs-utils/2.6.2/nfs-utils-2.6.2.tar.xz,200,2.6.4,https://sourceforge.net/projects/nfs/files/nfs-utils/2.6.4/nfs-utils-2.6.4.tar.xz,200,nfs-utils,%{name},nfs-utils-2.6.4.tar.xz
nftables.spec,%{url}/files/%{name}-%{version}.tar.xz,https://netfilter.org/projects/nftables/files/nftables-1.0.6.tar.bz2,403,Warning: Manufacturer may changed version packaging format.,%{url}/files/nftables-1.0_9.tar.xz,0,nftables,%{name},
nghttp2.spec,https://github.com/nghttp2/nghttp2/releases/download/v%{version}/%{name}-%{version}.tar.xz,https://github.com/nghttp2/nghttp2/releases/download/v1.57.0/nghttp2-1.57.0.tar.xz,200,1.58.0,https://github.com/nghttp2/nghttp2/releases/download/v1.58.0/nghttp2-1.58.0.tar.xz,200,nghttp2,%{name},nghttp2-1.58.0.tar.xz
nginx.spec,http://nginx.org/download/nginx-%{version}.tar.gz,https://github.com/nginx/nginx/archive/refs/tags/release-1.25.2.tar.gz,200,1.25.3,https://github.com/nginx/nginx/archive/refs/tags/release-1.25.3.tar.gz,200,nginx,%{name} %{name}-njs,release-1.25.3.tar.gz
nginx-ingress.spec,https://github.com/nginxinc/kubernetes-ingress/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/nginxinc/kubernetes-ingress/archive/refs/tags/v2.4.2.tar.gz,200,3.3.2,https://github.com/nginxinc/kubernetes-ingress/archive/refs/tags/v3.3.2.tar.gz,200,nginx-ingress,nginx-ingress,nginx-ingress-3.3.2.tar.gz
nicstat.spec,http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/nicstat/nicstat-1.95.tar.gz,200,(same version),,,nicstat,nicstat,
ninja-build.spec,https://github.com/ninja-build/ninja/archive/%{name}-%{version}.tar.gz,https://github.com/ninja-build/ninja/archive/refs/tags/v1.11.1.tar.gz,200,(same version),,,ninja-build,ninja-build,
nmap.spec,https://nmap.org/dist/%{name}-%{version}.tar.bz2,https://nmap.org/dist/nmap-7.93.tar.bz2,200,7.94,https://nmap.org/dist/nmap-7.94.tar.bz2,200,nmap,%{name},nmap-7.94.tar.bz2
nodejs.spec,https://nodejs.org/download/release/v%{version}/node-v%{version}.tar.gz,https://github.com/nodejs/node/archive/refs/tags/v18.18.2.tar.gz,200,21.2.0,https://github.com/nodejs/node/archive/refs/tags/v21.2.0.tar.gz,200,nodejs,node,nodejs-21.2.0.tar.gz
npth.spec,https://github.com/gpg/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/gpg/npth/archive/npth-1.6.tar.gz,200,(same version),,,npth,npth,
nspr.spec,http://ftp.mozilla.org/pub/nspr/releases/v%{version}/src/%{name}-%{version}.tar.gz,http://ftp.mozilla.org/pub/nspr/releases/v4.33/src/nspr-4.33.tar.gz,200,4.35,http://ftp.mozilla.org/pub/nspr/releases/v4.35/src/nspr-4.35.tar.gz,200,nspr,nspr,nspr-4.35.tar.gz
nss.spec,http://ftp.mozilla.org/pub/security/nss/releases/NSS_3_78_RTM/src/%{name}-%{version}.tar.gz,http://ftp.mozilla.org/pub/security/nss/releases/NSS_3_78_RTM/src/nss-3.78.tar.gz,200,Warning: Manufacturer may changed version packaging format.,http://ftp.mozilla.org/pub/security/nss/releases/NSS_3_95_RTM/src/nss-3_95.tar.gz,404,nss,%{name},
nss-altfiles.spec,https://github.com/aperezdc/nss-altfiles/archive/%{name}-%{version}.tar.gz,https://github.com/aperezdc/nss-altfiles/archive/refs/tags/v2.23.0.tar.gz,200,(same version),,,nss-altfiles,nss-altfiles,
nss-pam-ldapd.spec,http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz,https://github.com/arthurdejong/nss-pam-ldapd/archive/refs/tags/0.9.12.tar.gz,200,(same version),,,nss-pam-ldapd,%{name},
ntp.spec,https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/%{name}-%{version}.tar.gz,https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p17.tar.gz,200,Warning: ntp.spec Source0 version 4.2.8p17 is higher than detected latest version 4.2.8 .,,,ntp,%{name} ntpstat,
ntpsec.spec,https://ftp.ntpsec.org/pub/releases/%{name}-%{version}.tar.gz,https://ftp.ntpsec.org/pub/releases/ntpsec-1.2.2.tar.gz,200,(same version),,,ntpsec,ntpsec,
numactl.spec,https://github.com/numactl/numactl/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/numactl/numactl/releases/download/v2.0.16/numactl-2.0.16.tar.gz,200,(same version),,,numactl,%{name},
nvme-cli.spec,%{name}-%{version}.tar.gz,https://github.com/linux-nvme/nvme-cli/archive/refs/tags/v2.3.tar.gz,200,2.6,https://github.com/linux-nvme/nvme-cli/archive/refs/tags/v2.6.tar.gz,200,nvme-cli,nvme-cli,nvme-cli-2.6.tar.gz
oniguruma.spec,https://github.com/kkos/oniguruma/releases/download/v%{version}/onig-%{version}.tar.gz,https://github.com/kkos/oniguruma/releases/download/v6.9.8/onig-6.9.8.tar.gz,200,6.9.9,https://github.com/kkos/oniguruma/releases/download/v6.9.9/onig-6.9.9.tar.gz,200,oniguruma,onig,onig-6.9.9.tar.gz
open-iscsi.spec,%{name}-%{version}.tar.gz,https://github.com/open-iscsi/open-iscsi/archive/refs/tags/2.1.6.tar.gz,200,2.1.9,https://github.com/open-iscsi/open-iscsi/archive/refs/tags/2.1.9.tar.gz,200,open-iscsi,open,open-iscsi-2.1.9.tar.gz
open-isns.spec,%{name}-%{version}.tar.gz,https://github.com/open-iscsi/open-isns/archive/refs/tags/v0.101.tar.gz,200,0.102,https://github.com/open-iscsi/open-isns/archive/refs/tags/v0.102.tar.gz,200,open-isns,open,open-isns-0.102.tar.gz
open-sans-fonts.spec,%{name}-%{version}.tar.xz,,404,,,,open-sans-fonts,%{name},
open-vm-tools.spec,https://github.com/vmware/open-vm-tools/archive/%{name}-stable-%{version}.tar.gz,https://github.com/vmware/open-vm-tools/archive/refs/tags/stable-12.3.5.tar.gz,200,Warning: open-vm-tools.spec Source0 version 12.3.5 is higher than detected latest version 12.3.0 .,,,open-vm-tools,%{name} %{gosc_scripts}-%{gosc_ver},
open-vmdk.spec,https://github.com/vmware/open-vmdk/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/vmware/open-vmdk/archive/refs/tags/v0.3.6.tar.gz,200,(same version),,,open-vmdk,%{name},
openipmi.spec,https://sourceforge.net/projects/openipmi/files/latest/download/OpenIPMI-%{version}.tar.gz,https://sourceforge.net/projects/openipmi/files/latest/download/OpenIPMI-2.0.33.tar.gz,200,2.0.34,https://sourceforge.net/projects/openipmi/files/latest/download/OpenIPMI-2.0.34.tar.gz,200,openipmi,OpenIPMI,OpenIPMI-2.0.34.tar.gz
openjdk11.spec,https://github.com/openjdk/jdk11u/archive/refs/tags/jdk-%{version}.tar.gz,https://github.com/openjdk/jdk11u/archive/refs/tags/jdk-11.0.20-ga.tar.gz,200,11.0.21,https://github.com/openjdk/jdk11u/archive/refs/tags/jdk-11.0.21-ga.tar.gz,200,openjdk,jdk-11.0,jdk-11.0.21-ga.tar.gz
openjdk17.spec,https://github.com/openjdk/jdk17u/archive/refs/tags/jdk-%{version}-5.tar.gz,https://github.com/openjdk/jdk17u/archive/refs/tags/jdk-17.0.8-ga.tar.gz,200,17.0.9,https://github.com/openjdk/jdk17u/archive/refs/tags/jdk-17.0.9-ga.tar.gz,200,openjdk,jdk-17,jdk-17.0.9-ga.tar.gz
openldap.spec,https://www.openldap.org/software/download/OpenLDAP/openldap-release/%{name}-%{version}.tgz,https://github.com/openldap/openldap/archive/refs/tags/OPENLDAP_REL_ENG_2_6_4.tgz,200,2.6.6,https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.6.6.tgz,200,openldap,%{name},openldap-2.6.6.tgz
openresty.spec,https://openresty.org/download/%{name}-%{version}.tar.gz,https://github.com/openresty/openresty/archive/refs/tags/v1.21.4.1.tar.gz,200,1.21.4.3,https://github.com/openresty/openresty/archive/refs/tags/v1.21.4.3.tar.gz,200,openresty,%{name},openresty-1.21.4.3.tar.gz
openscap.spec,https://github.com/OpenSCAP/openscap/releases/download/%{version}/openscap-%{version}.tar.gz,https://github.com/OpenSCAP/openscap/releases/download/1.3.6/openscap-1.3.6.tar.gz,200,1.3.9,https://github.com/OpenSCAP/openscap/releases/download/1.3.9/openscap-1.3.9.tar.gz,200,openscap,%{name},openscap-1.3.9.tar.gz
openssh.spec,https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/%{name}-%{version}.tar.gz,https://github.com/openssh/openssh-portable/archive/refs/tags/V_9.3p2.tar.gz,404,Warning: openssh.spec Source0 version 9.3p2 is higher than detected latest version .2.1.0 .,,,openssh,%{name},
openssl.spec,http://www.openssl.org/source/%{name}-%{version}.tar.gz,http://www.openssl.org/source/openssl-3.0.9.tar.gz,200,3.2.0,http://www.openssl.org/source/openssl-3.2.0.tar.gz,200,openssl,%{name} %{fips_provider_srcname},openssl-3.2.0.tar.gz
openvswitch.spec,http://openvswitch.org/releases/%{name}-%{version}.tar.gz,http://openvswitch.org/releases/openvswitch-3.0.2.tar.gz,200,3.2.1,http://openvswitch.org/releases/openvswitch-3.2.1.tar.gz,200,openvswitch,openvswitch,openvswitch-3.2.1.tar.gz
ostree.spec,https://github.com/ostreedev/ostree/archive/lib%{name}-%{version}.tar.xz,https://github.com/ostreedev/ostree/archive/refs/tags/v2023.5.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/ostreedev/ostree/archive/libostree-2023_7.tar.xz,404,ostree,lib%{name}-%{version},
p11-kit.spec,https://github.com/p11-glue/p11-kit/releases/download/%{version}/%{name}-%{version}.tar.xz,https://github.com/p11-glue/p11-kit/releases/download/0.24.1/p11-kit-0.24.1.tar.xz,200,0.25.3,https://github.com/p11-glue/p11-kit/releases/download/0.25.3/p11-kit-0.25.3.tar.xz,200,p11-kit,%{name},p11-kit-0.25.3.tar.xz
paho-c.spec,https://github.com/eclipse/paho.mqtt.c/archive/v%{version}/paho.mqtt.c-%{version}.tar.gz,https://github.com/eclipse/paho.mqtt.c/archive/v1.3.11/paho.mqtt.c-1.3.11.tar.gz,200,1.3.13,https://github.com/eclipse/paho.mqtt.c/archive/v1.3.13/paho.mqtt.c-1.3.13.tar.gz,200,paho-c,paho.mqtt.c-%{version},paho.mqtt.c-1.3.13.tar.gz
pam_tacplus.spec,%{name}-%{version}.tar.gz,https://github.com/kravietz/pam_tacplus/archive/refs/tags/v1.6.1.tar.gz,200,1.7.0,https://github.com/kravietz/pam_tacplus/archive/refs/tags/v1.7.0.tar.gz,200,pam_tacplus,pam_tacplus,pam_tacplus-1.7.0.tar.gz
pandoc.spec,pandoc-%{version}.tar.xz,https://github.com/jgm/pandoc/archive/refs/tags/2.19.2.tar.xz,200,Warning: Manufacturer may changed version packaging format.,pandoc-3_1_9.tar.xz,0,pandoc,pandoc,
pango.spec,https://gitlab.gnome.org/GNOME/pango/-/archive/%{version}/%{name}-%{version}.tar.gz,https://github.com/GNOME/pango/archive/refs/tags/1.50.11.tar.gz,200,1.90,https://github.com/GNOME/pango/archive/refs/tags/1.90.tar.gz,200,pango,%{name},pango-1.90.tar.gz
parallel.spec,https://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2,https://ftp.gnu.org/gnu/parallel/parallel-20221122.tar.bz2,200,20231122,https://ftp.gnu.org/gnu/parallel/parallel-20231122.tar.bz2,200,parallel,parallel,parallel-20231122.tar.bz2
parted.spec,http://ftp.gnu.org/gnu/parted/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/parted/parted-3.5.tar.xz,200,3.6,http://ftp.gnu.org/gnu/parted/parted-3.6.tar.xz,200,parted,%{name},parted-3.6.tar.xz
passwdqc.spec,http://www.openwall.com/passwdqc/%{name}-%{version}.tar.gz,https://github.com/openwall/passwdqc/archive/refs/tags/PASSWDQC_2_0_2.tar.gz,200,2.0.3,http://www.openwall.com/passwdqc/passwdqc-2.0.3.tar.gz,200,passwdqc,%{name},passwdqc-2.0.3.tar.gz
password-store.spec,https://git.zx2c4.com/password-store/snapshot/%{name}-%{version}.tar.xz,https://github.com/zx2c4/password-store/archive/refs/tags/1.7.4.tar.gz,200,(same version),,,password-store,password-store,
patch.spec,ftp://ftp.gnu.org/gnu/patch/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/patch/patch-2.7.6.tar.gz,200,(same version),,,patch,patch,
pciutils.spec,https://www.kernel.org/pub/software/utils/pciutils/%{name}-%{version}.tar.gz,https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.9.0.tar.gz,200,3.10.0,https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.10.0.tar.gz,200,pciutils,pciutils,pciutils-3.10.0.tar.gz
pcre.spec,ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2,ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.45.tar.bz2,0,Warning: Source0 seems invalid and no other Official source has been found.,,,pcre,%{name},
pcre2.spec,https://github.com/PhilipHazel/pcre2/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.40/pcre2-10.40.tar.gz,200,10.42,https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.42/pcre2-10.42.tar.gz,200,pcre2,%{name},pcre2-10.42.tar.gz
pcstat.spec,https://github.com/tobert/%{name}/archive/%{name}-1.zip,https://github.com/tobert/pcstat/archive/pcstat-1.zip,404,Warning: pcstat.spec Source0 version 1 is higher than detected latest version 0.0.2 .,,,pcstat,%{name} golang-sys,
perftest.spec,https://github.com/linux-rdma/perftest/releases/download/v%{version}-%{extra_version}/%{name}-%{version}.tar.gz,https://github.com/linux-rdma/perftest/releases/download/v4.5.0.20-0.20/perftest-4.5.0.20.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://github.com/linux-rdma/perftest/releases/download/v4.5-0-0.20-%{extra_version}/perftest-4.5-0-0.20.tar.gz,404,perftest,%{name},
perl.spec,http://www.cpan.org/src/5.0/%{name}-%{version}.tar.xz,https://github.com/Perl/perl5/archive/refs/tags/v5.36.0.tar.xz,200,5.39.5,http://www.cpan.org/src/5.0/perl-5.39.5.tar.xz,200,perl,%{name} perl-cross,perl-5.39.5.tar.xz
perl-Canary-Stability.spec,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Canary-Stability-%{version}.tar.gz,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Canary-Stability-2013.tar.gz,200,,,,perl-Canary-Stability,Canary-Stability,
perl-CGI.spec,https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-%{version}.tar.gz,https://github.com/leejo/CGI.pm/archive/refs/tags/v4.54.tar.gz,200,4.60,https://github.com/leejo/CGI.pm/archive/refs/tags/v4.60.tar.gz,200,perl-CGI,CGI,perl-CGI-4.60.tar.gz
perl-common-sense.spec,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/common-sense-%{version}.tar.gz,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/common-sense-3.75.tar.gz,200,,,,perl-common-sense,common-sense,
perl-Config-IniFiles.spec,https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Config-IniFiles-%{version}.tar.gz,https://github.com/shlomif/perl-Config-IniFiles/archive/refs/tags/releases/3.000003.tar.gz,200,(same version),,,perl-Config-IniFiles,Config-IniFiles,
perl-Data-Validate-IP.spec,https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Data-Validate-IP-%{version}.tar.gz,https://github.com/houseabsolute/Data-Validate-IP/archive/refs/tags/v0.30.tar.gz,200,0.31,https://github.com/houseabsolute/Data-Validate-IP/archive/refs/tags/v0.31.tar.gz,200,perl-Data-Validate-IP,Data-Validate-IP,perl-Data-Validate-IP-0.31.tar.gz
perl-DBD-SQLite.spec,https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-%{version}.tar.gz,https://github.com/DBD-SQLite/DBD-SQLite/archive/refs/tags/1.72.tar.gz,200,1.74,https://github.com/DBD-SQLite/DBD-SQLite/archive/refs/tags/1.74.tar.gz,200,perl-DBD-SQLite,DBD-SQLite,perl-DBD-SQLite-1.74.tar.gz
perl-DBI.spec,https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz,https://github.com/perl5-dbi/dbi/archive/refs/tags/1.643.tar.gz xxx-1,404,(same version),,,perl-DBI,DBI,
perl-DBIx-Simple.spec,https://cpan.metacpan.org/authors/id/J/JU/JUERD/DBIx-Simple-%{version}.tar.gz,https://cpan.metacpan.org/authors/id/J/JU/JUERD/DBIx-Simple-1.37.tar.gz,200,,,,perl-DBIx-Simple,DBIx-Simple,
perl-Exporter-Tiny.spec,https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/Exporter-Tiny-%{version}.tar.gz,https://github.com/tobyink/p5-exporter-tiny/archive/refs/tags/1.004004.tar.gz,200,1.006002,https://github.com/tobyink/p5-exporter-tiny/archive/refs/tags/1.006002.tar.gz,200,perl-Exporter-Tiny,Exporter-Tiny,perl-Exporter-Tiny-1.006002.tar.gz
perl-File-HomeDir.spec,https://cpan.metacpan.org/authors/id/R/RE/REHSACK/File-HomeDir-%{version}.tar.gz,https://github.com/perl5-utils/File-HomeDir/archive/refs/tags/1.006.tar.gz,200,(same version),,,perl-File-HomeDir,File-HomeDir,
perl-File-Which.spec,https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Which-%{version}.tar.gz,https://github.com/uperl/File-Which/archive/refs/tags/v1.27.tar.gz,200,(same version),,,perl-File-Which,File-Which,
perl-JSON-XS.spec,https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-%{version}.tar.gz,https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-4.03.tar.gz,200,,,,perl-JSON-XS,JSON-XS,
perl-List-MoreUtils.spec,https://cpan.metacpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-%{version}.tar.gz,https://github.com/perl5-utils/List-MoreUtils/archive/refs/tags/0.430.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://cpan.metacpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-1_400_002.tar.gz,404,perl-List-MoreUtils,List-MoreUtils,
perl-Module-Build.spec,https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-%{version}.tar.gz,https://github.com/Perl-Toolchain-Gang/Module-Build/archive/refs/tags/0.4231.tar.gz,200,0.340201,https://github.com/Perl-Toolchain-Gang/Module-Build/archive/refs/tags/0.340201.tar.gz,200,perl-Module-Build,Module-Build,perl-Module-Build-0.340201.tar.gz
perl-Module-Install.spec,https://cpan.metacpan.org/authors/id/E/ET/ETHER/Module-Install-%{version}.tar.gz,https://github.com/Perl-Toolchain-Gang/Module-Install/archive/refs/tags/1.19.tar.gz,200,1.21,https://cpan.metacpan.org/authors/id/E/ET/ETHER/Module-Install-1.21.tar.gz,200,perl-Module-Install,Module-Install,Module-Install-1.21.tar.gz
perl-Module-ScanDeps.spec,https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/Module-ScanDeps-%{version}.tar.gz,https://github.com/rschupp/Module-ScanDeps/archive/refs/tags/1.31.tar.gz,200,1.35,https://github.com/rschupp/Module-ScanDeps/archive/refs/tags/1.35.tar.gz,200,perl-Module-ScanDeps,Module-ScanDeps,perl-Module-ScanDeps-1.35.tar.gz
perl-Net-SSLeay.spec,https://cpan.metacpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-%{version}.tar.gz,https://github.com/radiator-software/p5-net-ssleay/archive/refs/tags/1.92.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://cpan.metacpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1_93_02.tar.gz,404,perl-Net-SSLeay,Net-SSLeay,
perl-NetAddr-IP.spec,https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-%{version}.tar.gz,https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz,200,,,,perl-NetAddr-IP,NetAddr-IP,
perl-Object-Accessor.spec,http://www.cpan.org/authors/id/B/BI/BINGOS/Object-Accessor-%{version}.tar.gz,https://github.com/jib/object-accessor/archive/refs/tags/0.48.tar.gz,200,(same version),,,perl-Object-Accessor,Object-Accessor,
perl-Parse-Yapp.spec,https://www.cpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-%{version}.tar.gz,https://www.cpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-1.21.tar.gz,200,,,,perl-Parse-Yapp,Parse-Yapp,
perl-Perl4-CoreLibs.spec,https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz,https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-0.004.tar.gz,200,,,,perl-Perl4-CoreLibs,%{cpan_name},
perl-TermReadKey.spec,https://cpan.metacpan.org/authors/id/J/JS/JSTOWE/TermReadKey-%{version}.tar.gz,https://github.com/jonathanstowe/TermReadKey/archive/refs/tags/2.38.tar.gz,200,(same version),,,perl-TermReadKey,TermReadKey,
perl-Types-Serialiser.spec,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-%{version}.tar.gz,http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.01.tar.gz,200,,,,perl-Types-Serialiser,Types-Serialiser,
perl-URI.spec,https://cpan.metacpan.org/modules/by-module/URI/perl-URI-%{version}.tar.gz,https://github.com/libwww-perl/URI/archive/refs/tags/v5.17.tar.gz,200,5.21,https://github.com/libwww-perl/URI/archive/refs/tags/v5.21.tar.gz,200,perl-URI,perl-URI,perl-URI-5.21.tar.gz
perl-WWW-Curl.spec,http://search.cpan.org/CPAN/authors/id/S/SZ/SZBALINT/WWW-Curl-%{version}.tar.gz,https://github.com/szbalint/WWW--Curl/archive/refs/tags/4.17.tar.gz,200,(same version),,,perl-WWW-Curl,WWW-Curl,
perl-YAML.spec,https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-%{version}.tar.gz,https://github.com/ingydotnet/yaml-pm/archive/refs/tags/1.30.tar.gz,200,(same version),,,perl-YAML,YAML,
perl-YAML-Tiny.spec,https://cpan.metacpan.org/authors/id/E/ET/ETHER/YAML-Tiny-%{version}.tar.gz,https://github.com/Perl-Toolchain-Gang/YAML-Tiny/archive/refs/tags/v1.73.tar.gz,200,1.74,https://github.com/Perl-Toolchain-Gang/YAML-Tiny/archive/refs/tags/v1.74.tar.gz,200,perl-YAML-Tiny,YAML-Tiny,perl-YAML-Tiny-1.74.tar.gz
pgaudit13.spec,https://github.com/pgaudit/pgaudit/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/pgaudit/pgaudit/archive/refs/tags/1.5.2.tar.gz,200,16.0,https://github.com/pgaudit/pgaudit/archive/refs/tags/16.0.tar.gz,200,pgaudit,%{srcname},pgaudit-16.0.tar.gz
pgaudit14.spec,https://github.com/pgaudit/pgaudit/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/pgaudit/pgaudit/archive/refs/tags/1.6.2.tar.gz,200,16.0,https://github.com/pgaudit/pgaudit/archive/refs/tags/16.0.tar.gz,200,pgaudit,%{srcname},pgaudit-16.0.tar.gz
pgaudit15.spec,https://github.com/pgaudit/pgaudit/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/pgaudit/pgaudit/archive/refs/tags/1.7.0.tar.gz,200,16.0,https://github.com/pgaudit/pgaudit/archive/refs/tags/16.0.tar.gz,200,pgaudit,%{srcname},pgaudit-16.0.tar.gz
pgbackrest.spec,https://github.com/pgbackrest/pgbackrest/archive/refs/tags/release/%{name}-%{version}.tar.gz,,404,,,,pgbackrest,%{name},
pgbouncer.spec,https://%{name}.github.io/downloads/files/%{version}/%{name}-%{version}.tar.gz,https://github.com/pgbouncer/pgbouncer/archive/refs/tags/pgbouncer_1_17_0.tar.gz,200,1.21.0,https://github.com/pgbouncer/pgbouncer/archive/refs/tags/pgbouncer_1_21_0.tar.gz,200,pgbouncer,pgbouncer,pgbouncer_1_21_0.tar.gz
photon-iso-config.spec,%{name}-%{version}.tar.gz,https://github.com/vmware/photon/tree/4.0/support/image-builder/iso/BUILD_DVD/isolinuxphoton-iso-config-5.0.tar.gz,404,Info: Source0 contains a VMware internal url address.,,,photon-iso-config,%{name},
photon-os-container-builder.spec,%{name}-%{version}.tar.gz,https://github.com/vmware-samples/photon-os-container-builder/archive/refs/tags/v0.1.1.tar.gz,200,0.1.2,https://github.com/vmware-samples/photon-os-container-builder/archive/refs/tags/v0.1.2.tar.gz,200,photon-os-container-builder,%{name},photon-os-container-builder-0.1.2.tar.gz
photon-os-installer.spec,%{name}-%{version}.tar.gz,https://github.com/vmware/photon-os-installer/archive/refs/tags/v2.4.tar.gz,200,(same version),,,photon-os-installer,%{name},
photon-release.spec,%{name}-%{version}.tar.gz,https://vmware.github.io/photonphoton-release-5.0.tar.gz,404,Info: Source0 contains a VMware internal url address.,,,photon-release,%{name},
photon-upgrade.spec,photon-upgrade.sh,https://vmware.github.io/photonphoton-upgrade.sh,404,Info: Source0 contains a VMware internal url address.,,,photon-upgrade,,
pigz.spec,https://zlib.net/pigz/pigz-%{version}.tar.gz,https://github.com/madler/pigz/archive/refs/tags/v2.7.tar.gz,200,2.8,https://github.com/madler/pigz/archive/refs/tags/v2.8.tar.gz,200,pigz,%{name},pigz-2.8.tar.gz
pinentry.spec,https://gnupg.org/ftp/gcrypt/%{name}/%{name}-%{version}.tar.bz2,https://gnupg.org/ftp/gcrypt/pinentry/pinentry-1.2.0.tar.bz2,200,1.2.1,https://gnupg.org/ftp/gcrypt/pinentry/pinentry-1.2.1.tar.bz2,200,pinentry,%{name},pinentry-1.2.1.tar.bz2
pixman.spec,https://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.gz,https://xorg.freedesktop.org/archive/individual/lib/pixman-0.42.2.tar.gz,200,(same version),,,pixman,%{name},
pkg-config.spec,http://pkgconfig.freedesktop.org/releases/%{name}-%{version}.tar.gz,http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz,200,(same version),,,pkg-config,pkg-config,
pmd-ng.spec,pmd-ng-%{version}.tar.gz,https://github.com/vmware/pmd-next-gen/archive/refs/tags/v0.1.tar.gz,200,(same version),,,pmd-ng,%{name},
podman.spec,https://github.com/containers/podman/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/containers/podman/archive/refs/tags/v4.5.1.tar.gz,200,4.8.0,https://github.com/containers/podman/archive/refs/tags/v4.8.0.tar.gz,200,podman,%{name} dnsname gvisor-tap-vsock-%{gvisorvers},podman-4.8.0.tar.gz
policycoreutils.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/policycoreutils-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/policycoreutils-3.5.tar.gz,200,policycoreutils,%{name},policycoreutils-3.5.tar.gz
polkit.spec,https://www.freedesktop.org/software/polkit/releases/%{name}-%{version}.tar.gz,https://www.freedesktop.org/software/polkit/releases/polkit-121.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://www.freedesktop.org/software/polkit/releases/polkit-123.tar.gz,404,polkit,%{name},
popt.spec,ftp://anduin.linuxfromscratch.org/BLFS/svn/p/%{name}-%{version}.tar.gz,https://github.com/rpm-software-management/popt/archive/refs/tags/popt-1_16-release.tar.gz,200,1.19,https://github.com/rpm-software-management/popt/archive/refs/tags/popt-1.19-release.tar.gz,200,popt,popt,popt-1.19-release.tar.gz
postgresql13.spec,http://ftp.postgresql.org/pub/source/v%{version}/%{srcname}-%{version}.tar.bz2,http://ftp.postgresql.org/pub/source/v13.13/postgresql-13.13.tar.bz2,200,(same version),,,postgresql,%{srcname},
postgresql14.spec,http://ftp.postgresql.org/pub/source/v%{version}/%{srcname}-%{version}.tar.bz2,http://ftp.postgresql.org/pub/source/v14.10/postgresql-14.10.tar.bz2,200,(same version),,,postgresql,%{srcname},
postgresql15.spec,http://ftp.postgresql.org/pub/source/v%{version}/%{srcname}-%{version}.tar.bz2,http://ftp.postgresql.org/pub/source/v15.5/postgresql-15.5.tar.bz2,200,(same version),,,postgresql,%{srcname},
powershell.spec,%{name}-%{version}.tar.gz,https://github.com/PowerShell/PowerShell/archive/refs/tags/v7.3.4.tar.gz,200,7.4.0,https://github.com/PowerShell/PowerShell/archive/refs/tags/v7.4.0.tar.gz,200,powershell,%{name} %{name}-native %{name}-%{version}-linux omi-%{libmi_tag},powershell-7.4.0.tar.gz
procmail.spec,http://www.ring.gr.jp/archives/net/mail/procmail/%{name}-%{version}.tar.gz,http://www.ring.gr.jp/archives/net/mail/procmail/procmail-3.22.tar.gz,200,(same version),,,procmail,procmail,
procps-ng.spec,https://sourceforge.net/projects/procps-ng/files/Production/%{name}-%{version}.tar.xz,https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-4.0.0.tar.xz,200,4.0.4,https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-4.0.4.tar.xz,200,procps-ng,%{name},procps-ng-4.0.4.tar.xz
proto.spec,http://ftp.x.org/pub/individual/proto/xproto-%{xproto_ver}.tar.bz2,http://ftp.x.org/pub/individual/proto/xproto-7.0.31.tar.bz2,200,Warning: proto.spec Source0 version 7.7 is higher than detected latest version 7.0.31 .,,,proto,xproto xextproto inputproto kbproto renderproto randrproto fixesproto compositeproto damageproto recordproto scrnsaverproto glproto xineramaproto fontsproto dri2proto,
protobuf.spec,https://github.com/protocolbuffers/protobuf/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.21.12.tar.gz,200,25.1,https://github.com/protocolbuffers/protobuf/archive/refs/tags/v25.1.tar.gz,200,protobuf,%{name},protobuf-25.1.tar.gz
protobuf-c.spec,https://github.com/protobuf-c/protobuf-c/releases/download/v1.4.1/%{name}-%{version}.tar.gz,https://github.com/protobuf-c/protobuf-c/archive/refs/tags/v1.4.1.tar.gz,200,1.5.0,https://github.com/protobuf-c/protobuf-c/archive/refs/tags/v1.5.0.tar.gz,200,protobuf-c,%{name},protobuf-c-1.5.0.tar.gz
psmisc.spec,https://sourceforge.net/projects/%{name}/files/%{name}/%{name}-%{version}.tar.xz,https://sourceforge.net/projects/%{name}/files/%{name}/%{name}-%{version}.tar.xz,200,(same version),,,psmisc,%{name},
pth.spec,http://open-source-box.org/%{name}/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/pth/pth-2.0.7.tar.gz,200,(same version),,,pth,pth,
pycurl.spec,http://pycurl.sourceforge.net/download/pycurl-%{version}.tar.gz,https://github.com/pycurl/pycurl/archive/refs/tags/REL_7_45_1.tar.gz,200,Warning: Manufacturer may changed version packaging format.,http://pycurl.sourceforge.net/download/pycurl-7.45_2.tar.gz,404,pycurl,pycurl,
python-alabaster.spec,https://pypi.python.org/packages/d0/a5/e3a9ad3ee86aceeff71908ae562580643b955ea1b1d4f08ed6f7e8396bd7/alabaster-%{version}.tar.gz,https://github.com/bitprophet/alabaster/archive/refs/tags/0.7.12.tar.gz,200,0.7.13,https://github.com/bitprophet/alabaster/archive/refs/tags/0.7.13.tar.gz,200,python-alabaster,alabaster,python-alabaster-0.7.13.tar.gz
python-altgraph.spec,https://files.pythonhosted.org/packages/22/5a/ac50b52581bbf0d8f6fd50ad77d20faac19a2263b43c60e7f3af8d1ec880/altgraph-%{version}.tar.gz,https://github.com/ronaldoussoren/altgraph/archive/refs/tags/v0.17.2.tar.gz ,200,0.17.4,https://github.com/ronaldoussoren/altgraph/archive/refs/tags/v0.17.4.tar.gz ,200,python-altgraph,altgraph,python-altgraph-0.17.4.tar.gz
python-appdirs.spec,https://pypi.python.org/packages/48/69/d87c60746b393309ca30761f8e2b49473d43450b150cb08f3c6df5c11be5/appdirs-%{version}.tar.gz,https://github.com/ActiveState/appdirs/archive/refs/tags/1.4.4.tar.gz,200,(same version),,,python-appdirs,appdirs,
python-argparse.spec,argparse-%{version}.tar.gz,https://github.com/ThomasWaldmann/argparse/archive/refs/tags/r1.4.0.tar.gz,404,Warning: repo isn't maintained anymore.,,,python-argparse,argparse,
python-asn1crypto.spec,asn1crypto-%{version}.tar.gz,https://github.com/wbond/asn1crypto/archive/refs/tags/1.5.1.tar.gz,200,(same version),,,python-asn1crypto,asn1crypto,
python-atomicwrites.spec,https://pypi.python.org/packages/a1/e1/2d9bc76838e6e6667fde5814aa25d7feb93d6fa471bf6816daac2596e8b2/atomicwrites-%{version}.tar.gz,https://github.com/untitaker/python-atomicwrites/archive/refs/tags/1.4.1.tar.gz,200,Warning: repo isn't maintained anymore.,,,python-atomicwrites,atomicwrites,
python-attrs.spec,attrs-%{version}.tar.gz,https://github.com/python-attrs/attrs/archive/refs/tags/22.1.0.tar.gz,200,23.1.0,https://github.com/python-attrs/attrs/archive/refs/tags/23.1.0.tar.gz,200,python-attrs,attrs,python-attrs-23.1.0.tar.gz
python-automat.spec,https://files.pythonhosted.org/packages/source/A/Automat/%{srcname}-%{version}.tar.gz,https://github.com/glyph/automat/archive/refs/tags/v22.10.0.tar.gz,200,(same version),,,python-automat,%{srcname},
python-autopep8.spec,autopep8-%{version}.tar.gz,https://github.com/hhatto/autopep8/archive/refs/tags/v2.0.0.tar.gz,200,2.0.4,https://github.com/hhatto/autopep8/archive/refs/tags/v2.0.4.tar.gz,200,python-autopep8,autopep8,python-autopep8-2.0.4.tar.gz
python-babel.spec,https://files.pythonhosted.org/packages/17/e6/ec9aa6ac3d00c383a5731cc97ed7c619d3996232c977bb8326bcbb6c687e/Babel-%{version}.tar.gz,https://github.com/python-babel/babel/archive/refs/tags/v2.10.3.tar.gz,200,2.13.1,https://github.com/python-babel/babel/archive/refs/tags/v2.13.1.tar.gz,200,python-babel,Babel,python-babel-2.13.1.tar.gz
python-backports.ssl_match_hostname.spec,https://pypi.python.org/packages/76/21/2dc61178a2038a5cb35d14b61467c6ac632791ed05131dda72c20e7b9e23/%{srcname}-%{version}.tar.gz,https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz,200,Warning: Cannot detect correlating tags from the repo provided.,,,python-backports.ssl_match_hostname,%{srcname},
python-bcrypt.spec,https://github.com/pyca/bcrypt/archive/refs/tags/bcrypt-%{version}.tar.gz,https://github.com/pyca/bcrypt/archive/refs/tags/3.2.2.tar.gz,200,4.1.1,https://github.com/pyca/bcrypt/archive/refs/tags/4.1.1.tar.gz,200,python-bcrypt,bcrypt,python-bcrypt-4.1.1.tar.gz
python-binary.spec,https://files.pythonhosted.org/packages/source/b/binary/binary-%{version}.tar.gz,https://files.pythonhosted.org/packages/source/b/binary/binary-1.0.0.tar.gz,200,,,,python-binary,binary,
python-boto.spec,https://files.pythonhosted.org/packages/source/b/boto/boto-%{version}.tar.gz,https://github.com/boto/boto/archive/refs/tags/2.49.0.tar.gz,200,(same version),,,python-boto,boto,
python-boto3.spec,https://github.com/boto/boto3/archive/boto3-%{version}.tar.gz,https://github.com/boto/boto3/archive/refs/tags/1.24.56.tar.gz,200,1.33.2,https://github.com/boto/boto3/archive/refs/tags/1.33.2.tar.gz,200,python-boto3,boto3,python-boto3-1.33.2.tar.gz
python-botocore.spec,https://github.com/boto/botocore/archive/botocore-%{version}.tar.gz,https://github.com/boto/botocore/archive/refs/tags/1.27.56.tar.gz,200,1.33.2,https://github.com/boto/botocore/archive/refs/tags/1.33.2.tar.gz,200,python-botocore,botocore,python-botocore-1.33.2.tar.gz
python-CacheControl.spec,CacheControl-%{version}.tar.gz,https://github.com/ionrock/cachecontrol/archive/refs/tags/v0.12.11.tar.gz,200,0.13.1,https://github.com/ionrock/cachecontrol/archive/refs/tags/v0.13.1.tar.gz,200,python-CacheControl,CacheControl,python-CacheControl-0.13.1.tar.gz
python-cassandra-driver.spec,https://github.com/datastax/python-driver/archive/%{srcname}-%{version}.tar.gz,https://github.com/datastax/python-driver/archive/refs/tags/3.25.0.tar.gz,200,3.28.0,https://github.com/datastax/python-driver/archive/refs/tags/3.28.0.tar.gz,200,python-cassandra-driver,%{srcname},python-cassandra-driver-3.28.0.tar.gz
python-certifi.spec,https://github.com/certifi/python-certifi/archive/certifi-%{version}.tar.gz,https://github.com/certifi/python-certifi/archive/refs/tags/2022.6.15.tar.gz,404,2023.11.17,https://github.com/certifi/python-certifi/archive/refs/tags/2023.11.17.tar.gz,200,python-certifi,certifi,python-certifi-2023.11.17.tar.gz
python-cffi.spec,https://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz,https://pypi.python.org/packages/source/c/cffi/cffi-1.15.1.tar.gz,200,,,,python-cffi,cffi,
python-chardet.spec,https://github.com/chardet/chardet/archive/chardet-%{version}.tar.gz,https://github.com/chardet/chardet/archive/refs/tags/5.0.0.tar.gz,200,5.2.0,https://github.com/chardet/chardet/archive/refs/tags/5.2.0.tar.gz,200,python-chardet,chardet,python-chardet-5.2.0.tar.gz
python-charset-normalizer.spec,charset-normalizer-%{version}.tar.gz,https://github.com/Ousret/charset_normalizer/archive/refs/tags/2.1.1.tar.gz,200,3.3.2,https://github.com/Ousret/charset_normalizer/archive/refs/tags/3.3.2.tar.gz,200,python-charset-normalizer,charset-normalizer,python-charset-normalizer-3.3.2.tar.gz
python-click.spec,https://github.com/pallets/click/archive/refs/tags/click-%{version}.tar.gz,https://github.com/pallets/click/archive/refs/tags/8.1.3.tar.gz,200,8.1.7,https://github.com/pallets/click/archive/refs/tags/8.1.7.tar.gz,200,python-click,click,python-click-8.1.7.tar.gz
python-ConcurrentLogHandler.spec,%{srcname}-%{version}.tar.gz,https://github.com/Preston-Landers/concurrent-log-handler/archive/refs/tags/0.9.20.tar.gz,200,0.9.24,https://github.com/Preston-Landers/concurrent-log-handler/archive/refs/tags/0.9.24.tar.gz,200,python-ConcurrentLogHandler,%{srcname},python-ConcurrentLogHandler-0.9.24.tar.gz
python-configobj.spec,https://github.com/DiffSK/configobj/archive/refs/tags/configobj-%{version}.tar.gz,https://github.com/DiffSK/configobj/archive/refs/tags/v5.0.6.tar.gz,200,5.0.8,https://github.com/DiffSK/configobj/archive/refs/tags/v5.0.8.tar.gz,200,python-configobj,configobj,python-configobj-5.0.8.tar.gz
python-configparser.spec,configparser-%{version}.tar.gz,https://github.com/jaraco/configparser/archive/refs/tags/5.3.0.tar.gz,404,Warning: Manufacturer may changed version packaging format.,configparser-6_0_0.tar.gz,0,python-configparser,configparser,
python-constantly.spec,constantly-%{version}.tar.gz,https://github.com/twisted/constantly/archive/refs/tags/15.1.0.tar.gz,200,23.10.4,https://github.com/twisted/constantly/archive/refs/tags/23.10.4.tar.gz,200,python-constantly,constantly,python-constantly-23.10.4.tar.gz
python-coverage.spec,https://files.pythonhosted.org/packages/source/c/coverage/coverage-%{version}.tar.gz,https://github.com/nedbat/coveragepy/archive/refs/tags/6.4.4.tar.gz,200,7.3.2,https://github.com/nedbat/coveragepy/archive/refs/tags/7.3.2.tar.gz,200,python-coverage,coverage,python-coverage-7.3.2.tar.gz
python-cqlsh.spec,https://files.pythonhosted.org/packages/source/c/cqlsh/%{srcname}-%{version}.tar.gz,hhttps://github.com/jeffwidman/cqlsh/archive/refs/tags/6.1.2.tar.gz,0,(same version),,,python-cqlsh,%{srcname},
python-cryptography.spec,https://pypi.io/packages/source/c/cryptography/cryptography-%{version}.tar.gz,https://github.com/pyca/cryptography/archive/refs/tags/38.0.1.tar.gz,200,41.0.7,https://github.com/pyca/cryptography/archive/refs/tags/41.0.7.tar.gz,200,python-cryptography,cryptography,python-cryptography-41.0.7.tar.gz
python-daemon.spec,https://files.pythonhosted.org/packages/source/p/python-daemon/python-daemon-%{version}.tar.gz,,404,,,,python-daemon,%{srcname},
python-dateutil.spec,https://pypi.python.org/packages/54/bb/f1db86504f7a49e1d9b9301531181b00a1c7325dc85a29160ee3eaa73a54/python-dateutil-%{version}.tar.gz,https://github.com/dateutil/dateutil/archive/refs/tags/2.8.2.tar.gz,200,(same version),,,python-dateutil,python-dateutil,
python-decorator.spec,decorator-%{version}.tar.gz,https://github.com/micheles/decorator/archive/refs/tags/5.1.1.tar.gz,200,(same version),,,python-decorator,decorator,
python-deepmerge.spec,https://pypi.python.org/packages/source/n/deepmerge/deepmerge-%{version}.tar.gz,https://github.com/toumorokoshi/deepmerge/archive/refs/tags/v1.1.0.tar.gz,200,(same version),,,python-deepmerge,deepmerge,
python-defusedxml.spec,defusedxml-%{version}.tar.gz,https://github.com/tiran/defusedxml/archive/refs/tags/v0.7.1.tar.gz,200,(same version),,,python-defusedxml,defusedxml,
python-distlib.spec,https://files.pythonhosted.org/packages/58/07/815476ae605bcc5f95c87a62b95e74a1bce0878bc7a3119bc2bf4178f175/distlib-%{version}.tar.gz,https://github.com/pypa/distlib/archive/refs/tags/0.3.6.tar.gz,200,(same version),,,python-distlib,%{srcname},
python-distro.spec,https://files.pythonhosted.org/packages/ca/e3/78443d739d7efeea86cbbe0216511d29b2f5ca8dbf51a6f2898432738987/distro-%{version}.tar.gz,https://github.com/python-distro/distro/archive/refs/tags/v1.7.0.tar.gz ,200,1.8.0,https://github.com/python-distro/distro/archive/refs/tags/v1.8.0.tar.gz ,200,python-distro,distro,python-distro-1.8.0.tar.gz
python-dnspython.spec,https://files.pythonhosted.org/packages/source/d/dnspython/dnspython-%{version}.tar.gz,https://github.com/rthalley/dnspython/archive/refs/tags/v2.2.1.tar.gz,200,2.4.2,https://github.com/rthalley/dnspython/archive/refs/tags/v2.4.2.tar.gz,200,python-dnspython,dnspython,python-dnspython-2.4.2.tar.gz
python-docopt.spec,docopt-%{version}.tar.gz,https://github.com/docopt/docopt/archive/refs/tags/0.6.2.tar.gz,200,(same version),,,python-docopt,docopt,
python-docutils.spec,https://files.pythonhosted.org/packages/source/d/docutils/%{srcname}-%{version}.tar.gz,https://sourceforge.net/projects/docutils/files/docutils/0.19/docutils-0.19.tar.gz/download,200,0.20.1,https://sourceforge.net/projects/docutils/files/docutils/0.20.1/docutils-0.20.1.tar.gz/download,200,python-docutils,%{srcname},download
python-ecdsa.spec,https://pypi.python.org/packages/source/e/ecdsa/ecdsa-%{version}.tar.gz,https://pypi.python.org/packages/source/e/ecdsa/ecdsa-0.18.0.tar.gz,200,,,,python-ecdsa,,
python-email-validator.spec,https://github.com/JoshData/python-email-validator/archive/refs/tags/email_validator-%{version}.tar.gz,https://github.com/JoshData/python-email-validator/archive/refs/tags/v1.2.1.tar.gz,200,2.1.0,https://github.com/JoshData/python-email-validator/archive/refs/tags/v2.1.0.tar.gz,200,python-email-validator,email_validator,python-email-validator-2.1.0.tar.gz
python-etcd.spec,https://github.com/jplana/python-etcd/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/jplana/python-etcd/archive/refs/tags/0.4.5.tar.gz,200,(same version),,,python-etcd,%{srcname},
python-ethtool.spec,python-ethtool-%{version}.tar.gz,https://github.com/fedora-python/python-ethtool/archive/refs/tags/v0.15.tar.gz,200,(same version),,,python-ethtool,python-ethtool,
python-filelock.spec,https://files.pythonhosted.org/packages/14/ec/6ee2168387ce0154632f856d5cc5592328e9cf93127c5c9aeca92c8c16cb/filelock-%{version}.tar.gz,https://github.com/tox-dev/py-filelock/archive/refs/tags/v3.8.0.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://files.pythonhosted.org/packages/14/ec/6ee2168387ce0154632f856d5cc55923.13e9cf93127c5c9aeca92c8c16cb/filelock-3_13_1.tar.gz,404,python-filelock,filelock,
python-flit-core.spec,https://files.pythonhosted.org/packages/source/f/flit_core/flit_core-%{version}.tar.gz,https://github.com/pypa/flit/archive/refs/tags/3.7.1.tar.gz,200,3.9.0,https://github.com/pypa/flit/archive/refs/tags/3.9.0.tar.gz,200,python-flit-core,flit_core,python-flit-core-3.9.0.tar.gz
python-fuse.spec,https://github.com/libfuse/python-fuse/archive/refs/tags/python-fuse-%{version}.tar.gz,https://github.com/libfuse/python-fuse/archive/refs/tags/v1.0.5.tar.gz,200,1.0.6,https://github.com/libfuse/python-fuse/archive/refs/tags/v1.0.6.tar.gz,200,python-fuse,python-fuse,python-fuse-1.0.6.tar.gz
python-geomet.spec,https://github.com/geomet/geomet/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/geomet/geomet/archive/refs/tags/0.3.0.tar.gz,200,1.1.0,https://github.com/geomet/geomet/archive/refs/tags/1.1.0.tar.gz,200,python-geomet,%{srcname},python-geomet-1.1.0.tar.gz
python-gevent.spec,https://pypi.org/project/%{srcname}/%{version}/%{srcname}-%{version}.tar.gz,https://github.com/gevent/gevent/archive/refs/tags/23.7.0.tar.gz,200,23.9.1,https://github.com/gevent/gevent/archive/refs/tags/23.9.1.tar.gz,200,python-gevent,%{srcname},python-gevent-23.9.1.tar.gz
python-graphviz.spec,graphviz-%{version}.zip,https://github.com/xflr6/graphviz/archive/refs/tags/0.20.1.tar.gz,200,(same version),,,python-graphviz,graphviz,
python-greenlet.spec,greenlet-%{version}.tar.gz,https://github.com/python-greenlet/greenlet/archive/refs/tags/2.0.0.tar.gz,200,3.0.1,https://github.com/python-greenlet/greenlet/archive/refs/tags/3.0.1.tar.gz,200,python-greenlet,greenlet,python-greenlet-3.0.1.tar.gz
python-hatch-fancy-pypi-readme.spec,https://files.pythonhosted.org/packages/source/h/hatch-fancy-pypi-readme/hatch_fancy_pypi_readme-%{version}.tar.gz,https://github.com/hynek/hatch-fancy-pypi-readme/archive/refs/tags/22.8.0.tar.gz,200,(same version),,,python-hatch-fancy-pypi-readme,hatch_fancy_pypi_readme,
python-hatch-vcs.spec,https://files.pythonhosted.org/packages/source/h/hatch_vcs/hatch_vcs-%{version}.tar.gz,https://github.com/ofek/hatch-vcs/archive/refs/tags/v0.2.0.tar.gz,200,0.4.0,https://github.com/ofek/hatch-vcs/archive/refs/tags/v0.4.0.tar.gz,200,python-hatch-vcs,hatch_vcs,python-hatch-vcs-0.4.0.tar.gz
python-hatchling.spec,https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-%{version}.tar.gz,https://github.com/pypa/hatch/archive/refs/tags/hatchling-v1.11.1.tar.gz,200,,,,python-hatchling,hatchling,
python-hyperlink.spec,https://github.com/python-hyper/hyperlink/archive/hyperlink-%{version}.tar.gz,https://github.com/python-hyper/hyperlink/archive/refs/tags/v21.0.0.tar.gz,200,(same version),,,python-hyperlink,hyperlink,
python-hypothesis.spec,https://pypi.python.org/packages/cf/d5/b3d491e4b5094be0ef69b910d637096c8e23f84a9bdc4eba0b869220d1f0/hypothesis-%{version}.tar.gz,https://github.com/HypothesisWorks/hypothesis/archive/refs/tags/hypothesis-python-6.54.4.tar.gz,200,6.91.0,https://github.com/HypothesisWorks/hypothesis/archive/refs/tags/hypothesis-python-6.91.0.tar.gz,200,python-hypothesis,hypothesis,hypothesis-python-6.91.0.tar.gz
python-idna.spec,idna-%{version}.tar.gz,https://github.com/kjd/idna/archive/refs/tags/v3.3.tar.gz,200,3.6,https://github.com/kjd/idna/archive/refs/tags/v3.6.tar.gz,200,python-idna,idna,python-idna-3.6.tar.gz
python-imagesize.spec,https://github.com/shibukawa/imagesize_py/archive/refs/tags/imagesize-%{version}.tar.gz,https://github.com/shibukawa/imagesize_py/archive/refs/tags/1.4.1.tar.gz,200,(same version),,,python-imagesize,imagesize,
python-importlib-metadata.spec,https://files.pythonhosted.org/packages/90/07/6397ad02d31bddf1841c9ad3ec30a693a3ff208e09c2ef45c9a8a5f85156/%{srcname}-%{version}.tar.gz,https://github.com/python/importlib_metadata/archive/refs/tags/v6.0.0.tar.gz,200,6.8.0,https://github.com/python/importlib_metadata/archive/refs/tags/v6.8.0.tar.gz,200,python-importlib-metadata,%{srcname},python-importlib-metadata-6.8.0.tar.gz
python-incremental.spec,incremental-%{version}.tar.gz,https://github.com/twisted/incremental/archive/refs/tags/incremental-21.3.0.tar.gz,200,22.10.0,https://github.com/twisted/incremental/archive/refs/tags/incremental-22.10.0.tar.gz,200,python-incremental,incremental,incremental-22.10.0.tar.gz
python-iniconfig.spec,https://files.pythonhosted.org/packages/23/a2/97899f6bd0e873fed3a7e67ae8d3a08b21799430fb4da15cfedf10d6e2c2/iniconfig-%{version}.tar.gz,https://github.com/pytest-dev/iniconfig/archive/refs/tags/v1.1.1.tar.gz,200,2.0.0,https://github.com/pytest-dev/iniconfig/archive/refs/tags/v2.0.0.tar.gz,200,python-iniconfig,iniconfig,python-iniconfig-2.0.0.tar.gz
python-iniparse.spec,http://iniparse.googlecode.com/files/iniparse-%{version}.tar.gz,https://github.com/candlepin/python-iniparse/archive/refs/tags/0.5.tar.gz,200,(same version),,,python-iniparse,iniparse,
python-ipaddr.spec,https://pypi.python.org/packages/source/i/ipaddr/ipaddr-%{version}.tar.gz,https://pypi.python.org/packages/source/i/ipaddr/ipaddr-2.2.0.tar.gz,200,,,,python-ipaddr,ipaddr,
python-ipaddress.spec,ipaddress-%{version}.tar.gz,https://github.com/phihag/ipaddress/archive/refs/tags/v1.0.23.tar.gz,200,(same version),,,python-ipaddress,ipaddress,
python-jinja2.spec,https://github.com/pallets/jinja/archive/refs/tags/jinja-%{version}.tar.gz,https://github.com/pallets/jinja/archive/refs/tags/3.1.2.tar.gz,200,(same version),,,python-jinja2,jinja,
python-jmespath.spec,https://pypi.python.org/packages/e5/21/795b7549397735e911b032f255cff5fb0de58f96da794274660bca4f58ef/jmespath-%{version}.tar.gz,https://github.com/jmespath/jmespath.py/archive/refs/tags/1.0.1.tar.gz,200,(same version),,,python-jmespath,jmespath,
python-Js2Py.spec,https://files.pythonhosted.org/packages/source/J/Js2Py/%{srcname}-%{version}.tar.gz,https://files.pythonhosted.org/packages/cb/a5/3d8b3e4511cc21479f78f359b1b21f1fb7c640988765ffd09e55c6605e3b/Js2Py-0.74.tar.gz,200,,,,python-Js2Py,%{srcname},
python-jsonpatch.spec,https://pypi.python.org/packages/be/c1/947048a839120acefc13a614280be3289db404901d1a2d49b6310c6d5757/jsonpatch-%{version}.tar.gz,https://github.com/stefankoegl/python-json-patch/archive/refs/tags/v1.32.tar.gz,200,1.33,https://github.com/stefankoegl/python-json-patch/archive/refs/tags/v1.33.tar.gz,200,python-jsonpatch,jsonpatch,python-jsonpatch-1.33.tar.gz
python-jsonpointer.spec,https://github.com/stefankoegl/python-json-pointer/archive/refs/tags/jsonpointer-%{version}.tar.gz,https://github.com/stefankoegl/python-json-pointer/archive/refs/tags/v2.3.tar.gz,200,2.4,https://github.com/stefankoegl/python-json-pointer/archive/refs/tags/v2.4.tar.gz,200,python-jsonpointer,jsonpointer,python-jsonpointer-2.4.tar.gz
python-jsonschema.spec,https://github.com/python-jsonschema/jsonschema/archive/refs/tags/jsonschema-%{version}.tar.gz,https://github.com/python-jsonschema/jsonschema/archive/refs/tags/v4.16.0.tar.gz,200,4.20.0,https://github.com/python-jsonschema/jsonschema/archive/refs/tags/v4.20.0.tar.gz,200,python-jsonschema,jsonschema,python-jsonschema-4.20.0.tar.gz
python-lockfile.spec,https://pypi.python.org/packages/source/l/lockfile/lockfile-%{version}.tar.gz,https://pypi.python.org/packages/source/l/lockfile/lockfile-0.12.2.tar.gz,200,,,,python-lockfile,lockfile,
python-lxml.spec,https://github.com/lxml/lxml/archive/refs/tags/lxml-%{version}.tar.gz,https://github.com/lxml/lxml/archive/refs/tags/lxml-4.9.1.tar.gz,200,4.9.3-2,https://github.com/lxml/lxml/archive/refs/tags/lxml-4.9.3-2.tar.gz,200,python-lxml,lxml,lxml-4.9.3-2.tar.gz
python-M2Crypto.spec,https://pypi.python.org/packages/11/29/0b075f51c38df4649a24ecff9ead1ffc57b164710821048e3d997f1363b9/M2Crypto-%{version}.tar.gz,https://gitlab.com/m2crypto/m2crypto/-/archive/0.38.0/m2crypto-0.38.0.tar.gz,200,0.40.1,https://gitlab.com/m2crypto/m2crypto/-/archive/0.40.1/m2crypto-0.40.1.tar.gz,200,python-M2Crypto,M2Crypto,m2crypto-0.40.1.tar.gz
python-mako.spec,https://github.com/sqlalchemy/mako/archive/refs/tags/Mako-%{version}.tar.gz,https://github.com/sqlalchemy/mako/archive/refs/tags/rel_1_2_1.tar.gz,200,1.3.0,https://github.com/sqlalchemy/mako/archive/refs/tags/rel_1_3_0.tar.gz,200,python-mako,Mako,rel_1_3_0.tar.gz
python-markupsafe.spec,https://github.com/pallets/markupsafe/archive/refs/tags/markupsafe-%{version}.tar.gz,https://github.com/pallets/markupsafe/archive/refs/tags/2.1.1.tar.gz,200,2.1.3,https://github.com/pallets/markupsafe/archive/refs/tags/2.1.3.tar.gz,200,python-markupsafe,markupsafe,python-markupsafe-2.1.3.tar.gz
python-mistune.spec,https://files.pythonhosted.org/packages/source/m/mistune/%{srcname}-%{version}.tar.gz,https://github.com/lepture/mistune/archive/refs/tags/v2.0.5.tar.gz,200,3.0.2,https://github.com/lepture/mistune/archive/refs/tags/v3.0.2.tar.gz,200,python-mistune,%{srcname},python-mistune-3.0.2.tar.gz
python-mock.spec,mock-%{version}.tar.gz,https://github.com/testing-cabal/mock/archive/refs/tags/4.0.3.tar.gz,200,5.1.0,https://github.com/testing-cabal/mock/archive/refs/tags/5.1.0.tar.gz,200,python-mock,mock,python-mock-5.1.0.tar.gz
python-more-itertools.spec,https://files.pythonhosted.org/packages/d6/03/37d7c431c4c1c17507fb7b89240ddb7be70f2027277960d525f1679363c1/more-itertools-%{version}.tar.gz,https://github.com/more-itertools/more-itertools/archive/refs/tags/8.14.0.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://files.pythonhosted.org/packages/d6/03/37d7c431c4c1c17507fb7b89240ddb7be70f2027277960d525f1679363c1/more-itertools-10_1_0.tar.gz,404,python-more-itertools,more-itertools,
python-msgpack.spec,https://pypi.io/packages/source/m/msgpack-python/msgpack-%{version}.tar.gz,https://github.com/msgpack/msgpack-python/archive/refs/tags/v1.0.4.tar.gz,200,1.0.7,https://github.com/msgpack/msgpack-python/archive/refs/tags/v1.0.7.tar.gz,200,python-msgpack,msgpack,python-msgpack-1.0.7.tar.gz
python-ndg-httpsclient.spec,ndg_httpsclient-%{version}.tar.gz,https://github.com/cedadev/ndg_httpsclient/archive/refs/tags/0.5.1.tar.gz,200,(same version),,,python-ndg-httpsclient,ndg_httpsclient,
python-netaddr.spec,netaddr-%{version}.tar.gz,https://github.com/netaddr/netaddr/archive/refs/tags/0.8.0.tar.gz,200,0.9.0,https://github.com/netaddr/netaddr/archive/refs/tags/0.9.0.tar.gz,200,python-netaddr,netaddr,python-netaddr-0.9.0.tar.gz
python-netifaces.spec,https://pypi.python.org/packages/source/n/netifaces/netifaces-%{version}.tar.gz,https://github.com/al45tair/netifaces/archive/refs/tags/release_0_11_0.tar.gz,200,(same version),,,python-netifaces,netifaces,
python-nocasedict.spec,nocasedict-%{version}.tar.gz,https://github.com/pywbem/nocasedict/archive/refs/tags/1.0.4.tar.gz,200,2.0.1,https://github.com/pywbem/nocasedict/archive/refs/tags/2.0.1.tar.gz,200,python-nocasedict,nocasedict,python-nocasedict-2.0.1.tar.gz
python-nocaselist.spec,nocaselist-%{version}.tar.gz,https://github.com/pywbem/nocaselist/archive/refs/tags/1.0.6.tar.gz,200,2.0.0,https://github.com/pywbem/nocaselist/archive/refs/tags/2.0.0.tar.gz,200,python-nocaselist,nocaselist,python-nocaselist-2.0.0.tar.gz
python-ntplib.spec,ntplib-%{version}.tar.gz,https://github.com/cf-natali/ntplib/archive/refs/tags/0.4.0.tar.gz,200,(same version),,,python-ntplib,ntplib,
python-numpy.spec,https://files.pythonhosted.org/packages/64/8e/9929b64e146d240507edaac2185cd5516f00b133be5b39250d253be25a64/%{srcname}-%{version}.tar.gz,https://github.com/numpy/numpy/archive/refs/tags/v1.23.4.tar.gz,200,1.26.2,https://github.com/numpy/numpy/archive/refs/tags/v1.26.2.tar.gz,200,python-numpy,%{srcname},python-numpy-1.26.2.tar.gz
python-oauthlib.spec,https://pypi.python.org/packages/fa/2e/25f25e6c69d97cf921f0a8f7d520e0ef336dd3deca0142c0b634b0236a90/oauthlib-%{version}.tar.gz,https://github.com/oauthlib/oauthlib/archive/refs/tags/v3.2.0.tar.gz,200,3.2.2,https://github.com/oauthlib/oauthlib/archive/refs/tags/v3.2.2.tar.gz,200,python-oauthlib,oauthlib,python-oauthlib-3.2.2.tar.gz
python-packaging.spec,pypi.python.org/packages/source/p/packaging/packaging-%{version}.tar.gz,https://github.com/pypa/packaging/archive/refs/tags/21.3.tar.gz,200,23.2,https://github.com/pypa/packaging/archive/refs/tags/23.2.tar.gz,200,python-packaging,packaging,python-packaging-23.2.tar.gz
python-pam.spec,python-pam-%{version}.tar.gz,https://github.com/FirefighterBlu3/python-pam/archive/refs/tags/v2.0.2.tar.gz,200,(same version),,,python-pam,python-pam,
python-paramiko.spec,https://github.com/paramiko/paramiko/archive/paramiko-%{version}.tar.gz,https://github.com/paramiko/paramiko/archive/paramiko-2.12.0.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://github.com/paramiko/paramiko/archive/paramiko-3_3_1.tar.gz,404,python-paramiko,paramiko,
python-pathspec.spec,https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-%{version}.tar.gz,https://github.com/cpburnz/python-pathspec/archive/refs/tags/v0.10.1.tar.gz,200,0.11.2,https://github.com/cpburnz/python-pathspec/archive/refs/tags/v0.11.2.tar.gz,200,python-pathspec,pathspec,python-pathspec-0.11.2.tar.gz
python-pbr.spec,https://pypi.io/packages/source/p/pbr/pbr-%{version}.tar.gz,https://opendev.org/openstack/pbr/archive/5.10.0.tar.gz,200,,,,python-pbr,pbr,
python-pexpect.spec,https://github.com/pexpect/pexpect/archive/pexpect-%{version}.tar.gz,https://github.com/pexpect/pexpect/archive/refs/tags/4.8.0.tar.gz,200,4.9,https://github.com/pexpect/pexpect/archive/refs/tags/4.9.tar.gz,200,python-pexpect,pexpect,python-pexpect-4.9.tar.gz
python-pika.spec,https://github.com/pika/pika/archive/refs/tags/pika-1.2.1.tar.gz,https://github.com/pika/pika/archive/refs/tags/pika-1.2.1.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://github.com/pika/pika/archive/refs/tags/pika-1_3_2.tar.gz,404,python-pika,pika,
python-pkgconfig.spec,https://github.com/matze/pkgconfig/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/matze/pkgconfig/archive/refs/tags/v1.5.5.tar.gz,200,(same version),,,python-pkgconfig,%{srcname},
python-platformdirs.spec,https://github.com/platformdirs/platformdirs/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/platformdirs/platformdirs/archive/refs/tags/platformdirs-3.10.0.tar.gz,404,Warning: Manufacturer may changed version packaging format.,https://github.com/platformdirs/platformdirs/archive/refs/tags/%{srcname}-4_0_0.tar.gz,404,python-platformdirs,%{srcname},
python-pluggy.spec,https://files.pythonhosted.org/packages/f8/04/7a8542bed4b16a65c2714bf76cf5a0b026157da7f75e87cc88774aa10b14/pluggy-%{version}.tar.gz,https://github.com/pytest-dev/pluggy/archive/refs/tags/1.0.0.tar.gz,200,1.3.0,https://github.com/pytest-dev/pluggy/archive/refs/tags/1.3.0.tar.gz,200,python-pluggy,pluggy,python-pluggy-1.3.0.tar.gz
python-ply.spec,https://github.com/dabeaz/ply/archive/ply-%{version}.tar.gz,https://github.com/dabeaz/ply/archive/refs/tags/3.11.tar.gz,200,(same version),,,python-ply,ply,
python-prettytable.spec,prettytable-%{version}.tar.gz,https://github.com/jazzband/prettytable/archive/refs/tags/3.3.0.tar.gz,200,3.9.0,https://github.com/jazzband/prettytable/archive/refs/tags/3.9.0.tar.gz,200,python-prettytable,prettytable,python-prettytable-3.9.0.tar.gz
python-prometheus_client.spec,prometheus_client-%{version}.tar.gz,https://github.com/prometheus/client_python/archive/refs/tags/v0.14.1.tar.gz,200,0.19.0,https://github.com/prometheus/client_python/archive/refs/tags/v0.19.0.tar.gz,200,python-prometheus_client,prometheus_client,python-prometheus_client-0.19.0.tar.gz
python-prompt_toolkit.spec,https://files.pythonhosted.org/packages/source/p/prompt_toolkit/prompt_toolkit-%{version}.tar.gz,https://github.com/prompt-toolkit/python-prompt-toolkit/archive/refs/tags/3.0.30.tar.gz,200,3.0.41,https://github.com/prompt-toolkit/python-prompt-toolkit/archive/refs/tags/3.0.41.tar.gz,200,python-prompt_toolkit,prompt_toolkit,python-prompt_toolkit-3.0.41.tar.gz
python-psutil.spec,https://files.pythonhosted.org/packages/source/p/psutil/psutil-%{version}.tar.gz,https://github.com/giampaolo/psutil/archive/refs/tags/release-5.9.1.tar.gz,200,5.9.6,https://github.com/giampaolo/psutil/archive/refs/tags/release-5.9.6.tar.gz,200,python-psutil,psutil,release-5.9.6.tar.gz
python-psycopg2.spec,https://files.pythonhosted.org/packages/source/p/psycopg2/%{srcname}-%{version}.tar.gz,https://github.com/psycopg/psycopg2/archive/refs/tags/2_9_3.tar.gz,200,2.9.9,https://github.com/psycopg/psycopg2/archive/refs/tags/2.9.9.tar.gz,200,python-psycopg2,%{srcname},python-psycopg2-2.9.9.tar.gz
python-ptyprocess.spec,https://files.pythonhosted.org/packages/source/p/ptyprocess/ptyprocess-%{version}.tar.gz,https://github.com/pexpect/ptyprocess/archive/refs/tags/0.7.0.tar.gz,200,(same version),,,python-ptyprocess,ptyprocess,
python-py.spec,https://github.com/pytest-dev/py/archive/refs/tags/py-%{version}.tar.gz,https://github.com/pytest-dev/py/archive/refs/tags/1.11.0.tar.gz,200,(same version),,,python-py,py,
python-pyasn1.spec,https://github.com/etingof/pyasn1/archive/refs/tags/pyasn1-%{version}.tar.gz,https://github.com/etingof/pyasn1/archive/refs/tags/v0.4.8.tar.gz,200,(same version),,,python-pyasn1,pyasn1,
python-pyasn1-modules.spec,pyasn1-modules-%{version}.tar.gz,https://github.com/etingof/pyasn1-modules/archive/refs/tags/v0.2.8.tar.gz,200,(same version),,,python-pyasn1-modules,pyasn1-modules,
python-pycodestyle.spec,pycodestyle-%{version}.tar.gz,https://github.com/FirefighterBlu3/python-pam/archive/refs/tags/v2.9.1.tar.gz,404,Warning: duplicate of python-pam.spec,,,python-pycodestyle,pycodestyle,
python-pycparser.spec,https://pypi.python.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz,https://github.com/eliben/pycparser/archive/refs/tags/release_v2.21.tar.gz,200,(same version),,,python-pycparser,pycparser,
python-pycryptodome.spec,pycryptodome-%{version}.tar.gz,https://github.com/Legrandin/pycryptodome/archive/refs/tags/v3.12.0.tar.gz,200,3.19.0,https://github.com/Legrandin/pycryptodome/archive/refs/tags/v3.19.0.tar.gz,200,python-pycryptodome,pycryptodome,python-pycryptodome-3.19.0.tar.gz
python-pycryptodomex.spec,pycryptodomex-%{version}.tar.gz,https://github.com/Legrandin/pycryptodome/archive/refs/tags/v3.15.0.tar.gz,200,3.19.0,https://github.com/Legrandin/pycryptodome/archive/refs/tags/v3.19.0.tar.gz,200,python-pycryptodomex,pycryptodomex,python-pycryptodomex-3.19.0.tar.gz
python-pydantic.spec,https://files.pythonhosted.org/packages/d5/eb/d5ee9e58b2a4608c320fc72e5d471ba0cd949e8ef6f2689d30d1bd782d9f/pydantic-1.10.1.tar.gz,https://github.com/pydantic/pydantic/archive/refs/tags/v1.10.1.tar.gz,200,2.5.2,https://github.com/pydantic/pydantic/archive/refs/tags/v2.5.2.tar.gz,200,python-pydantic,pydantic,python-pydantic-2.5.2.tar.gz
python-pyflakes.spec,pyflakes-%{version}.tar.gz,https://github.com/PyCQA/pyflakes/archive/refs/tags/2.5.0.tar.gz,200,3.1.0,https://github.com/PyCQA/pyflakes/archive/refs/tags/3.1.0.tar.gz,200,python-pyflakes,pyflakes,python-pyflakes-3.1.0.tar.gz
python-Pygments.spec,https://files.pythonhosted.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz,https://github.com/pygments/pygments/archive/refs/tags/2.13.0.tar.gz,200,2.17.2,https://github.com/pygments/pygments/archive/refs/tags/2.17.2.tar.gz,200,python-Pygments,Pygments,python-Pygments-2.17.2.tar.gz
python-pygobject.spec,https://pypi.org/project/PyGObject/#files/PyGObject-%{version}.tar.gz,https://pypi.org/project/PyGObject/#files/PyGObject-3.42.2.tar.gz,200,,,,python-pygobject,PyGObject,
python-PyHamcrest.spec,https://pypi.python.org/packages/source/n/deepmerge/PyHamcrest-%{version}.tar.gz,https://github.com/hamcrest/PyHamcrest/archive/refs/tags/V2.0.2.tar.gz,200,2.1.0,https://github.com/hamcrest/PyHamcrest/archive/refs/tags/V2.1.0.tar.gz,200,python-PyHamcrest,PyHamcrest,python-PyHamcrest-2.1.0.tar.gz
python-pyinstaller.spec,https://files.pythonhosted.org/packages/1e/d7/214b25c912d5f7d9c31d266821a8be6a35df80535056fe83997688721927/pyinstaller-%{version}.tar.gz,https://github.com/pyinstaller/pyinstaller/archive/refs/tags/v5.5.tar.gz,200,6.2.0,https://github.com/pyinstaller/pyinstaller/archive/refs/tags/v6.2.0.tar.gz,200,python-pyinstaller,pyinstaller,python-pyinstaller-6.2.0.tar.gz
python-pyinstaller-hooks-contrib.spec,https://files.pythonhosted.org/packages/ab/65/53a41d4788b8cbdd38c1f3404d07ca11c37e59a36170c10077e6ce001a3f/pyinstaller-hooks-contrib-%{version}.tar.gz,https://github.com/pyinstaller/pyinstaller-hooks-contrib/archive/refs/tags/v2022.8.tar.gz,200,2023.10,https://github.com/pyinstaller/pyinstaller-hooks-contrib/archive/refs/tags/v2023.10.tar.gz,200,python-pyinstaller-hooks-contrib,pyinstaller-hooks-contrib,python-pyinstaller-hooks-contrib-2023.10.tar.gz
python-pyjsparser.spec,https://files.pythonhosted.org/packages/source/p/pyjsparser/pyjsparser-%{version}.tar.gz,https://github.com/PiotrDabkowski/pyjsparser/archive/refs/tags/v2.7.1.tar.gz,404,Warning: Cannot detect correlating tags from the repo provided.,,,python-pyjsparser,,
python-PyJWT.spec,https://github.com/jpadilla/pyjwt/archive/refs/tags/PyJWT-2.8.0.tar.gz,https://github.com/jpadilla/pyjwt/archive/refs/tags/PyJWT-2.8.0.tar.gz,404,(same version),,,python-PyJWT,PyJWT,
python-PyNaCl.spec,http://pypi.python.org/packages/source/e/PyNaCl/PyNaCl-%{version}.tar.gz,https://github.com/pyca/pynacl/archive/refs/tags/1.5.0.tar.gz ,200,(same version),,,python-PyNaCl,PyNaCl,
python-pyOpenSSL.spec,https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpenSSL-%{version}.tar.gz,https://github.com/pyca/pyopenssl/archive/refs/tags/22.0.0.tar.gz,200,23.3.0,https://github.com/pyca/pyopenssl/archive/refs/tags/23.3.0.tar.gz,200,python-pyOpenSSL,pyOpenSSL,python-pyOpenSSL-23.3.0.tar.gz
python-pyparsing.spec,pyparsing-%{version}.tar.gz,https://github.com/pyparsing/pyparsing/archive/refs/tags/pyparsing_3.0.9.tar.gz,200,Warning: Manufacturer may changed version packaging format.,pyparsing-3_1_1.tar.gz,0,python-pyparsing,pyparsing,
python-pyrsistent.spec,https://files.pythonhosted.org/packages/9f/0d/cbca4d0bbc5671822a59f270e4ce3f2195f8a899c97d0d5abb81b191efb5/pyrsistent-%{version}.tar.gz,https://github.com/tobgu/pyrsistent/archive/refs/tags/v0.18.1.tar.gz,200,0.20.0,https://github.com/tobgu/pyrsistent/archive/refs/tags/v0.20.0.tar.gz,200,python-pyrsistent,pyrsistent,python-pyrsistent-0.20.0.tar.gz
python-pyserial.spec,https://github.com/pyserial/pyserial/archive/refs/tags/pyserial-%{version}.tar.gz,https://github.com/pyserial/pyserial/archive/refs/tags/v3.5.tar.gz,200,(same version),,,python-pyserial,pyserial,
python-pytest.spec,https://files.pythonhosted.org/packages/4b/24/7d1f2d2537de114bdf1e6875115113ca80091520948d370c964b88070af2/pytest-%{version}.tar.gz,https://github.com/pytest-dev/pytest/archive/refs/tags/7.1.2.tar.gz,200,7.4.3,https://github.com/pytest-dev/pytest/archive/refs/tags/7.4.3.tar.gz,200,python-pytest,pytest,python-pytest-7.4.3.tar.gz
python-pytz.spec,https://files.pythonhosted.org/packages/source/p/pytz/pytz-%{version}.tar.gz,https://github.com/stub42/pytz/archive/refs/tags/release_2022.2.1.tar.gz,200,2023.3,https://github.com/stub42/pytz/archive/refs/tags/release_2023.3.tar.gz,200,python-pytz,pytz,release_2023.3.tar.gz
python-pytz-deprecation-shim.spec,https://github.com/pganssle/pytz-deprecation-shim/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/pganssle/pytz-deprecation-shim/archive/refs/tags/pytz-deprecation-shim-0.1.0.post0.tar.gz,404,Warning: python-pytz-deprecation-shim.spec Source0 version 0.1.0.post0 is higher than detected latest version 0.1.0 .,,,python-pytz-deprecation-shim,%{srcname},
python-pyudev.spec,pyudev-%{version}.tar.gz,https://github.com/pyudev/pyudev/archive/refs/tags/v0.23.2.tar.gz,200,0.24.1,https://github.com/pyudev/pyudev/archive/refs/tags/v0.24.1.tar.gz,200,python-pyudev,pyudev,python-pyudev-0.24.1.tar.gz
python-pyvim.spec,pyvim-%{version}.tar.gz,https://github.com/prompt-toolkit/pyvim/archive/refs/tags/3.0.3.tar.gz,404,Warning: python-pyvim.spec Source0 version 3.0.3 is higher than detected latest version 2.0.24 .,,,python-pyvim,#% pyvim-tests,
python-pyvmomi.spec,pyvmomi-%{version}.tar.gz,https://github.com/vmware/pyvmomi/archive/refs/tags/v7.0.3.tar.gz,200,8.0.2.0.1,https://github.com/vmware/pyvmomi/archive/refs/tags/v8.0.2.0.1.tar.gz,200,python-pyvmomi,pyvmomi,python-pyvmomi-8.0.2.0.1.tar.gz
python-pywbem.spec,http://downloads.sourceforge.net/pywbem-%{version}.tar.gz,https://github.com/pywbem/pywbem/archive/refs/tags/1.4.1.tar.gz,200,1.6.2,https://github.com/pywbem/pywbem/archive/refs/tags/1.6.2.tar.gz,200,python-pywbem,pywbem,python-pywbem-1.6.2.tar.gz
python-PyYAML.spec,http://pyyaml.org/download/pyyaml/PyYAML-%{version}.tar.gz,,404,,,,python-PyYAML,PyYAML,
python-requests.spec,http://pypi.python.org/packages/source/r/requests/requests-%{version}.tar.gz,https://github.com/psf/requests/archive/refs/tags/v2.28.1.tar.gz,200,2.31.0,https://github.com/psf/requests/archive/refs/tags/v2.31.0.tar.gz,200,python-requests,requests,python-requests-2.31.0.tar.gz
python-requests-toolbelt.spec,https://files.pythonhosted.org/packages/0c/4c/07f01c6ac44f7784fa399137fbc8d0cdc1b5d35304e8c0f278ad82105b58/%{srcname}-%{version}.tar.gz,https://github.com/requests/toolbelt/archive/refs/tags/0.10.1.tar.gz,200,1.0.0,https://github.com/requests/toolbelt/archive/refs/tags/1.0.0.tar.gz,200,python-requests-toolbelt,%{srcname},python-requests-toolbelt-1.0.0.tar.gz
python-requests-unixsocket.spec,https://files.pythonhosted.org/packages/c3/ea/0fb87f844d8a35ff0dcc8b941e1a9ffc9eb46588ac9e4267b9d9804354eb/%{srcname}-%{version}.tar.gz,https://files.pythonhosted.org/packages/c3/ea/0fb87f844d8a35ff0dcc8b941e1a9ffc9eb46588ac9e4267b9d9804354eb/requests-unixsocket-0.3.0.tar.gz,200,,,,python-requests-unixsocket,%{srcname},
python-resolvelib.spec,https://github.com/sarugaku/resolvelib/archive/refs/tags/resolvelib-%{version}.tar.gz,https://github.com/sarugaku/resolvelib/archive/refs/tags/0.8.1.tar.gz,200,1.0.1,https://github.com/sarugaku/resolvelib/archive/refs/tags/1.0.1.tar.gz,200,python-resolvelib,resolvelib,python-resolvelib-1.0.1.tar.gz
python-ruamel-yaml.spec,https://files.pythonhosted.org/packages/ruamel.yaml-%{version}.tar.gz,https://files.pythonhosted.org/packages/17/2f/f38332bf6ba751d1c8124ea70681d2b2326d69126d9058fbd9b4c434d268/ruamel.yaml-0.17.21.tar.gz,404,Warning: Cannot detect correlating tags from the repo provided.Also, see https://github.com/commx/ruamel-yaml/archive/refs/tags/%{version}.tar.gz,,,python-ruamel-yaml,ruamel.yaml,
python-s3transfer.spec,s3transfer-%{version}.tar.gz,https://github.com/boto/s3transfer/archive/refs/tags/0.6.0.tar.gz,200,0.8.1,https://github.com/boto/s3transfer/archive/refs/tags/0.8.1.tar.gz,200,python-s3transfer,s3transfer,python-s3transfer-0.8.1.tar.gz
python-scp.spec,https://files.pythonhosted.org/packages/05/e0/ac4169e773e12a08d941ca3c006cb8c91bee9d6d80328a15af850b5e7480/scp-%{version}.tar.gz,https://github.com/jbardin/scp.py/archive/refs/tags/v0.14.4.tar.gz,200,0.14.5,https://github.com/jbardin/scp.py/archive/refs/tags/v0.14.5.tar.gz,200,python-scp,scp,python-scp-0.14.5.tar.gz
python-semantic-version.spec,https://files.pythonhosted.org/packages/7d/31/f2289ce78b9b473d582568c234e104d2a342fd658cc288a7553d83bb8595/semantic_version-%{version}.tar.gz,https://github.com/rbarrois/python-semanticversion/archive/refs/tags/2.10.0.tar.gz,200,(same version),,,python-semantic-version,semantic_version,
python-service_identity.spec,service_identity-%{version}.tar.gz,https://github.com/pyca/service-identity/archive/refs/tags/21.1.0.tar.gz,200,23.1.0,https://github.com/pyca/service-identity/archive/refs/tags/23.1.0.tar.gz,200,python-service_identity,service_identity,python-service_identity-23.1.0.tar.gz
python-setuptools-rust.spec,https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-%{version}.tar.gz,https://github.com/PyO3/setuptools-rust/archive/refs/tags/v1.5.2.tar.gz,200,1.8.1,https://github.com/PyO3/setuptools-rust/archive/refs/tags/v1.8.1.tar.gz,200,python-setuptools-rust,setuptools-rust,python-setuptools-rust-1.8.1.tar.gz
python-setuptools_scm.spec,https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.gz,https://github.com/pypa/setuptools_scm/archive/refs/tags/v7.0.5.tar.gz,200,8.0.3,https://github.com/pypa/setuptools_scm/archive/refs/tags/v8.0.3.tar.gz,200,python-setuptools_scm,setuptools_scm,python-setuptools_scm-8.0.3.tar.gz
python-simplejson.spec,simplejson-%{version}.tar.gz,https://github.com/simplejson/simplejson/archive/refs/tags/v3.17.6.tar.gz,200,3.19.2,https://github.com/simplejson/simplejson/archive/refs/tags/v3.19.2.tar.gz,200,python-simplejson,simplejson,python-simplejson-3.19.2.tar.gz
python-six.spec,https://pypi.python.org/packages/source/s/six/six-%{version}.tar.gz,https://github.com/benjaminp/six/archive/refs/tags/1.16.0.tar.gz,200,(same version),,,python-six,six,
python-snowballstemmer.spec,https://pypi.python.org/packages/20/6b/d2a7cb176d4d664d94a6debf52cd8dbae1f7203c8e42426daa077051d59c/snowballstemmer-%{version}.tar.gz,https://github.com/snowballstem/snowball/archive/refs/tags/v2.2.0.tar.gz,200,(same version),,,python-snowballstemmer,snowballstemmer,
python-sortedcontainers.spec,https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-%{version}.tar.gz,https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz,200,,,,python-sortedcontainers,sortedcontainers,
python-sphinx.spec,https://github.com/sphinx-doc/sphinx/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinx/archive/refs/tags/v5.1.1.tar.gz,200,7.2.6,https://github.com/sphinx-doc/sphinx/archive/refs/tags/v7.2.6.tar.gz,200,python-sphinx,%{srcname},python-sphinx-7.2.6.tar.gz
python-sphinxcontrib-applehelp.spec,https://files.pythonhosted.org/packages/9f/01/ad9d4ebbceddbed9979ab4a89ddb78c9760e74e6757b1880f1b2760e8295/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-applehelp/archive/refs/tags/1.0.2.tar.gz,200,1.0.7,https://github.com/sphinx-doc/sphinxcontrib-applehelp/archive/refs/tags/1.0.7.tar.gz,200,python-sphinxcontrib-applehelp,%{srcname},python-sphinxcontrib-applehelp-1.0.7.tar.gz
python-sphinxcontrib-devhelp.spec,https://files.pythonhosted.org/packages/98/33/dc28393f16385f722c893cb55539c641c9aaec8d1bc1c15b69ce0ac2dbb3/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-devhelp/archive/refs/tags/1.0.2.tar.gz,200,1.0.5,https://github.com/sphinx-doc/sphinxcontrib-devhelp/archive/refs/tags/1.0.5.tar.gz,200,python-sphinxcontrib-devhelp,%{srcname},python-sphinxcontrib-devhelp-1.0.5.tar.gz
python-sphinxcontrib-htmlhelp.spec,https://files.pythonhosted.org/packages/c9/2e/a7a5fef38327b7f643ed13646321d19903a2f54b0a05868e4bc34d729e1f/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/archive/refs/tags/2.0.0.tar.gz,200,2.0.4,https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/archive/refs/tags/2.0.4.tar.gz,200,python-sphinxcontrib-htmlhelp,%{srcname},python-sphinxcontrib-htmlhelp-2.0.4.tar.gz
python-sphinxcontrib-jsmath.spec,https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-jsmath/archive/refs/tags/1.0.1.tar.gz,200,(same version),,,python-sphinxcontrib-jsmath,%{srcname},
python-sphinxcontrib-qthelp.spec,https://files.pythonhosted.org/packages/b1/8e/c4846e59f38a5f2b4a0e3b27af38f2fcf904d4bfd82095bf92de0b114ebd/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-qthelp/archive/refs/tags/1.0.3.tar.gz,200,1.0.6,https://github.com/sphinx-doc/sphinxcontrib-qthelp/archive/refs/tags/1.0.6.tar.gz,200,python-sphinxcontrib-qthelp,%{srcname},python-sphinxcontrib-qthelp-1.0.6.tar.gz
python-sphinxcontrib-serializinghtml.spec,https://files.pythonhosted.org/packages/ac/86/021876a9dd4eac9dae0b1d454d848acbd56d5574d350d0f835043b5ac2cd/%{srcname}-%{version}.tar.gz,https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/archive/refs/tags/1.1.5.tar.gz,200,1.1.9,https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/archive/refs/tags/1.1.9.tar.gz,200,python-sphinxcontrib-serializinghtml,%{srcname},python-sphinxcontrib-serializinghtml-1.1.9.tar.gz
python-sqlalchemy.spec,https://pypi.python.org/packages/29/18/a78469bc449d9f92f6269cc62d0d6fbe6bf394d1031b447ad5e54463c3a0/SQLAlchemy-%{version}.tar.gz,https://github.com/sqlalchemy/sqlalchemy/archive/refs/tags/rel_1_4_40.tar.gz,200,2.0.23,https://github.com/sqlalchemy/sqlalchemy/archive/refs/tags/rel_2_0_23.tar.gz,200,python-sqlalchemy,SQLAlchemy,rel_2_0_23.tar.gz
python-systemd.spec,https://github.com/systemd/%{srcname}/archive/refs/tags/%{srcname}-%{version}.tar.gz,https://github.com/systemd/python-systemd/archive/refs/tags/v235.tar.gz,200,(same version),,,python-systemd,%{srcname},
python-terminaltables.spec,terminaltables-%{version}.tar.gz,https://github.com/Robpol86/terminaltables/archive/refs/tags/v3.1.0.tar.gz,200,Warning: repo isn't maintained anymore.,,,python-terminaltables,terminaltables,
python-toml.spec,https://files.pythonhosted.org/packages/da/24/84d5c108e818ca294efe7c1ce237b42118643ce58a14d2462b3b2e3800d5/toml-%{version}.tar.gz,https://github.com/uiri/toml/archive/refs/tags/0.10.2.tar.gz,200,(same version),,,python-toml,toml,
python-tornado.spec,https://pypi.python.org/packages/fa/14/52e2072197dd0e63589e875ebf5984c91a027121262aa08f71a49b958359/tornado-%{version}.tar.gz,,404,,,,python-tornado,tornado,
python-Twisted.spec,https://pypi.python.org/packages/source/T/Twisted/%{srcname}-%{version}.tar.gz,https://github.com/twisted/twisted/archive/refs/tags/twisted-22.10.0.tar.gz,200,,,,python-Twisted,%{srcname},
python-typing.spec,https://files.pythonhosted.org/packages/05/d9/6eebe19d46bd05360c9a9aae822e67a80f9242aabbfc58b641b957546607/typing-%{version}.tar.gz,https://github.com/python/typing/archive/refs/tags/3.10.0.0.tar.gz,200,4.2.0,https://github.com/python/typing/archive/refs/tags/4.2.0.tar.gz,200,python-typing,typing,python-typing-4.2.0.tar.gz
python-typing-extensions.spec,https://files.pythonhosted.org/packages/9e/1d/d128169ff58c501059330f1ad96ed62b79114a2eb30b8238af63a2e27f70/typing_extensions-4.3.0.tar.gz,https://github.com/python/typing_extensions/archive/refs/tags/4.3.0.tar.gz,200,4.8.0,https://github.com/python/typing_extensions/archive/refs/tags/4.8.0.tar.gz,200,python-typing-extensions,typing_extensions,python-typing-extensions-4.8.0.tar.gz
python-tzlocal.spec,https://files.pythonhosted.org/packages/source/t/tzlocal/tzlocal-%{version}.tar.gz,https://github.com/regebro/tzlocal/archive/refs/tags/4.2.tar.gz,200,5.2,https://github.com/regebro/tzlocal/archive/refs/tags/5.2.tar.gz,200,python-tzlocal,%{srcname},python-tzlocal-5.2.tar.gz
python-ujson.spec,https://files.pythonhosted.org/packages/fb/94/44fbbb059fe5d295f1f73e731a0b9c2e1b5073c2c6b58bb9c068715e9b72/ujson-%{version}.tar.gz,https://github.com/ultrajson/ultrajson/archive/refs/tags/5.4.0.tar.gz,200,5.8.0,https://github.com/ultrajson/ultrajson/archive/refs/tags/5.8.0.tar.gz,200,python-ujson,ujson,python-ujson-5.8.0.tar.gz
python-urllib3.spec,https://github.com/shazow/urllib3/archive/urllib3-%{version}.tar.gz,https://github.com/urllib3/urllib3/archive/refs/tags/1.25.11.tar.gz,200,2.1.0,https://github.com/urllib3/urllib3/archive/refs/tags/2.1.0.tar.gz,200,python-urllib3,urllib3,python-urllib3-2.1.0.tar.gz
python-vcversioner.spec,vcversioner-%{version}.tar.gz,https://github.com/habnabit/vcversioner/archive/refs/tags/2.16.0.0.tar.gz,200,(same version),,,python-vcversioner,vcversioner,
python-virtualenv.spec,%{srcname}-%{version}.tar.gz,https://github.com/pypa/virtualenv/archive/refs/tags/20.16.3.tar.gz,200,20.24.7,https://github.com/pypa/virtualenv/archive/refs/tags/20.24.7.tar.gz,200,python-virtualenv,%{srcname},python-virtualenv-20.24.7.tar.gz
python-wcwidth.spec,https://files.pythonhosted.org/packages/source/w/wcwidth/wcwidth-%{version}.tar.gz,https://github.com/jquast/wcwidth/archive/refs/tags/0.2.5.tar.gz,200,0.2.12,https://github.com/jquast/wcwidth/archive/refs/tags/0.2.12.tar.gz,200,python-wcwidth,,python-wcwidth-0.2.12.tar.gz
python-webob.spec,https://pypi.python.org/packages/1a/2b/322d6e01ba19c1e28349efe46dab1bd480c81a55af0658d63dc48ed62ee6/WebOb-%{version}.tar.gz,https://github.com/Pylons/webob/archive/refs/tags/1.8.7.tar.gz,200,(same version),,,python-webob,WebOb,
python-websocket-client.spec,https://files.pythonhosted.org/packages/99/11/01fe7ebcb7545a1990c53c11f31230afe1388b0b34256e3fd20e49482245/websocket-client-%{version}.tar.gz,https://github.com/websocket-client/websocket-client/archive/refs/tags/v1.4.1.tar.gz,200,1.6.4,https://github.com/websocket-client/websocket-client/archive/refs/tags/v1.6.4.tar.gz,200,python-websocket-client,websocket-client,python-websocket-client-1.6.4.tar.gz
python-werkzeug.spec,https://pypi.python.org/packages/ab/65/d3f1edd1109cb1beb6b82f4139addad482df5b5ea113bdc98242383bf402/Werkzeug-%{version}.tar.gz,https://github.com/pallets/werkzeug/archive/refs/tags/2.2.2.tar.gz,200,3.0.1,https://github.com/pallets/werkzeug/archive/refs/tags/3.0.1.tar.gz,200,python-werkzeug,Werkzeug,python-werkzeug-3.0.1.tar.gz
python-wheel.spec,https://github.com/pypa/wheel/archive/%{version}.tar.gz#/wheel-%{version}.tar.gz,https://github.com/pypa/wheel/archive/0.37.1.tar.gz#/wheel-0.37.1.tar.gz,200,0.42.0,https://github.com/pypa/wheel/archive/0.42.0.tar.gz#/wheel-0.42.0.tar.gz,200,python-wheel,%{srcname},wheel-0.42.0.tar.gz
python-wrapt.spec,https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-%{version}.tar.gz,https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-1.14.1.tar.gz,200,,,,python-wrapt,wrapt,
python-xmltodict.spec,https://github.com/martinblech/%{pypi_name}/archive/refs/tags/%{pypi_name}-%{version}.tar.gz,,substitution_unfinished,,,,python-xmltodict,%{pypi_name},
python-yamlloader.spec,yamlloader-%{version}.tar.gz,https://github.com/Phynix/yamlloader/archive/refs/tags/1.1.0.tar.gz,200,1.3.2,https://github.com/Phynix/yamlloader/archive/refs/tags/1.3.2.tar.gz,200,python-yamlloader,yamlloader,python-yamlloader-1.3.2.tar.gz
python-zmq.spec,https://pypi.python.org/packages/af/37/8e0bf3800823bc247c36715a52e924e8f8fd5d1432f04b44b8cd7a5d7e55/pyzmq-%{version}.tar.gz,https://github.com/zeromq/pyzmq/archive/refs/tags/v23.2.1.tar.gz,200,25.1.1,https://github.com/zeromq/pyzmq/archive/refs/tags/v25.1.1.tar.gz,200,python-zmq,pyzmq,python-zmq-25.1.1.tar.gz
python-zope.event.spec,https://pypi.python.org/packages/source/z/zope.event/zope.event-%{version}.tar.gz,https://github.com/zopefoundation/zope.event/archive/refs/tags/4.5.0.tar.gz,200,5.0,https://github.com/zopefoundation/zope.event/archive/refs/tags/5.0.tar.gz,200,python-zope.event,zope.event,python-zope.event-5.0.tar.gz
python-zope.interface.spec,https://pypi.python.org/packages/source/z/zope.interface/%{srcname}-%{version}.tar.gz,https://github.com/zopefoundation/zope.interface/archive/refs/tags/5.4.0.tar.gz,200,6.1,https://github.com/zopefoundation/zope.interface/archive/refs/tags/6.1.tar.gz,200,python-zope.interface,%{srcname},python-zope.interface-6.1.tar.gz
python3.spec,https://www.python.org/ftp/python/%{version}/Python-%{version}.tar.xz,https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz,200,3.12.0,https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tar.xz,200,python3,Python,Python-3.12.0.tar.xz
python3-pyroute2.spec,https://pypi.io/packages/source/p/pyroute2/pyroute2-%{version}.tar.gz,https://github.com/svinota/pyroute2/archive/refs/tags/0.7.3.tar.gz,200,0.7.9,https://github.com/svinota/pyroute2/archive/refs/tags/0.7.9.tar.gz,200,python3-pyroute2,pyroute2,python3-pyroute2-0.7.9.tar.gz
qemu-img.spec,https://download.qemu.org/qemu-%{version}.tar.xz,https://download.qemu.org/qemu-7.2.0.tar.xz,200,8.1.3,https://download.qemu.org/qemu-8.1.3.tar.xz,200,qemu-img,qemu,qemu-8.1.3.tar.xz
rabbitmq.spec,https://github.com/rabbitmq/rabbitmq-server/releases/download/v%{version}/%{name}-%{version}.tar.xz,https://github.com/rabbitmq/rabbitmq-server/archive/refs/tags/v3.11.3.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/rabbitmq/rabbitmq-server/releases/download/v3_12_10/rabbitmq-3_12_10.tar.xz,404,rabbitmq,rabbitmq,
ragel.spec,https://github.com/adrian-thurston/ragel/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/adrian-thurston/ragel/archive/refs/tags/7.0.4.tar.gz,200,(same version),,,ragel,%{name},
rapidjson.spec,https://github.com/miloyip/rapidjson/archive/%{name}-%{version}.tar.gz,https://github.com/miloyip/rapidjson/archive/refs/tags/v1.1.0.tar.gz,200,(same version),,,rapidjson,%{name},
raspberrypi-firmware.spec,%{name}-%{version}.tar.gz,https://github.com/raspberrypi/firmware/archive/refs/tags/1.202306-1.tar.gz,404,Warning: raspberrypi-firmware.spec Source0 version 1.202306-1 is higher than detected latest version 1.20230405 .,,,raspberrypi-firmware,%{name},
rdma-core.spec,https://github.com/linux-rdma/rdma-core/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/linux-rdma/rdma-core/releases/download/v42.0/rdma-core-42.0.tar.gz,200,49.0,https://github.com/linux-rdma/rdma-core/releases/download/v49.0/rdma-core-49.0.tar.gz,200,rdma-core,rdma,rdma-core-49.0.tar.gz
re2.spec,https://github.com/google/re2/archive/%{name}-%{re2_long_ver}.tar.gz,,substitution_unfinished,,,,re2,%{name},
readline.spec,http://ftp.gnu.org/gnu/readline/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/readline/readline-8.2.tar.gz,200,(same version),,,readline,%{name} readline-%{bootstrap_major_version},
redis.spec,https://github.com/redis/redis/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/redis/redis/archive/refs/tags/7.2.2.tar.gz,200,7.2.3,https://github.com/redis/redis/archive/refs/tags/7.2.3.tar.gz,200,redis,%{name},redis-7.2.3.tar.gz
repmgr13.spec,https://repmgr.org/download/%{srcname}-%{version}.tar.gz,https://repmgr.org/download/repmgr-5.3.3.tar.gz,200,,,,repmgr,%{srcname},
repmgr14.spec,https://repmgr.org/download/%{srcname}-%{version}.tar.gz,https://repmgr.org/download/repmgr-5.3.3.tar.gz,200,,,,repmgr,%{srcname},
repmgr15.spec,https://repmgr.org/download/%{srcname}-%{version}.tar.gz,https://repmgr.org/download/repmgr-5.3.3.tar.gz,200,,,,repmgr,%{srcname},
rng-tools.spec,https://sourceforge.net/projects/gkernel/files/%{name}/%{name}-%{version}.tar.gz,https://sourceforge.net/projects/gkernel/files/rng-tools/rng-tools-5.tar.gz,200,(same version),,,rng-tools,rng-tools,
rootlesskit.spec,https://github.com/rootless-containers/rootlesskit/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/rootless-containers/rootlesskit/archive/refs/tags/v1.1.0.tar.gz,200,1.1.1,https://github.com/rootless-containers/rootlesskit/archive/refs/tags/v1.1.1.tar.gz,200,rootlesskit,%{name},rootlesskit-1.1.1.tar.gz
rpcbind.spec,http://downloads.sourceforge.net/rpcbind/%{name}-%{version}.tar.bz2,http://downloads.sourceforge.net/rpcbind/rpcbind-1.2.6.tar.bz2,200,(same version),,,rpcbind,%{name},
rpcsvc-proto.spec,https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/%{name}-%{version}.tar.xz,https://github.com/thkukuk/rpcsvc-proto/archive/refs/tags/v1.4.3.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4_4.tar.xz,404,rpcsvc-proto,rpcsvc,
rpm.spec,https://github.com/rpm-software-management/rpm/archive/%{name}-%{version}.tar.bz2,https://github.com/rpm-software-management/rpm/archive/refs/tags/rpm-4.18.2-release.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,https://github.com/rpm-software-management/rpm/archive/rpm-4_19_0.tar.bz2,404,rpm,%{name},
rpm-ostree.spec,https://github.com/projectatomic/rpm-ostree/releases/download/v%{version}/rpm-ostree-%{version}.tar.xz,https://github.com/projectatomic/rpm-ostree/releases/download/v2022.19/rpm-ostree-2022.19.tar.xz,200,2023.10,https://github.com/projectatomic/rpm-ostree/releases/download/v2023.10/rpm-ostree-2023.10.tar.xz,200,rpm-ostree,%{name},rpm-ostree-2023.10.tar.xz
rrdtool.spec,https://github.com/oetiker/rrdtool-1.x/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/oetiker/rrdtool-1.x/archive/refs/tags/v1.8.0.tar.gz,200,(same version),,,rrdtool,%{name},
rsync.spec,https://download.samba.org/pub/rsync/src/%{name}-%{version}.tar.gz,https://download.samba.org/pub/rsync/src/rsync-3.2.7.tar.gz,200,(same version),,,rsync,%{name},
rsyslog.spec,http://www.rsyslog.com/files/download/rsyslog/%{name}-%{version}.tar.gz,https://github.com/rsyslog/rsyslog/archive/refs/tags/v8.2306.0.tar.gz,200,8.2310.0,https://github.com/rsyslog/rsyslog/archive/refs/tags/v8.2310.0.tar.gz,200,rsyslog,%{name},rsyslog-8.2310.0.tar.gz
rt-tests.spec,%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git/snapshot/rt-tests-2.4.tar.gz,200,2.6,https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git/snapshot/rt-tests-2.6.tar.gz,200,rt-tests,rt-tests,rt-tests-2.6.tar.gz
ruby.spec,https://cache.ruby-lang.org/pub/ruby/2.7/%{name}-%{version}.tar.gz,https://github.com/ruby/ruby/archive/refs/tags/v3_1_2.tar.gz,200,3.2.2,https://github.com/ruby/ruby/archive/refs/tags/v3_2_2.tar.gz,200,ruby,%{name},ruby-3_2_2.tar.gz
rubygem-activesupport.spec,https://rubygems.org/downloads/activesupport-%{version}.gem,https://rubygems.org/downloads/activesupport-7.0.4.gem,200,7.1.2,https://rubygems.org/downloads/activesupport-7.1.2.gem,200,rubygem-activesupport,activesupport,activesupport-7.1.2.gem
rubygem-addressable.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/addressable-2.8.1.gem,200,2.8.5,https://rubygems.org/downloads/addressable-2.8.5.gem,200,rubygem-addressable,addressable,addressable-2.8.5.gem
rubygem-async.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/async-2.2.1.gem,200,2.6.5,https://rubygems.org/downloads/async-2.6.5.gem,200,rubygem-async,async,async-2.6.5.gem
rubygem-async-http.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/async-http-0.59.2.gem,200,0.61.0,https://rubygems.org/downloads/async-http-0.61.0.gem,200,rubygem-async-http,async-http,async-http-0.61.0.gem
rubygem-async-io.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/async-io-1.34.0.gem,200,1.38.0,https://rubygems.org/downloads/async-io-1.38.0.gem,200,rubygem-async-io,async-io,async-io-1.38.0.gem
rubygem-aws-eventstream.spec,https://rubygems.org/downloads/aws-eventstream-%{version}.gem,https://rubygems.org/downloads/aws-eventstream-1.2.0.gem,200,1.3.0,https://rubygems.org/downloads/aws-eventstream-1.3.0.gem,200,rubygem-aws-eventstream,aws-eventstream,aws-eventstream-1.3.0.gem
rubygem-aws-partitions.spec,https://rubygems.org/downloads/aws-partitions-%{version}.gem,https://rubygems.org/downloads/aws-partitions-1.654.0.gem,200,1.861.0,https://rubygems.org/downloads/aws-partitions-1.861.0.gem,200,rubygem-aws-partitions,aws-partitions,aws-partitions-1.861.0.gem
rubygem-aws-sdk-core.spec,https://rubygems.org/downloads/aws-sdk-core-%{version}.gem,https://rubygems.org/downloads/aws-sdk-core-3.166.0.gem,200,3.190.0,https://rubygems.org/downloads/aws-sdk-core-3.190.0.gem,200,rubygem-aws-sdk-core,aws-sdk-core,aws-sdk-core-3.190.0.gem
rubygem-aws-sdk-kms.spec,https://rubygems.org/downloads/aws-sdk-kms-%{version}.gem,https://rubygems.org/downloads/aws-sdk-kms-1.59.0.gem,200,1.74.0,https://rubygems.org/downloads/aws-sdk-kms-1.74.0.gem,200,rubygem-aws-sdk-kms,aws-sdk-kms,aws-sdk-kms-1.74.0.gem
rubygem-aws-sdk-s3.spec,https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3-%{version}.gem,https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3-1.117.1.gem,404,Warning: Manufacturer may changed version packaging format.,https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3-2_11_632.gem,404,rubygem-aws-sdk-s3,aws-sdk-s3,
rubygem-aws-sdk-sqs.spec,https://rubygems.org/downloads/aws-sdk-sqs-%{version}.gem,https://rubygems.org/downloads/aws-sdk-sqs-1.52.0.gem,200,1.69.0,https://rubygems.org/downloads/aws-sdk-sqs-1.69.0.gem,200,rubygem-aws-sdk-sqs,aws-sdk-sqs,aws-sdk-sqs-1.69.0.gem
rubygem-aws-sigv4.spec,https://rubygems.org/downloads/aws-sigv4-%{version}.gem,https://rubygems.org/downloads/aws-sigv4-1.5.2.gem,200,1.8.0,https://rubygems.org/downloads/aws-sigv4-1.8.0.gem,200,rubygem-aws-sigv4,aws-sigv4,aws-sigv4-1.8.0.gem
rubygem-backports.spec,https://rubygems.org/gems/backports-%{version}.gem,https://rubygems.org/gems/backports-3.23.0.gem,200,3.24.1,https://rubygems.org/gems/backports-3.24.1.gem,200,rubygem-backports,backports,backports-3.24.1.gem
rubygem-builder.spec,http://rubygems.org/gems/builder-%{version}.gem,http://rubygems.org/gems/builder-3.2.4.gem,200,(same version),,,rubygem-builder,builder rvm-installer,
rubygem-bundler.spec,https://rubygems.org/downloads/bundler-%{version}.gem,https://rubygems.org/downloads/bundler-2.3.24.gem,200,2.4.22,https://rubygems.org/downloads/bundler-2.4.22.gem,200,rubygem-bundler,bundler,bundler-2.4.22.gem
rubygem-concurrent-ruby.spec,https://rubygems.org/downloads/concurrent-ruby-%{version}.gem,https://rubygems.org/downloads/concurrent-ruby-1.1.10.gem,200,1.2.2,https://rubygems.org/downloads/concurrent-ruby-1.2.2.gem,200,rubygem-concurrent-ruby,concurrent-ruby,concurrent-ruby-1.2.2.gem
rubygem-console.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/console-1.16.2.gem,200,1.23.2,https://rubygems.org/downloads/console-1.23.2.gem,200,rubygem-console,console,console-1.23.2.gem
rubygem-cool-io.spec,https://rubygems.org/downloads/cool.io-%{version}.gem,https://rubygems.org/downloads/cool.io-1.7.1.gem,200,1.8.0,https://rubygems.org/downloads/cool.io-1.8.0.gem,200,rubygem-cool-io,cool.io,cool.io-1.8.0.gem
rubygem-dig_rb.spec,https://rubygems.org/downloads/dig_rb-%{version}.gem,https://rubygems.org/downloads/dig_rb-1.0.1.gem,200,(same version),,,rubygem-dig_rb,dig_rb,
rubygem-domain_name.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/domain_name-0.5.20190701.gem,200,0.6.20231109,https://rubygems.org/downloads/domain_name-0.6.20231109.gem,200,rubygem-domain_name,domain_name,domain_name-0.6.20231109.gem
rubygem-ffi.spec,https://rubygems.org/downloads/ffi-%{version}.gem,https://rubygems.org/downloads/ffi-1.15.5.gem,200,1.16.3,https://rubygems.org/downloads/ffi-1.16.3.gem,200,rubygem-ffi,ffi,ffi-1.16.3.gem
rubygem-fluent-plugin-concat.spec,https://rubygems.org/downloads/fluent-plugin-concat-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-concat-2.5.0.gem,200,(same version),,,rubygem-fluent-plugin-concat,fluent-plugin-concat,
rubygem-fluent-plugin-kubernetes_metadata_filter.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-kubernetes_metadata_filter-3.1.2.gem,200,3.4.0,https://rubygems.org/downloads/fluent-plugin-kubernetes_metadata_filter-3.4.0.gem,200,rubygem-fluent-plugin-kubernetes_metadata_filter,fluent-plugin-kubernetes_metadata_filter,fluent-plugin-kubernetes_metadata_filter-3.4.0.gem
rubygem-fluent-plugin-remote_syslog.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-remote_syslog-1.1.0.gem,200,(same version),,,rubygem-fluent-plugin-remote_syslog,fluent-plugin-remote_syslog,
rubygem-fluent-plugin-s3.spec,https://rubygems.org/downloads/fluent-plugin-s3-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-s3-1.7.2.gem,200,(same version),,,rubygem-fluent-plugin-s3,fluent-plugin-s3,
rubygem-fluent-plugin-systemd.spec,https://rubygems.org/downloads/fluent-plugin-systemd-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-systemd-1.0.5.gem,200,(same version),,,rubygem-fluent-plugin-systemd,fluent-plugin-systemd,
rubygem-fluent-plugin-vmware-loginsight.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/fluent-plugin-vmware-loginsight-1.3.0.gem,200,1.4.2,https://rubygems.org/downloads/fluent-plugin-vmware-loginsight-1.4.2.gem,200,rubygem-fluent-plugin-vmware-loginsight,fluent-plugin-vmware-loginsight,fluent-plugin-vmware-loginsight-1.4.2.gem
rubygem-fluentd.spec,https://rubygems.org/downloads/fluentd-%{version}.gem,https://rubygems.org/downloads/fluentd-1.15.2.gem,200,1.16.3,https://rubygems.org/downloads/fluentd-1.16.3.gem,200,rubygem-fluentd,fluentd,fluentd-1.16.3.gem
rubygem-highline.spec,https://rubygems.org/downloads/highline-%{version}.gem,https://rubygems.org/downloads/highline-2.0.3.gem,200,3.0.0.pre.1,https://rubygems.org/downloads/highline-3.0.0.pre.1.gem,200,rubygem-highline,highline,highline-3.0.0.pre.1.gem
rubygem-hpricot.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/hpricot-0.8.6.gem,200,(same version),,,rubygem-hpricot,hpricot,
rubygem-http.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/http-5.1.0.gem,200,5.1.1,https://rubygems.org/downloads/http-5.1.1.gem,200,rubygem-http,http,http-5.1.1.gem
rubygem-http-accept.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/http-accept-2.2.0.gem,200,(same version),,,rubygem-http-accept,http-accept,
rubygem-http-cookie.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/http-cookie-1.0.5.gem,200,(same version),,,rubygem-http-cookie,http-cookie,
rubygem-http-form_data.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/http-form_data-2.3.0.gem,200,(same version),,,rubygem-http-form_data,http-form_data,
rubygem-http_parser.rb.spec,https://rubygems.org/downloads/http_parser.rb-%{version}.gem,https://rubygems.org/downloads/http_parser.rb-0.8.0.gem,200,(same version),,,rubygem-http_parser.rb,http_parser.rb,
rubygem-i18n.spec,https://rubygems.org/downloads/i18n-%{version}.gem,https://rubygems.org/downloads/i18n-1.12.0.gem,200,1.14.1,https://rubygems.org/downloads/i18n-1.14.1.gem,200,rubygem-i18n,i18n,i18n-1.14.1.gem
rubygem-jmespath.spec,https://rubygems.org/downloads/jmespath-%{version}.gem,https://rubygems.org/downloads/jmespath-1.6.1.gem,200,1.6.2,https://rubygems.org/downloads/jmespath-1.6.2.gem,200,rubygem-jmespath,jmespath,jmespath-1.6.2.gem
rubygem-kubeclient.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/kubeclient-4.10.1.gem,200,4.11.0,https://rubygems.org/downloads/kubeclient-4.11.0.gem,200,rubygem-kubeclient,kubeclient,kubeclient-4.11.0.gem
rubygem-libxml-ruby.spec,https://rubygems.org/downloads/libxml-ruby-%{version}.gem,https://rubygems.org/downloads/libxml-ruby-3.2.4.gem,200,4.1.2,https://rubygems.org/downloads/libxml-ruby-4.1.2.gem,200,rubygem-libxml-ruby,libxml-ruby,libxml-ruby-4.1.2.gem
rubygem-lru_redux.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/lru_redux-1.1.0.gem,200,(same version),,,rubygem-lru_redux,lru_redux,
rubygem-mime-types.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/mime-types-3.4.1.gem,200,3.5.1,https://rubygems.org/downloads/mime-types-3.5.1.gem,200,rubygem-mime-types,mime-types,mime-types-3.5.1.gem
rubygem-mime-types-data.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/mime-types-data-3.2022.0105.gem,200,3.2023.1003,https://rubygems.org/downloads/mime-types-data-3.2023.1003.gem,200,rubygem-mime-types-data,mime-types-data,mime-types-data-3.2023.1003.gem
rubygem-mini_portile.spec,https://rubygems.org/downloads/mini_portile-%{version}.gem,https://rubygems.org/downloads/mini_portile-0.6.2.gem,200,(same version),,,rubygem-mini_portile,mini_portile,
rubygem-mini_portile2.spec,https://rubygems.org/downloads/mini_portile2-%{version}.gem,https://rubygems.org/downloads/mini_portile2-2.8.0.gem,200,2.8.5,https://rubygems.org/downloads/mini_portile2-2.8.5.gem,200,rubygem-mini_portile2,mini_portile2,mini_portile2-2.8.5.gem
rubygem-msgpack.spec,https://rubygems.org/downloads/msgpack-%{version}.gem,https://rubygems.org/downloads/msgpack-1.6.0.gem,200,1.7.2,https://rubygems.org/downloads/msgpack-1.7.2.gem,200,rubygem-msgpack,msgpack,msgpack-1.7.2.gem
rubygem-mustache.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/mustache-1.1.1.gem,200,(same version),,,rubygem-mustache,mustache,
rubygem-netrc.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/netrc-0.11.0.gem,200,(same version),,,rubygem-netrc,netrc,
rubygem-nio4r.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/nio4r-2.5.8.gem,200,2.6.1,https://rubygems.org/downloads/nio4r-2.6.1.gem,200,rubygem-nio4r,nio4r,nio4r-2.6.1.gem
rubygem-nokogiri.spec,https://rubygems.org/downloads/nokogiri-%{version}.gem,https://rubygems.org/downloads/nokogiri-1.13.9.gem,200,1.15.5,https://rubygems.org/downloads/nokogiri-1.15.5.gem,200,rubygem-nokogiri,nokogiri,nokogiri-1.15.5.gem
rubygem-oj.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/oj-3.13.21.gem,200,3.16.1,https://rubygems.org/downloads/oj-3.16.1.gem,200,rubygem-oj,oj,oj-3.16.1.gem
rubygem-protocol-hpack.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/protocol-hpack-1.4.2.gem,200,(same version),,,rubygem-protocol-hpack,protocol-hpack,
rubygem-protocol-http.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/protocol-http-0.23.12.gem,200,0.25.0,https://rubygems.org/downloads/protocol-http-0.25.0.gem,200,rubygem-protocol-http,protocol-http,protocol-http-0.25.0.gem
rubygem-protocol-http1.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/protocol-http1-0.14.6.gem,200,0.16.0,https://rubygems.org/downloads/protocol-http1-0.16.0.gem,200,rubygem-protocol-http1,protocol-http1,protocol-http1-0.16.0.gem
rubygem-protocol-http2.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/protocol-http2-0.14.2.gem,200,0.15.1,https://rubygems.org/downloads/protocol-http2-0.15.1.gem,200,rubygem-protocol-http2,protocol-http2,protocol-http2-0.15.1.gem
rubygem-public_suffix.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/public_suffix-5.0.0.gem,200,5.0.4,https://rubygems.org/downloads/public_suffix-5.0.4.gem,200,rubygem-public_suffix,public_suffix,public_suffix-5.0.4.gem
rubygem-rbvmomi.spec,http://rubygems.org/gems/rbvmomi-%{version}.gem,http://rubygems.org/gems/rbvmomi-3.0.0.gem,200,(same version),,,rubygem-rbvmomi,rbvmomi,
rubygem-rdiscount.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/rdiscount-2.2.7.gem,200,2.2.7.1,https://rubygems.org/downloads/rdiscount-2.2.7.1.gem,200,rubygem-rdiscount,rdiscount,rdiscount-2.2.7.1.gem
rubygem-recursive-open-struct.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/recursive-open-struct-1.1.3.gem,200,(same version),,,rubygem-recursive-open-struct,recursive-open-struct,
rubygem-remote_syslog_sender.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/remote_syslog_sender-1.2.2.gem,200,(same version),,,rubygem-remote_syslog_sender,remote_syslog_sender,
rubygem-rest-client.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/rest-client-2.1.0.gem,200,(same version),,,rubygem-rest-client,rest-client,
rubygem-ronn.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/ronn-0.7.3.gem,200,(same version),,,rubygem-ronn,ronn,
rubygem-serverengine.spec,https://rubygems.org/downloads/serverengine-%{version}.gem,https://rubygems.org/downloads/serverengine-2.3.0.gem,200,2.3.2,https://rubygems.org/downloads/serverengine-2.3.2.gem,200,rubygem-serverengine,serverengine,serverengine-2.3.2.gem
rubygem-sigdump.spec,https://rubygems.org/downloads/sigdump-%{version}.gem,https://rubygems.org/downloads/sigdump-0.2.4.gem,200,0.2.5,https://rubygems.org/downloads/sigdump-0.2.5.gem,200,rubygem-sigdump,sigdump,sigdump-0.2.5.gem
rubygem-strptime.spec,https://rubygems.org/downloads/strptime-%{version}.gem,https://rubygems.org/downloads/strptime-0.2.5.gem,200,(same version),,,rubygem-strptime,strptime,
rubygem-syslog_protocol.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/syslog_protocol-0.9.2.gem,200,(same version),,,rubygem-syslog_protocol,syslog_protocol,
rubygem-systemd-journal.spec,https://rubygems.org/downloads/systemd-journal-%{version}.gem,https://rubygems.org/downloads/systemd-journal-1.4.2.gem,200,(same version),,,rubygem-systemd-journal,systemd-journal,
rubygem-terminal-table.spec,https://rubygems.org/downloads/terminal-table-%{version}.gem,https://rubygems.org/downloads/terminal-table-3.0.2.gem,200,(same version),,,rubygem-terminal-table,terminal-table,
rubygem-thread_safe.spec,https://rubygems.org/downloads/thread_safe-%{version}.gem,https://rubygems.org/downloads/thread_safe-0.3.6.gem,200,(same version),,,rubygem-thread_safe,thread_safe,
rubygem-timers.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/timers-4.3.5.gem,200,(same version),,,rubygem-timers,timers,
rubygem-trollop.spec,https://rubygems.org/downloads/trollop-%{version}.gem,https://rubygems.org/downloads/trollop-2.9.10.gem,200,(same version),,,rubygem-trollop,trollop,
rubygem-tzinfo.spec,https://rubygems.org/downloads/tzinfo-%{version}.gem,https://rubygems.org/downloads/tzinfo-2.0.5.gem,200,2.0.6,https://rubygems.org/downloads/tzinfo-2.0.6.gem,200,rubygem-tzinfo,tzinfo,tzinfo-2.0.6.gem
rubygem-tzinfo-data.spec,https://rubygems.org/downloads/tzinfo-data-%{version}.gem,https://rubygems.org/downloads/tzinfo-data-1.2022.6.gem,200,1.2023.3,https://rubygems.org/downloads/tzinfo-data-1.2023.3.gem,200,rubygem-tzinfo-data,tzinfo-data,tzinfo-data-1.2023.3.gem
rubygem-unf.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/unf-0.1.4.gem,200,(same version),,,rubygem-unf,unf,
rubygem-unf_ext.spec,https://rubygems.org/downloads/%{gem_name}-%{version}.gem,https://rubygems.org/downloads/unf_ext-0.0.8.2.gem,200,0.0.9.1,https://rubygems.org/downloads/unf_ext-0.0.9.1.gem,200,rubygem-unf_ext,unf_ext,unf_ext-0.0.9.1.gem
rubygem-unicode-display_width.spec,http://rubygems.org/gems/unicode-display_width-%{version}.gem,http://rubygems.org/gems/unicode-display_width-2.3.0.gem,200,2.5.0,http://rubygems.org/gems/unicode-display_width-2.5.0.gem,200,rubygem-unicode-display_width,unicode-display_width,unicode-display_width-2.5.0.gem
rubygem-yajl-ruby.spec,https://rubygems.org/downloads/yajl-ruby-%{version}.gem,https://rubygems.org/downloads/yajl-ruby-1.4.3.gem,200,(same version),,,rubygem-yajl-ruby,yajl-ruby,
rubygem-zip.spec,https://rubygems.org/downloads/zip-%{version}.gem,https://rubygems.org/downloads/zip-2.0.2.gem,200,(same version),,,rubygem-zip,zip,
runc.spec,https://github.com/opencontainers/runc/archive/%{name}-%{version}.tar.gz,https://github.com/opencontainers/runc/archive/refs/tags/v1.1.7.tar.gz,200,1.1.10,https://github.com/opencontainers/runc/archive/refs/tags/v1.1.10.tar.gz,200,runc,%{name},runc-1.1.10.tar.gz
runit.spec,http://smarden.org/runit/runit-%{version}.tar.gz,http://smarden.org/runit/runit-2.1.2.tar.gz,200,,,,runit,runit,
rust.spec,https://static.rust-lang.org/dist/%{name}c-%{version}-src.tar.xz,https://github.com/rust-lang/rust/archive/refs/tags/1.71.1.tar.xz,200,1.74.0,https://static.rust-lang.org/dist/rustc-1.74.0-src.tar.xz,200,rust,%{name}c-%{version}-src,rustc-1.74.0-src.tar.xz
s3fs-fuse.spec,https://github.com/%{name}/%{name}/archive/refs/tags/%{name}-v%{version}.tar.gz,https://github.com/s3fs-fuse/s3fs-fuse/archive/refs/tags/v1.91.tar.gz,200,1.93,https://github.com/s3fs-fuse/s3fs-fuse/archive/refs/tags/v1.93.tar.gz,200,s3fs-fuse,%{name},s3fs-fuse-1.93.tar.gz
samba-client.spec,https://www.samba.org/ftp/samba/stable/samba-%{version}.tar.gz,https://www.samba.org/ftp/samba/stable/samba-4.18.8.tar.gz,200,4.19.3,https://www.samba.org/ftp/samba/stable/samba-4.19.3.tar.gz,200,samba-client,samba,samba-4.19.3.tar.gz
sbsigntools.spec,%{name}-%{version}.tar.xz,,404,,,,sbsigntools,%{name},
scons.spec,https://sourceforge.net/projects/scons/files/scons/%{version}/%{name}-%{version}.tar.gz,https://sourceforge.net/projects/scons/files/scons/4.1.0/scons-4.1.0.tar.gz,200,4.6.0,https://sourceforge.net/projects/scons/files/scons/4.6.0/scons-4.6.0.tar.gz,200,scons,scons,scons-4.6.0.tar.gz
sed.spec,http://ftp.gnu.org/gnu/sed/%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/sed/sed-4.8.tar.xz,200,4.9,http://ftp.gnu.org/gnu/sed/sed-4.9.tar.xz,200,sed,%{name},sed-4.9.tar.xz
selinux-policy.spec,https://github.com/fedora-selinux/selinux-policy/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/fedora-selinux/selinux-policy/archive/refs/tags/v36.5.tar.gz,200,40.6,https://github.com/fedora-selinux/selinux-policy/archive/refs/tags/v40.6.tar.gz,200,selinux-policy,%{name} container-selinux,selinux-policy-40.6.tar.gz
selinux-python.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/selinux-python-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/selinux-python-3.5.tar.gz,200,selinux-python,%{name},selinux-python-3.5.tar.gz
semodule-utils.spec,https://github.com/SELinuxProject/selinux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SELinuxProject/selinux/releases/download/3.4/semodule-utils-3.4.tar.gz,200,3.5,https://github.com/SELinuxProject/selinux/releases/download/3.5/semodule-utils-3.5.tar.gz,200,semodule-utils,%{name},semodule-utils-3.5.tar.gz
sendmail.spec,https://ftp.sendmail.org/sendmail.%{version}.tar.gz,https://ftp.sendmail.org/sendmail.8.17.1.tar.gz,200,8.17.2,https://ftp.sendmail.org/sendmail.8.17.2.tar.gz,200,sendmail,%{name}.%{version},sendmail.8.17.2.tar.gz
serf.spec,https://www.apache.org/dist/serf/%{name}-%{version}.tar.bz2,https://github.com/apache/serf/archive/refs/tags/1.3.9.tar.bz2,200,1.3.10,https://www.apache.org/dist/serf/serf-1.3.10.tar.bz2,200,serf,serf,serf-1.3.10.tar.bz2
setools.spec,https://github.com/SELinuxProject/setools/releases/download/%{version}/%{name}-%{version}.tar.bz2,https://github.com/SELinuxProject/setools/releases/download/4.4.0/setools-4.4.0.tar.bz2,200,4.4.3,https://github.com/SELinuxProject/setools/releases/download/4.4.3/setools-4.4.3.tar.bz2,200,setools,%{name},setools-4.4.3.tar.bz2
sg3_utils.spec,http://sg.danny.cz/sg/p/%{name}-%{version}.tar.xz,http://sg.danny.cz/sg/p/sg3_utils-1.47.tar.xz,200,1.48,http://sg.danny.cz/sg/p/sg3_utils-1.48.tar.xz,200,sg3_utils,%{name},sg3_utils-1.48.tar.xz
shadow.spec,https://github.com/shadow-maint/shadow/releases/download/%{version}/%{name}-%{version}.tar.xz,https://github.com/shadow-maint/shadow/archive/refs/tags/4.13.tar.xz,200,4.14.2,https://github.com/shadow-maint/shadow/releases/download/4.14.2/shadow-4.14.2.tar.xz,200,shadow,%{name},shadow-4.14.2.tar.xz
shared-mime-info.spec,http://freedesktop.org/~hadess/%{name}-%{version}.tar.gz,https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/2.2/shared-mime-info-2.2.tar.gz,200,2.4,https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/2.4/shared-mime-info-2.4.tar.gz,200,shared-mime-info,%{name},shared-mime-info-2.4.tar.gz
shim.spec,https://github.com/rhboot/%{name}/releases/download/%{version}/%{name}-%{version}.tar.bz2,https://github.com/rhboot/shim/releases/download/15.7/shim-15.7.tar.bz2,200,(same version),,,shim,shim,
shim-signed.spec,%{name}-%{version}.tar.xz,,404,,,,shim-signed,shim-signed,
slang.spec,http://www.jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2,http://www.jedsoft.org/releases/slang/slang-2.3.2.tar.bz2,200,2.3.3,http://www.jedsoft.org/releases/slang/slang-2.3.3.tar.bz2,200,slang,%{name},slang-2.3.3.tar.bz2
slirp4netns.spec,%{url}/archive/%{name}-%{version}.tar.gz,https://github.com/rootless-containers/slirp4netns/archive/refs/tags/v1.2.0.tar.gz,200,1.2.2,https://github.com/rootless-containers/slirp4netns/archive/refs/tags/v1.2.2.tar.gz,200,slirp4netns,%{name},slirp4netns-1.2.2.tar.gz
snappy.spec,https://github.com/google/%{name}/archive/%{name}-%{version}.tar.gz,https://github.com/google/snappy/archive/refs/tags/1.1.9.tar.gz,200,1.1.10,https://github.com/google/snappy/archive/refs/tags/1.1.10.tar.gz,200,snappy,%{name},snappy-1.1.10.tar.gz
snoopy.spec,%{name}-%{version}.tar.gz,https://github.com/a2o/snoopy/archive/snoopy-2.5.1.tar.gz,200,(same version),,,snoopy,snoopy,
socat.spec,http://www.dest-unreach.org/socat/download/%{name}-%{version}.tar.bz2,http://www.dest-unreach.org/socat/download/socat-1.7.4.4.tar.bz2,200,1.8.0.0,http://www.dest-unreach.org/socat/download/socat-1.8.0.0.tar.bz2,200,socat,%{name},socat-1.8.0.0.tar.bz2
spdlog.spec,%{name}-%{version}.tar.gz,https://github.com/gabime/spdlog/archive/refs/tags/v1.11.0.tar.gz,200,1.12.0,https://github.com/gabime/spdlog/archive/refs/tags/v1.12.0.tar.gz,200,spdlog,%{name},spdlog-1.12.0.tar.gz
spirv-headers.spec,https://github.com/KhronosGroup/SPIRV-Headers/archive/refs/tags/SPIRV-Headers-%{version}.tar.gz,https://github.com/KhronosGroup/SPIRV-Headers/archive/refs/tags/sdk-1.3.231.1.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/KhronosGroup/SPIRV-Headers/archive/refs/tags/SPIRV-Headers-1_5_4.tar.gz,404,spirv-headers,SPIRV-Headers-%{version}.tar.gz,
spirv-tools.spec,https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/SPIRV-Tools-%{version}.tar.gz,https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/sdk-1.3.231.1.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/SPIRV-Tools-2023_2.tar.gz,404,spirv-tools,SPIRV-Tools-%{version}.tar.gz,
sqlite.spec,http://sqlite.org/2022/%{name}-autoconf-%{sourcever}.tar.gz,https://github.com/sqlite/sqlite/archive/refs/tags/version-3.40.1.tar.gz,200,3.44.2,https://github.com/sqlite/sqlite/archive/refs/tags/version-3.44.2.tar.gz,200,sqlite,%{name},ersion-3.44.2.tar.gz
squashfs-tools.spec,https://github.com/plougher/squashfs-tools/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/plougher/squashfs-tools/archive/refs/tags/4.5.1.tar.gz,200,4.6.1,https://github.com/plougher/squashfs-tools/archive/refs/tags/4.6.1.tar.gz,200,squashfs-tools,%{name},squashfs-tools-4.6.1.tar.gz
squid.spec,http://www.squid-cache.org/Versions/v5/%{name}-%{version}.tar.xz,http://www.squid-cache.org/Versions/v5/squid-6.5.tar.xz,404,Warning: squid.spec Source0 version 6.5 is higher than detected latest version 5.9 .,,,squid,%{name},
sshpass.spec,http://downloads.sourceforge.net/project/sshpass/%{name}/%{version}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/project/sshpass/sshpass/1.10/sshpass-1.10.tar.gz,200,(same version),,,sshpass,%{name},
sssd.spec,https://github.com/SSSD/sssd/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/SSSD/sssd/releases/download/2.8.2/sssd-2.8.2.tar.gz,200,2.9.3,https://github.com/SSSD/sssd/releases/download/2.9.3/sssd-2.9.3.tar.gz,200,sssd,sssd,sssd-2.9.3.tar.gz
stalld.spec,https://git.kernel.org/pub/scm/utils/stalld/stalld.git/snapshot/%{name}-%{version}.tar.gz,https://git.kernel.org/pub/scm/utils/stalld/stalld.git/snapshot/stalld-1.17.1.tar.gz,200,1.18.0,https://git.kernel.org/pub/scm/utils/stalld/stalld.git/snapshot/stalld-1.18.0.tar.gz,200,stalld,%{name},stalld-1.18.0.tar.gz
stig-hardening.spec,https://packages.vmware.com/photon/photon_sources/1.0/%{name}-ph5-%{version}.tar.gz,https://packages.vmware.com/photon/photon_sources/1.0/stig-hardening-ph5-1.2.tar.gz,200,Warning: stig-hardening.spec Source0 version 1.2 is higher than detected latest version 1.0/8.2 .,,,stig-hardening,%{name}-ph5-%{version},
strace.spec,https://strace.io/files/%{version}/%{name}-%{version}.tar.xz,https://strace.io/files/6.1/strace-6.1.tar.xz,200,(same version),,,strace,strace,
strongswan.spec,https://download.strongswan.org/%{name}-%{version}.tar.bz2,https://github.com/strongswan/strongswan/releases/download/5.9.8/strongswan-5.9.8.tar.bz2,200,5.9.12,https://github.com/strongswan/strongswan/releases/download/5.9.12/strongswan-5.9.12.tar.bz2,200,strongswan,%{name},strongswan-5.9.12.tar.bz2
subversion.spec,http://archive.apache.org/dist/%{name}/%{name}-%{version}.tar.bz2,https://github.com/apache/subversion/archive/refs/tags/1.14.2.tar.gz,200,(same version),,,subversion,%{name},
sudo.spec,http://www.sudo.ws/sudo/dist/%{name}-%{version}.tar.gz,http://www.sudo.ws/sudo/dist/sudo-1.9.14p3.tar.gz,200,1.9.15,http://www.sudo.ws/sudo/dist/sudo-1.9.15.tar.gz,200,sudo,%{name},sudo-1.9.15.tar.gz
suricata.spec,https://www.openinfosecfoundation.org/download/%{name}-%{version}.tar.gz,https://www.openinfosecfoundation.org/download/suricata-7.0.0.tar.gz,200,7.0.2,https://www.openinfosecfoundation.org/download/suricata-7.0.2.tar.gz,200,suricata,%{name},suricata-7.0.2.tar.gz
swig.spec,http://downloads.sourceforge.net/project/swig/swig/swig-%{version}/swig-%{version}.tar.gz,http://downloads.sourceforge.net/project/swig/swig/swig-4.1.1/swig-4.1.1.tar.gz,200,(same version),,,swig,swig,
synce4l.spec,https://github.com/intel/synce4l/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/intel/synce4l/archive/refs/tags/0.8.0.tar.gz,200,1.0.0,https://github.com/intel/synce4l/archive/refs/tags/1.0.0.tar.gz,200,synce4l,%{name},synce4l-1.0.0.tar.gz
sysdig.spec,https://github.com/draios/sysdig/archive/%{name}-%{version}.tar.gz,https://github.com/draios/sysdig/archive/refs/tags/0.30.2.tar.gz,200,0.34.1,https://github.com/draios/sysdig/archive/refs/tags/0.34.1.tar.gz,200,sysdig,%{name} falconsecurity-libs,sysdig-0.34.1.tar.gz
syslinux.spec,https://www.kernel.org/pub/linux/utils/boot/%{name}/Testing/%{version}/%{name}-%{version}-pre1.tar.xz,https://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/6.04/syslinux-6.04-pre1.tar.xz,200,Warning: syslinux.spec Source0 version 6.04 is higher than detected latest version 6.03 .,,,syslinux,%{name} libpng zlib,
syslog-ng.spec,https://github.com/balabit/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz,https://github.com/balabit/syslog-ng/releases/download/syslog-ng-4.3.1/syslog-ng-4.3.1.tar.gz,200,4.5.0,https://github.com/balabit/syslog-ng/releases/download/syslog-ng-4.5.0/syslog-ng-4.5.0.tar.gz,200,syslog-ng,%{name},syslog-ng-4.5.0.tar.gz
sysstat.spec,http://perso.wanadoo.fr/sebastien.godard/%{name}-%{version}.tar.xz,http://pagesperso-orange.fr/sebastien.godard/sysstat-12.7.2.tar.xz,200,,,,sysstat,sysstat,
systemd.spec,https://github.com/systemd/systemd-stable/archive/%{name}-stable-%{version}.tar.gz,https://github.com/systemd/systemd-stable/archive/refs/tags/v253.12.tar.gz,200,254.6,https://github.com/systemd/systemd-stable/archive/refs/tags/v254.6.tar.gz,200,systemd,%{name},systemd-254.6.tar.gz
systemtap.spec,http://sourceware.org/systemtap/ftp/releases/%{name}-%{version}.tar.gz,https://sourceware.org/ftp/systemtap/releases/systemtap-4.8.tar.gz,200,5.0,https://sourceware.org/ftp/systemtap/releases/systemtap-5.0.tar.gz,200,systemtap,%{name},systemtap-5.0.tar.gz
tar.spec,https://ftp.gnu.org/gnu/tar/%{name}-%{version}.tar.xz,https://ftp.gnu.org/gnu/tar/tar-1.34.tar.xz,200,1.35,https://ftp.gnu.org/gnu/tar/tar-1.35.tar.xz,200,tar,%{name},tar-1.35.tar.xz
tboot.spec,%{name}-%{version}.tar.gz,https://sourceforge.net/projects/tboot/files/tboot/tboot-1.10.5.tar.gz/download,200,1.11.2,https://sourceforge.net/projects/tboot/files/tboot/tboot-1.11.2.tar.gz/download,200,tboot,tboot,download
tcl.spec,http://downloads.sourceforge.net/sourceforge/tcl/tcl-core%{version}-src.tar.gz,http://downloads.sourceforge.net/sourceforge/tcl/tcl-core8.6.12-src.tar.gz,200,8.6.13,http://downloads.sourceforge.net/sourceforge/tcl/tcl-core8.6.13-src.tar.gz,200,tcl,tcl-core,tcl-core8.6.13-src.tar.gz
tclap.spec,http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/tclap/tclap-1.2.5.tar.gz,200,(same version),,,tclap,tclap,
tcpdump.spec,http://www.tcpdump.org/release/%{name}-%{version}.tar.gz,http://www.tcpdump.org/release/tcpdump-4.99.4.tar.gz,200,(same version),,,tcpdump,tcpdump,
tcp_wrappers.spec,http://ftp.porcupine.org/pub/security/%{name}_%{version}.tar.gz,http://ftp.porcupine.org/pub/security/tcp_wrappers_7.6.tar.gz,200,(same version),,,tcp_wrappers,%{name},
tcsh.spec,http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/%{name}-%{version}.tar.gz,http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/tcsh-6.24.06.tar.gz,200,6.24.10,http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/tcsh-6.24.10.tar.gz,200,tcsh,%{name},tcsh-6.24.10.tar.gz
tdnf.spec,https://github.com/vmware/tdnf/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/vmware/tdnf/archive/refs/tags/v3.5.5.tar.gz,200,(same version),,,tdnf,%{name},
telegraf.spec,https://github.com/influxdata/telegraf/archive/%{name}-%{version}.tar.gz,https://github.com/influxdata/telegraf/archive/refs/tags/v1.28.1.tar.gz,200,1.28.5,https://github.com/influxdata/telegraf/archive/refs/tags/v1.28.5.tar.gz,200,telegraf,%{name} %{name}-plugin,telegraf-1.28.5.tar.gz
termshark.spec,https://github.com/gcla/%{name}/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/gcla/termshark/archive/refs/tags/v2.4.0.tar.gz,200,(same version),,,termshark,%{name},
texinfo.spec,%{name}-%{version}.tar.xz,http://ftp.gnu.org/gnu/texinfo/texinfo-7.0.2.tar.xz,200,7.1,http://ftp.gnu.org/gnu/texinfo/texinfo-7.1.tar.xz,200,texinfo,texinfo,texinfo-7.1.tar.xz
thin-provisioning-tools.spec,thin-provisioning-tools-%{version}.tar.gz,https://github.com/jthornber/thin-provisioning-tools/archive/refs/tags/v1.0.2.tar.gz,200,1.0.7,https://github.com/jthornber/thin-provisioning-tools/archive/refs/tags/v1.0.7.tar.gz,200,thin-provisioning-tools,thin-provisioning-tools thin-provisioning-tools-deps-%{version}p1,thin-provisioning-tools-1.0.7.tar.gz
tinycdb.spec,http://www.corpit.ru/mjt/%{name}/%{name}-%{version}.tar.gz,http://www.corpit.ru/mjt/tinycdb/tinycdb-0.78.tar.gz,200,0.80,http://www.corpit.ru/mjt/tinycdb/tinycdb-0.80.tar.gz,200,tinycdb,%{name},tinycdb-0.80.tar.gz
tmux.spec,https://github.com/tmux/tmux/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/tmux/tmux/releases/download/3.3/tmux-3.3.tar.gz,200,(same version),,,tmux,%{name},
toybox.spec,http://landley.net/toybox/downloads/%{name}-%{version}.tar.gz,https://github.com/landley/toybox/archive/refs/tags/0.8.9.tar.gz,200,0.8.10,https://github.com/landley/toybox/archive/refs/tags/0.8.10.tar.gz,200,toybox,%{name},toybox-0.8.10.tar.gz
tpm2-abrmd.spec,https://github.com/tpm2-software/tpm2-abrmd/releases/download/2.4.1/%{name}-%{version}.tar.gz,https://github.com/tpm2-software/tpm2-abrmd/releases/download/2.4.1/tpm2-abrmd-2.4.1.tar.gz,200,3.0.0,https://github.com/tpm2-software/tpm2-abrmd/releases/download/3.0.0/tpm2-abrmd-3.0.0.tar.gz,200,tpm2-abrmd,tpm2,tpm2-abrmd-3.0.0.tar.gz
tpm2-pkcs11.spec,https://github.com/tpm2-software/tpm2-pkcs11/releases/download/1.6.0/%{name}-%{version}.tar.gz,https://github.com/tpm2-software/tpm2-pkcs11/archive/refs/tags/1.8.0.tar.gz,200,1.9.0,https://github.com/tpm2-software/tpm2-pkcs11/archive/refs/tags/1.9.0.tar.gz,200,tpm2-pkcs11,tpm2,tpm2-pkcs11-1.9.0.tar.gz
tpm2-pytss.spec,https://github.com/tpm2-software/tpm2-pytss/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/tpm2-software/tpm2-pytss/archive/refs/tags/1.2.0.tar.gz,200,2.1.0,https://github.com/tpm2-software/tpm2-pytss/archive/refs/tags/2.1.0.tar.gz,200,tpm2-pytss,%{name},tpm2-pytss-2.1.0.tar.gz
tpm2-tools.spec,https://github.com/tpm2-software/tpm2-tools/releases/download/%{version}/%{name}-%{version}.tar.gz,https://github.com/tpm2-software/tpm2-tools/releases/download/5.3/tpm2-tools-5.3.tar.gz,200,5.6,https://github.com/tpm2-software/tpm2-tools/releases/download/5.6/tpm2-tools-5.6.tar.gz,200,tpm2-tools,%{name},tpm2-tools-5.6.tar.gz
tpm2-tss.spec,https://github.com/tpm2-software/tpm2-tss/releases/download/3.2.0/%{name}-%{version}.tar.gz,https://github.com/tpm2-software/tpm2-tss/releases/download/3.2.0/tpm2-tss-3.2.0.tar.gz,200,4.0.1,https://github.com/tpm2-software/tpm2-tss/releases/download/4.0.1/tpm2-tss-4.0.1.tar.gz,200,tpm2-tss,%{name},tpm2-tss-4.0.1.tar.gz
trace-cmd.spec,https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/%{name}-v%{version}.tar.gz,https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v3.1.4.tar.gz,200,3.2,https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v3.2.tar.gz,200,trace-cmd,%{name},trace-cmd-v3.2.tar.gz
traceroute.spec,http://downloads.sourceforge.net/project/traceroute/traceroute/traceroute-%{version}/traceroute-%{version}.tar.gz,http://downloads.sourceforge.net/project/traceroute/traceroute/traceroute-2.1.3/traceroute-2.1.3.tar.gz,200,(same version),,,traceroute,%{name},
tree.spec,http://mama.indstate.edu/users/ice/tree/src/tree-%{version}.tgz,http://mama.indstate.edu/users/ice/tree/src/tree-2.0.4.tgz,200,2.1.1,http://mama.indstate.edu/users/ice/tree/src/tree-2.1.1.tgz,200,tree,%{name},tree-2.1.1.tgz
trousers.spec,https://sourceforge.net/projects/trousers/files/trousers/0.3.15/%{name}-%{version}.tar.gz,https://sourceforge.net/projects/trousers/files/trousers/0.3.15/trousers-0.3.15.tar.gz/download,200,(same version),,,trousers,%{name},
tuned.spec,tuned-%{version}.tar.gz,https://github.com/redhat-performance/tuned/archive/refs/tags/v2.19.0.tar.gz,200,2.21.0,https://github.com/redhat-performance/tuned/archive/refs/tags/v2.21.0.tar.gz,200,tuned,%{name},tuned-2.21.0.tar.gz
tzdata.spec,http://www.iana.org//time-zones/repository/releases/%{name}%{version}.tar.gz,http://www.iana.org//time-zones/repository/releases/tzdata2022g.tar.gz,200,2023c,http://www.iana.org//time-zones/repository/releases/tzdata2023c.tar.gz,200,tzdata,tzdata,tzdata2023c.tar.gz
u-boot.spec,ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.gz,https://github.com/u-boot/u-boot/archive/refs/tags/v2023.01.tar.gz,200,2023.10,https://github.com/u-boot/u-boot/archive/refs/tags/v2023.10.tar.gz,200,u-boot,u-boot,u-boot-2023.10.tar.gz
unbound.spec,https://www.unbound.net/downloads/%{name}-%{version}.tar.gz,https://github.com/NLnetLabs/unbound/archive/refs/tags/release-1.17.0.tar.gz,200,1.19.0,https://github.com/NLnetLabs/unbound/archive/refs/tags/release-1.19.0.tar.gz,200,unbound,unbound,release-1.19.0.tar.gz
unixODBC.spec,ftp://ftp.unixodbc.org/pub/unixODBC/%{name}-%{version}.tar.gz,https://github.com/lurcher/unixODBC/archive/refs/tags/2.3.11.tar.gz,200,2.3.12,https://github.com/lurcher/unixODBC/archive/refs/tags/2.3.12.tar.gz,200,unixODBC,%{name},unixODBC-2.3.12.tar.gz
unzip.spec,http://downloads.sourceforge.net/infozip/unzip60.tar.gz,http://downloads.sourceforge.net/infozip/unzip60.tar.gz,200,(same version),,,unzip,%{name},
usbutils.spec,https://www.kernel.org/pub/linux/utils/usb/usbutils/%{name}-%{version}.tar.xz,https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-015.tar.xz,200,017,https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-017.tar.xz,200,usbutils,usbutils,usbutils-017.tar.xz
utf8proc.spec,%{name}-%{version}.tar.gz,https://github.com/JuliaStrings/utf8proc/archive/refs/tags/v2.8.0.tar.gz,200,2.9.0,https://github.com/JuliaStrings/utf8proc/archive/refs/tags/v2.9.0.tar.gz,200,utf8proc,%{name},utf8proc-2.9.0.tar.gz
util-linux.spec,https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v%{version}/%{name}-%{version}.tar.xz,https://github.com/util-linux/util-linux/archive/refs/tags/v2.38.tar.xz,200,Warning: Manufacturer may changed version packaging format.,https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2_39_2/util-linux-2_39_2.tar.xz,404,util-linux,%{name},
util-macros.spec,http://ftp.x.org/pub/individual/util/%{name}-%{version}.tar.bz2,https://ftp.x.org/archive//individual/util/util-macros-1.19.3.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,http://ftp.x.org/pub/individual/util/util-macros-1_20_0.tar.bz2,404,util-macros,%{name},
uwsgi.spec,http://projects.unbit.it/downloads/%{name}-%{version}.tar.gz,https://github.com/unbit/uwsgi/archive/refs/tags/2.0.21.tar.gz,200,2.0.23,https://github.com/unbit/uwsgi/archive/refs/tags/2.0.23.tar.gz,200,uwsgi,%{name},uwsgi-2.0.23.tar.gz
valgrind.spec,http://valgrind.org/downloads/%{name}-%{version}.tar.bz2,https://sourceware.org/pub/valgrind/valgrind-3.20.0.tar.bz2,200,3.22.0,https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2,200,valgrind,valgrind,algrind-3.22.0.tar.bz2
vernemq.spec,https://github.com/vernemq/vernemq/archive/%{name}-%{version}.tar.gz,https://github.com/vernemq/vernemq/archive/refs/tags/1.12.6.2.tar.gz,200,1.13.0,https://github.com/vernemq/vernemq/archive/refs/tags/1.13.0.tar.gz,200,vernemq,%{name} vernemq_vendor,vernemq-1.13.0.tar.gz
vim.spec,https://github.com/vim/vim/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/vim/vim/archive/refs/tags/v9.0.2112.tar.gz,200,9.0.2136,https://github.com/vim/vim/archive/refs/tags/v9.0.2136.tar.gz,200,vim,%{name},vim-9.0.2136.tar.gz
virt-what.spec,https://people.redhat.com/~rjones/virt-what/files/%{name}-%{version}.tar.gz,https://people.redhat.com/~rjones/virt-what/files/virt-what-1.25.tar.gz,200,(same version),,,virt-what,%{name},
vsftpd.spec,https://security.appspot.com/downloads/%{name}-%{version}.tar.gz,https://security.appspot.com/downloads/vsftpd-3.0.5.tar.gz,200,,,,vsftpd,%{name},
vulkan-headers.spec,https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/Vulkan-Headers-%{version}.tar.gz,https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.3.237.tar.gz,200,1.3.271,https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.3.271.tar.gz,200,vulkan-headers,Vulkan-Headers,vulkan-headers-1.3.271.tar.gz
vulkan-loader.spec,https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/Vulkan-Loader-%{version}.tar.gz,https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.237.tar.gz,200,1.3.271,https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.271.tar.gz,200,vulkan-loader,Vulkan-Loader,vulkan-loader-1.3.271.tar.gz
vulkan-tools.spec,https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/Vulkan-Tools-%{version}.tar.gz,https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/sdk-1.3.231.1.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/Vulkan-Tools-1.3_271.tar.gz,404,vulkan-tools,Vulkan-Tools-%{version}.tar.gz,
WALinuxAgent.spec,https://github.com/Azure/WALinuxAgent/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/Azure/WALinuxAgent/archive/refs/tags/v2.9.1.1.tar.gz,200,(same version),,,WALinuxAgent,%{name},
watchdog.spec,http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/watchdog/watchdog-5.16.tar.gz,200,(same version),,,watchdog,watchdog,
wavefront-proxy.spec,https://github.com/wavefrontHQ/wavefront-proxy/archive/refs/tags/proxy-%{version}.tar.gz,https://github.com/wavefrontHQ/wavefront-proxy/archive/refs/tags/proxy-13.4.tar.gz,200,(same version),,,wavefront-proxy,proxy,
wayland.spec,https://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz,https://gitlab.freedesktop.org/wayland/wayland/-/archive/1.21.0/wayland-1.21.0.tar.xz,200,1.22.0,https://gitlab.freedesktop.org/wayland/wayland/-/archive/1.22.0/wayland-1.22.0.tar.xz,200,wayland,wayland,wayland-1.22.0.tar.xz
wayland-protocols.spec,https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/%{version}/downloads/%{name}-%{version}.tar.xz,https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.31/downloads/wayland-protocols-1.31.tar.xz,200,1.32,https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.32/downloads/wayland-protocols-1.32.tar.xz,200,wayland-protocols,%{name},wayland-protocols-1.32.tar.xz
wget.spec,ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz,https://ftp.gnu.org/gnu/wget/wget-1.21.3.tar.gz,200,1.21.4,https://ftp.gnu.org/gnu/wget/wget-1.21.4.tar.gz,200,wget,wget,wget-1.21.4.tar.gz
which.spec,http://ftp.gnu.org/gnu/which/%{name}-%{version}.tar.gz,http://ftp.gnu.org/gnu/which/which-2.21.tar.gz,200,(same version),,,which,which,
whois.spec,https://ftp.debian.org/debian/pool/main/w/%{name}/%{name}_%{version}.tar.xz,https://ftp.debian.org/debian/pool/main/w/whois/whois_5.5.15.tar.xz,404,5.5.20,https://ftp.debian.org/debian/pool/main/w/whois/whois_5.5.20.tar.xz,200,whois,%{name},whois_5.5.20.tar.xz
wireguard-tools.spec,https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-%{version}.tar.xz,https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-1.0.20210914.tar.xz,200,,,,wireguard-tools,%{name},
wireshark.spec,https://wireshark.org/download/src/%{name}-%{version}.tar.xz,https://github.com/wireshark/wireshark/archive/refs/tags/wireshark-4.0.11.tar.xz,200,4.2.0,https://wireshark.org/download/src/wireshark-4.2.0.tar.xz,200,wireshark,%{name},wireshark-4.2.0.tar.xz
wpa_supplicant.spec,https://w1.fi/releases/%{name}-%{version}.tar.gz,https://w1.fi/releases/wpa_supplicant-2.10.tar.gz,200,(same version),,,wpa_supplicant,wpa,
xcb-proto.spec,http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.gz,http://xcb.freedesktop.org/dist/xcb-proto-1.15.2.tar.gz,200,(same version),,,xcb-proto,xcb-proto,
xerces-c.spec,http://mirror.jax.hugeserver.com/apache//xerces/c/3/sources/%{name}-%{version}.tar.xz,https://github.com/apache/xerces-c/archive/refs/tags/v3.2.4.tar.gz ,200,(same version),,,xerces-c,%{name},
xfsprogs.spec,http://kernel.org/pub/linux/utils/fs/xfs/xfsprogs/%{name}-%{version}.tar.xz,http://kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.0.0.tar.xz,200,6.5.0,http://kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.5.0.tar.xz,200,xfsprogs,%{name},xfsprogs-6.5.0.tar.xz
xinetd.spec,https://github.com/xinetd-org/xinetd/archive/%{name}-%{version}.tar.gz,https://github.com/xinetd-org/xinetd/archive/refs/tags/xinetd-2-3-15.tar.gz,200,(same version),,,xinetd,%{name},
XML-Parser.spec,http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/%{name}-%{version}.tar.gz,https://github.com/toddr/XML-Parser/archive/refs/tags/2.46.tar.gz,200,(same version),,,XML-Parser,XML-Parser,
xml-security-c.spec,https://www.apache.org/dyn/closer.lua/santuario/c-library/%{name}-%{version}.tar.bz2,https://archive.apache.org/dist/santuario/c-library/xml-security-c-2.0.4.tar.gz,200,(same version),,,xml-security-c,%{name},
xmlsec1.spec,http://www.aleksey.com/xmlsec/download/%{name}-%{version}.tar.gz,https://www.aleksey.com/xmlsec/download/xmlsec1-1.2.37.tar.gz,404,1.3.2,https://www.aleksey.com/xmlsec/download/xmlsec1-1.3.2.tar.gz,200,xmlsec1,%{name},xmlsec1-1.3.2.tar.gz
xmlstarlet.spec,http://downloads.sourceforge.net/xmlstar/%{name}-%{version}.tar.gz,http://downloads.sourceforge.net/xmlstar/xmlstarlet-1.6.1.tar.gz,200,(same version),,,xmlstarlet,%{name},
xmlto.spec,http://releases.pagure.org/xmlto/%{name}-%{version}.tar.gz,http://releases.pagure.org/xmlto/xmlto-0.0.28.tar.gz,200,(same version),,,xmlto,%{name},
xorg-applications.spec,http://ftp.x.org/pub/individual/app/bdftopcf-1.1.tar.bz2,http://ftp.x.org/pub/individual/app/bdftopcf-1.1.tar.bz2,200,Warning: xorg-applications.spec Source0 version 7.7 is higher than detected latest version 1.1 .,,,xorg-applications,bdftopcf mkfontdir mkfontscale,
xorg-fonts.spec,http://ftp.x.org/pub/individual/font/encodings-1.0.6.tar.gz,http://ftp.x.org/pub/individual/font/encodings-1.0.6.tar.gz,200,Warning: xorg-fonts.spec Source0 version 7.7 is higher than detected latest version 1.0.7 .,,,xorg-fonts,encodings-1.0.6.tar.gz font-adobe-100dpi-1.0.3.tar.bz2 font-adobe-75dpi-1.0.3.tar.bz2 font-adobe-utopia-100dpi-1.0.4.tar.bz2 font-adobe-utopia-75dpi-1.0.4.tar.bz2 font-adobe-utopia-type1-1.0.4.tar.bz2 font-alias-1.0.4.tar.bz2 font-arabic-misc-1.0.3.tar.bz2 font-bh-100dpi-1.0.3.tar.bz2 font-bh-75dpi-1.0.3.tar.bz2 font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 font-bh-ttf-1.0.3.tar.bz2 font-bh-type1-1.0.3.tar.bz2 font-bitstream-100dpi-1.0.3.tar.bz2 font-bitstream-75dpi-1.0.3.tar.bz2 font-bitstream-type1-1.0.3.tar.bz2 font-cronyx-cyrillic-1.0.3.tar.bz2 font-cursor-misc-1.0.3.tar.bz2 font-daewoo-misc-1.0.3.tar.bz2 font-dec-misc-1.0.3.tar.bz2 font-ibm-type1-1.0.3.tar.bz2 font-isas-misc-1.0.3.tar.bz2 font-jis-misc-1.0.3.tar.bz2 font-micro-misc-1.0.3.tar.bz2 font-misc-cyrillic-1.0.3.tar.bz2 font-misc-ethiopic-1.0.4.tar.bz2 font-misc-meltho-1.0.3.tar.bz2 font-misc-misc-1.1.2.tar.bz2 font-mutt-misc-1.0.3.tar.bz2 font-schumacher-misc-1.1.2.tar.bz2 font-screen-cyrillic-1.0.4.tar.bz2 font-sony-misc-1.0.3.tar.bz2 font-sun-misc-1.0.3.tar.bz2 font-winitzki-cyrillic-1.0.3.tar.bz2 font-xfree86-type1-1.0.4.tar.bz2,
xorriso.spec,https://mirrors.kernel.org/gnu/xorriso/%{name}-%{version}.tar.gz,https://mirrors.kernel.org/gnu/xorriso/xorriso-1.5.4.tar.gz,200,1.5.6,https://mirrors.kernel.org/gnu/xorriso/xorriso-1.5.6.tar.gz,200,xorriso,%{name},xorriso-1.5.6.tar.gz
xtrans.spec,https://ftp.x.org/pub/individual/lib/xtrans-1.4.0.tar.bz2,https://ftp.x.org/pub/individual/lib/xtrans-1.4.0.tar.bz2,200,Warning: Manufacturer may changed version packaging format.,https://ftp.x.org/pub/individual/lib/xtrans-1_5_0.tar.bz2,404,xtrans,xtrans,
xxhash.spec,https://github.com/Cyan4973/xxHash/archive/v%{version}/%{name}-%{version}.tar.gz,https://github.com/Cyan4973/xxHash/archive/v0.8.1/xxhash-0.8.1.tar.gz,200,0.8.2,https://github.com/Cyan4973/xxHash/archive/v0.8.2/xxhash-0.8.2.tar.gz,200,xxhash,%{name},xxhash-0.8.2.tar.gz
xz.spec,http://tukaani.org/xz/%{name}-%{version}.tar.xz,http://tukaani.org/xz/xz-5.4.0.tar.xz,200,5.4.5,http://tukaani.org/xz/xz-5.4.5.tar.xz,200,xz,%{name},xz-5.4.5.tar.xz
yajl.spec,https://github.com/lloyd/yajl/archive/refs/tags/%{name}-%{version}.tar.gz,https://github.com/lloyd/yajl/archive/refs/tags/2.1.0.tar.gz,200,(same version),,,yajl,yajl,
yaml-cpp.spec,https://github.com/jbeder/yaml-cpp/archive/%{name}-%{version}.tar.gz,https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.7.0.tar.gz,200,Warning: Manufacturer may changed version packaging format.,https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0_8_0.tar.gz,404,yaml-cpp,%{name},
zchunk.spec,https://github.com/zchunk/zchunk/archive/%{name}-%{version}.tar.gz,https://github.com/zchunk/zchunk/archive/refs/tags/1.2.3.tar.gz,200,1.3.2,https://github.com/zchunk/zchunk/archive/refs/tags/1.3.2.tar.gz,200,zchunk,%{name}-%{version},zchunk-1.3.2.tar.gz
zeromq.spec,https://github.com/zeromq/libzmq/releases/download/v%{version}/%{name}-%{version}.tar.gz,https://github.com/zeromq/libzmq/releases/download/v4.3.4/zeromq-4.3.4.tar.gz,200,4.3.5,https://github.com/zeromq/libzmq/releases/download/v4.3.5/zeromq-4.3.5.tar.gz,200,zeromq,%{name},zeromq-4.3.5.tar.gz
zip.spec,http://downloads.sourceforge.net/infozip/zip30.tar.gz,http://downloads.sourceforge.net/infozip/zip30.tar.gz,200,(same version),,,zip,,
zlib.spec,http://www.zlib.net/%{name}-%{version}.tar.xz,https://github.com/madler/zlib/archive/refs/tags/v1.2.13.tar.xz,200,1.3,http://www.zlib.net/zlib-1.3.tar.xz,200,zlib,%{name},zlib-1.3.tar.xz
zookeeper.spec,%{name}-%{version}.tar.gz,,0,,,,zookeeper,%{name},
zsh.spec,http://www.zsh.org/pub/%{name}-%{version}.tar.xz,https://github.com/zsh-users/zsh/archive/refs/tags/zsh-5.9.tar.gz,200,(same version),,,zsh,%{name},
zstd.spec,https://github.com/facebook/zstd/archive/%{name}-%{version}.tar.gz,https://github.com/facebook/zstd/archive/refs/tags/v1.5.5.tar.gz,200,(same version),,,zstd,%{name}-%{version},