-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgnome-dependencies-check
2205 lines (2205 loc) · 104 KB
/
gnome-dependencies-check
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Searching for: itstool
Searching for: librsvg
librsvg in accerciser/Makefile: REQUIRED_PACKAGES += image/library/librsvg needs librsvg
Searching for: at-spi2-core
at-spi2-core in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/at-spi2-core needs at-spi2-core
Searching for: atk
atk in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: gdk-pixbuf
gdk-pixbuf in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libwnck3
libwnck3 in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/libwnck3 needs libwnck3
Searching for: pango
pango in accerciser/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: libxml2
Searching for: pyatspi2-311
Searching for: pycairo-311
Searching for: pygobject-3-311
Searching for: python-311
Searching for: gnu-gettext
Searching for: xml-parser
Searching for: gtk-doc
gtk-doc in at-spi2-atk/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: at-spi2-core
at-spi2-core in at-spi2-atk/Makefile: REQUIRED_PACKAGES += library/desktop/at-spi2-core needs at-spi2-core
Searching for: atk
atk in at-spi2-atk/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: glib2
glib2 in at-spi2-atk/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: libxslt
Searching for: xml-parser
Searching for: libdbus
Searching for: libx11
Searching for: libxext
Searching for: libxrender
Searching for: libxtst
Searching for: xorg
Searching for: gtk-doc
gtk-doc in at-spi2-core/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in at-spi2-core/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: gobject-introspection
gobject-introspection in at-spi2-core/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in at-spi2-core/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: libxslt
Searching for: xml-parser
Searching for: libdbus
Searching for: libx11
Searching for: libxext
Searching for: libxi
Searching for: libxrender
Searching for: libxtst
Searching for: xorg
Searching for: gtk-doc
gtk-doc in atk/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gobject-introspection
gobject-introspection in atk/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in atk/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: doxygen
Searching for: graphviz
Searching for: glibmm
glibmm in atkmm/Makefile: REQUIRED_PACKAGES += library/c++/glibmm needs glibmm
Searching for: sigcpp
sigcpp in atkmm/Makefile: REQUIRED_PACKAGES += library/c++/sigcpp needs sigcpp
Searching for: atk
atk in atkmm/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: glib2
glib2 in atkmm/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxslt
Searching for: gcc-c++-runtime
Searching for: gcc-c-runtime
Searching for: gnome-shell
gnome-shell in background-logo-extension/Makefile: REQUIRED_PACKAGES += gnome/gnome-shell needs gnome-shell
Searching for: clutter
clutter in background-logo-extension/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: gdk-pixbuf
gdk-pixbuf in background-logo-extension/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in background-logo-extension/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in background-logo-extension/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: gnome-desktop
gnome-desktop in background-logo-extension/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: vala
vala in baobab/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in baobab/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in baobab/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gtk3
gtk3 in baobab/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libhandy
libhandy in baobab/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: pango
pango in baobab/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in baobab/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: math
Searching for: gtk-doc
gtk-doc in clutter-gst/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: clutter
clutter in clutter-gst/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: gobject-introspection
gobject-introspection in clutter-gst/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gstreamer-1
Searching for: gst-plugins-base
Searching for: glib2
glib2 in clutter-gst/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: cogl
cogl in clutter-gst/Makefile: REQUIRED_PACKAGES += library/graphics/cogl needs cogl
Searching for: libx11
Searching for: gtk-doc
gtk-doc in clutter-gst3/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: clutter
clutter in clutter-gst3/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: gdk-pixbuf
gdk-pixbuf in clutter-gst3/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in clutter-gst3/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gstreamer-1
Searching for: gst-plugins-base
Searching for: glib2
glib2 in clutter-gst3/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: cogl
cogl in clutter-gst3/Makefile: REQUIRED_PACKAGES += library/graphics/cogl needs cogl
Searching for: math
Searching for: libx11
Searching for: gtk-doc
gtk-doc in clutter-gtk/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: cairo
Searching for: clutter
clutter in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: gdk-pixbuf
gdk-pixbuf in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: glib2
glib2 in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: cogl
cogl in clutter-gtk/Makefile: REQUIRED_PACKAGES += library/graphics/cogl needs cogl
Searching for: math
Searching for: gtk-doc
gtk-doc in clutter/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: atk
atk in clutter/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in clutter/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in clutter/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in clutter/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: pango
pango in clutter/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in clutter/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: cogl
cogl in clutter/Makefile: REQUIRED_PACKAGES += library/graphics/cogl needs cogl
Searching for: json-glib
json-glib in clutter/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: fontconfig
Searching for: gcc-c-runtime
Searching for: math
Searching for: libx11
Searching for: libxcomposite
Searching for: libxdamage
Searching for: libxi
Searching for: gtk-doc
gtk-doc in cogl/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in cogl/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in cogl/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gstreamer-1
Searching for: gst-plugins-base
Searching for: pango
pango in cogl/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in cogl/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: ogl-select
Searching for: gcc-c-runtime
Searching for: math
Searching for: libxdamage
Searching for: libxext
Searching for: libxfixes
Searching for: libxrandr
Searching for: libx11
Searching for: vala
vala in dconf-editor/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: pango
pango in dconf-editor/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: gtk3
gtk3 in dconf-editor/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libhandy
libhandy in dconf-editor/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: glib2
glib2 in dconf-editor/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: dconf
dconf in dconf-editor/Makefile: REQUIRED_PACKAGES += library/gnome/dconf needs dconf
Searching for: libxml2
Searching for: gtk-doc
gtk-doc in dconf/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in dconf/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: glib2
glib2 in dconf/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libdbus
Searching for: gtk3
gtk3 in devhelp/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: pango
pango in devhelp/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: webkitgtk4
Searching for: glib2
glib2 in devhelp/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: zlib
Searching for: math
Searching for: libexif
Searching for: libjpeg
Searching for: librsvg
librsvg in eog-plugins/Makefile: REQUIRED_PACKAGES += image/library/librsvg needs librsvg
Searching for: eog
eog in eog-plugins/Makefile: REQUIRED_PACKAGES += image/viewer/eog needs eog
Searching for: atk
atk in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: clutter
clutter in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: clutter-gtk
clutter-gtk in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/clutter/clutter-gtk needs clutter-gtk
Searching for: gdk-pixbuf
gdk-pixbuf in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libchamplain
libchamplain in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/libchamplain needs libchamplain
Searching for: libgdata
libgdata in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/libgdata needs libgdata
Searching for: exempi
Searching for: glib2
glib2 in eog-plugins/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in eog-plugins/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: libpeas
libpeas in eog-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/libpeas needs libpeas
Searching for: lcms2
Searching for: zlib
Searching for: math
Searching for: libx11
Searching for: shared-mime-info
Searching for: libexif
Searching for: libjpeg
Searching for: librsvg
librsvg in eog/Makefile: REQUIRED_PACKAGES += image/library/librsvg needs librsvg
Searching for: eog-plugins
eog-plugins in eog/Makefile: REQUIRED_PACKAGES += image/viewer/eog/eog-plugins needs eog-plugins
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in eog/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: atk
atk in eog/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in eog/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in eog/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in eog/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: exempi
Searching for: glib2
glib2 in eog/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in eog/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: libpeas
libpeas in eog/Makefile: REQUIRED_PACKAGES += library/desktop/libpeas needs libpeas
Searching for: lcms2
Searching for: zlib
Searching for: math
Searching for: libx11
Searching for: poppler-viewer
Searching for: gtk-doc
gtk-doc in evince/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: nautilus
nautilus in evince/Makefile: REQUIRED_PACKAGES += gnome/file-manager/nautilus needs nautilus
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in evince/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: libtiff
Searching for: atk
atk in evince/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in evince/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gstreamer-1
Searching for: gst-plugins-base
Searching for: gtk3
gtk3 in evince/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libgxps
libgxps in evince/Makefile: REQUIRED_PACKAGES += library/desktop/libgxps needs libgxps
Searching for: libhandy
libhandy in evince/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: pango
pango in evince/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in evince/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in evince/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: libsecret
libsecret in evince/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: libarchive
Searching for: libspectre
Searching for: libxml2
Searching for: zlib
Searching for: poppler
Searching for: libc
libc in evince/Makefile: REQUIRED_PACKAGES += system/library/libc needs libc
Searching for: math
Searching for: berkeleydb-5
Searching for: sqlite-3
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in evolution-data-server/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: gtk3
gtk3 in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: gtk4
gtk4 in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/desktop/gtk4 needs gtk4
Searching for: libgweather
libgweather in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: pango
pango in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: libcanberra
Searching for: glib2
glib2 in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-online-accounts
gnome-online-accounts in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-online-accounts needs gnome-online-accounts
Searching for: libsecret
libsecret in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: icu
Searching for: json-glib
json-glib in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: libical
Searching for: libsoup-3
libsoup-3 in evolution-data-server/Makefile: REQUIRED_PACKAGES += library/libsoup-3 needs libsoup-3
Searching for: libxml2
Searching for: nspr
Searching for: nss
Searching for: zlib
Searching for: perl-536
Searching for: kerberos-5
Searching for: gcc-c++-runtime
Searching for: gcc-c-runtime
Searching for: math
Searching for: openldap
Searching for: nautilus
nautilus in file-roller/Makefile: REQUIRED_PACKAGES += gnome/file-manager/nautilus needs nautilus
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in file-roller/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gtk3
gtk3 in file-roller/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libnotify
libnotify in file-roller/Makefile: REQUIRED_PACKAGES += library/desktop/libnotify needs libnotify
Searching for: pango
pango in file-roller/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in file-roller/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: json-glib
json-glib in file-roller/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: libarchive
Searching for: math
Searching for: gtk-doc
gtk-doc in folks/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in folks/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: evolution-data-server
evolution-data-server in folks/Makefile: REQUIRED_PACKAGES += library/desktop/evolution-data-server needs evolution-data-server
Searching for: gobject-introspection
gobject-introspection in folks/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: libgee
libgee in folks/Makefile: REQUIRED_PACKAGES += library/desktop/libgee needs libgee
Searching for: tracker
tracker in folks/Makefile: REQUIRED_PACKAGES += library/desktop/search/tracker needs tracker
Searching for: glib2
glib2 in folks/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: ncurses
Searching for: readline
Searching for: telepathy-glib
Searching for: library
Searching for: libc
libc in fribidi/Makefile: REQUIRED_PACKAGES += system/library/libc needs libc
Searching for: gtk4
gtk4 in gcr-4/Makefile: REQUIRED_PACKAGES += library/desktop/gtk4 needs gtk4
Searching for: p11-kit
Searching for: pango
pango in gcr-4/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gcr-4/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libsecret
libsecret in gcr-4/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: libgcrypt
Searching for: gnupg
Searching for: doxygen
Searching for: gtk-doc
gtk-doc in gcr/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in gcr/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gcr/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gcr/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in gcr/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: p11-kit
Searching for: pango
pango in gcr/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gcr/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libgpg-error
Searching for: libgcrypt
Searching for: gtk-doc
gtk-doc in gdk-pixbuf/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: libjpeg
Searching for: libpng16
Searching for: libtiff
Searching for: gobject-introspection
gobject-introspection in gdk-pixbuf/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in gdk-pixbuf/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: core-os
Searching for: math
Searching for: libx11
Searching for: iso-codes
Searching for: itstool
Searching for: gnu-coreutils
Searching for: orca
orca in gdm/Makefile: REQUIRED_PACKAGES += gnome/accessibility/orca needs orca
Searching for: gnome-session
gnome-session in gdm/Makefile: REQUIRED_PACKAGES += gnome/gnome-session needs gnome-session
Searching for: gnome-shell
gnome-shell in gdm/Makefile: REQUIRED_PACKAGES += gnome/gnome-shell needs gnome-shell
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gdm/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: zenity
zenity in gdm/Makefile: REQUIRED_PACKAGES += gnome/zenity needs zenity
Searching for: gdk-pixbuf
gdk-pixbuf in gdm/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gtk3
gtk3 in gdm/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libcanberra
Searching for: glib2
glib2 in gdm/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: dconf
dconf in gdm/Makefile: REQUIRED_PACKAGES += library/gnome/dconf needs dconf
Searching for: yelp-tools
yelp-tools in gdm/Makefile: REQUIRED_PACKAGES += library/gnome/yelp-tools needs yelp-tools
Searching for: consolekit
Searching for: core-os
Searching for: audio
Searching for: accountsservice
Searching for: dbus
Searching for: devinfo
Searching for: fontconfig
Searching for: pam-core
Searching for: xterm
Searching for: xkb-utilities
Searching for: libx11
Searching for: libxau
Searching for: libxcb
Searching for: libxdmcp
Searching for: libxft
Searching for: libxi
Searching for: libxinerama
Searching for: xephyr
Searching for: xserver-common
Searching for: xinit
Searching for: x11-server-utilities
Searching for: check
Searching for: libxml2
Searching for: gedit
gedit in gedit-plugins/Makefile: REQUIRED_PACKAGES += editor/gedit needs gedit
Searching for: gtk3
gtk3 in gedit-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: gtksourceview
gtksourceview in gedit-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/gtksourceview needs gtksourceview
Searching for: libpeas
libpeas in gedit-plugins/Makefile: REQUIRED_PACKAGES += library/desktop/libpeas needs libpeas
Searching for: glib2
glib2 in gedit-plugins/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gedit/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: atk
atk in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: pango
pango in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: gdk-pixbuf
gdk-pixbuf in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtksourceview
gtksourceview in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/gtksourceview needs gtksourceview
Searching for: gtk3
gtk3 in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: glib2
glib2 in gedit/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gedit/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: libpeas
libpeas in gedit/Makefile: REQUIRED_PACKAGES += library/desktop/libpeas needs libpeas
Searching for: libsoup
libsoup in gedit/Makefile: REQUIRED_PACKAGES += library/libsoup needs libsoup
Searching for: libxml2
Searching for: enchant
Searching for: gcc-c-runtime
Searching for: math
Searching for: libx11
Searching for: gtk-doc
gtk-doc in geocode-glib/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gobject-introspection
gobject-introspection in geocode-glib/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: json-glib
json-glib in geocode-glib/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: libsoup-3
libsoup-3 in geocode-glib/Makefile: REQUIRED_PACKAGES += library/libsoup-3 needs libsoup-3
Searching for: glib2
glib2 in geocode-glib/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: math
Searching for: cairo
Searching for: gobject-introspection
gobject-introspection in gjs/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in gjs/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libffi
Searching for: libmozjs-115
Searching for: ncurses
Searching for: readline
Searching for: gcc-c++-runtime
Searching for: gcc-c-runtime
Searching for: math
Searching for: libx11
Searching for: gtk-doc
gtk-doc in glade/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in glade/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gjs
gjs in glade/Makefile: REQUIRED_PACKAGES += library/desktop/gjs needs gjs
Searching for: gtk3
gtk3 in glade/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: pango
pango in glade/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: webkitgtk4
Searching for: glib2
glib2 in glade/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: python-311
Searching for: math
Searching for: gtk-doc
gtk-doc in glib-networking/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in glib-networking/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: glib2
glib2 in glib-networking/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnutls-3
Searching for: libproxy
Searching for: gnu-gettext
Searching for: docbook-dtds
Searching for: docbook-style-dsssl
Searching for: docbook-style-xsl
Searching for: sgml-common
Searching for: xml-common
Searching for: desktop-file-utils
Searching for: gtk-doc
gtk-doc in glib2/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gamin
Searching for: libffi
Searching for: pcre2
Searching for: zlib
Searching for: python-311
Searching for: core-os
Searching for: dbus
Searching for: gcc-c-runtime
Searching for: doxygen
Searching for: graphviz
Searching for: sigcpp
sigcpp in glibmm/Makefile: REQUIRED_PACKAGES += library/c++/sigcpp needs sigcpp
Searching for: glib2
glib2 in glibmm/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxslt
Searching for: gcc-c-runtime
Searching for: gcc-c++-runtime
Searching for: gtk-doc
gtk-doc in gmime-3/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in gmime-3/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: gobject-introspection
gobject-introspection in gmime-3/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in gmime-3/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libidn2
Searching for: gpgme
Searching for: zlib
Searching for: gtk-doc
gtk-doc in gmime/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in gmime/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: gobject-introspection
gobject-introspection in gmime/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in gmime/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gpgme
Searching for: zlib
Searching for: gtk-doc
gtk-doc in gnome-autoar/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: gtk3
gtk3 in gnome-autoar/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: glib2
glib2 in gnome-autoar/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libarchive
Searching for: xml-parser
Searching for: pygobject-3-39
Searching for: python-39
Searching for: gtk-doc
gtk-doc in gnome-calculator/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: vala
vala in gnome-calculator/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-calculator/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: atk
atk in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: gtk3
gtk3 in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: gtksourceview
gtksourceview in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/desktop/gtksourceview needs gtksourceview
Searching for: libhandy
libhandy in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: libgee
Searching for: pango
pango in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gmp
Searching for: libsoup
libsoup in gnome-calculator/Makefile: REQUIRED_PACKAGES += library/libsoup needs libsoup
Searching for: libxml2
Searching for: mpc
Searching for: mpfr
Searching for: math
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-calendar/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: evolution-data-server
evolution-data-server in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/evolution-data-server needs evolution-data-server
Searching for: geoclue
Searching for: gtk3
gtk3 in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libhandy
libhandy in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: libdazzle
libdazzle in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/libdazzle needs libdazzle
Searching for: libgweather
libgweather in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: pango
pango in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-online-accounts
gnome-online-accounts in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-online-accounts needs gnome-online-accounts
Searching for: libical
Searching for: libsoup-3
libsoup-3 in gnome-calendar/Makefile: REQUIRED_PACKAGES += library/libsoup-3 needs libsoup-3
Searching for: library
Searching for: libc
libc in gnome-calendar/Makefile: REQUIRED_PACKAGES += system/library/libc needs libc
Searching for: math
Searching for: vala
vala in gnome-clocks/Makefile: REQUIRED_PACKAGES += developer/vala needs vala
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-clocks/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: geoclue
Searching for: geocode-glib
geocode-glib in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/geocode-glib needs geocode-glib
Searching for: gsound
gsound in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/gsound needs gsound
Searching for: gtk3
gtk3 in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libgweather
libgweather in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: libhandy
libhandy in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: glib2
glib2 in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gnome-clocks/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: math
Searching for: automake-116
Searching for: gtk-doc
gtk-doc in gnome-common/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: intltool
Searching for: glib2
glib2 in gnome-common/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-common
gnome-common in gnome-common/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-common needs gnome-common
Searching for: gnu-gettext
Searching for: gnome-settings-daemon
gnome-settings-daemon in gnome-control-center/Makefile: REQUIRED_PACKAGES += gnome/gnome-settings-daemon needs gnome-settings-daemon
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-control-center/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: pulseaudio
Searching for: atk
atk in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: clutter
clutter in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: clutter-gtk
clutter-gtk in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/clutter/clutter-gtk needs clutter-gtk
Searching for: colord-gtk
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: grilo
grilo in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/grilo needs grilo
Searching for: gsound
gsound in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/gsound needs gsound
Searching for: gtk3
gtk3 in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libhandy
libhandy in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: libgweather
libgweather in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: pango
pango in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: libcanberra
Searching for: glib2
glib2 in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: gnome-online-accounts
gnome-online-accounts in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-online-accounts needs gnome-online-accounts
Searching for: libsecret
libsecret in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: libgtop
libgtop in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/libgtop needs libgtop
Searching for: libsoup
libsoup in gnome-control-center/Makefile: REQUIRED_PACKAGES += library/libsoup needs libsoup
Searching for: libxml2
Searching for: colord
Searching for: ogl-select
Searching for: ibus
Searching for: accountsservice
Searching for: fontconfig
Searching for: gcc-c-runtime
Searching for: libv12n
Searching for: math
Searching for: polkit
Searching for: upower
Searching for: libepoxy
Searching for: libx11
Searching for: libxi
Searching for: mesa
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-desktop/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-desktop/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gnome-desktop/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in gnome-desktop/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: gtk4
gtk4 in gnome-desktop/Makefile: REQUIRED_PACKAGES += library/desktop/gtk4 needs gtk4
Searching for: glib2
glib2 in gnome-desktop/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: math
Searching for: libxkbcommon
Searching for: itstool
Searching for: glib2
glib2 in gnome-devel-docs/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gtk3
gtk3 in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: harfbuzz
Searching for: libhandy
libhandy in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: pango
pango in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gnome-font-viewer/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: fontconfig
Searching for: freetype-2
Searching for: math
Searching for: itstool
Searching for: glib2
glib2 in gnome-getting-started-docs/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libxml2
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: geoclue
Searching for: gtk3
gtk3 in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libgweather
libgweather in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: librest
Searching for: pango
pango in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: webkitgtk4
Searching for: glib2
glib2 in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: gnome-online-accounts
gnome-online-accounts in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-online-accounts needs gnome-online-accounts
Searching for: libsecret
libsecret in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: json-glib
json-glib in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: kerberos-5
Searching for: gdm
gdm in gnome-initial-setup/Makefile: REQUIRED_PACKAGES += system/display-manager/gdm needs gdm
Searching for: ibus
Searching for: accountsservice
Searching for: fontconfig
Searching for: math
Searching for: polkit
Searching for: glib2
glib2 in gnome-keyring/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gcr
gcr in gnome-keyring/Makefile: REQUIRED_PACKAGES += library/gnome/gcr needs gcr
Searching for: ssh
Searching for: pam-core
Searching for: libdbus
Searching for: libgcrypt
Searching for: desktop-file-utils
Searching for: gobject-introspection
gobject-introspection in gnome-menus/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: glib2
glib2 in gnome-menus/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gtk-doc
gtk-doc in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc needs gtk-doc
Searching for: atk
atk in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: gcr
gcr in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/gnome/gcr needs gcr
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: harfbuzz
Searching for: librest
Searching for: p11-kit
Searching for: pango
pango in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: webkitgtk4
Searching for: glib2
glib2 in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: libsecret
libsecret in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/gnome/libsecret needs libsecret
Searching for: json-glib
json-glib in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/json-glib needs json-glib
Searching for: libsoup
libsoup in gnome-online-accounts/Makefile: REQUIRED_PACKAGES += library/libsoup needs libsoup
Searching for: libxml2
Searching for: telepathy-glib
Searching for: kerberos-5
Searching for: gcc-c-runtime
Searching for: cairo
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-screenshot/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gtk3
gtk3 in gnome-screenshot/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libhandy
libhandy in gnome-screenshot/Makefile: REQUIRED_PACKAGES += library/desktop/libhandy needs libhandy
Searching for: libcanberra
Searching for: glib2
glib2 in gnome-screenshot/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: math
Searching for: libx11
Searching for: libxext
Searching for: desktop-file-utils
Searching for: gtk3
gtk3 in gnome-session/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: glib2
glib2 in gnome-session/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-desktop
gnome-desktop in gnome-session/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: json-glib
json-glib in gnome-session/Makefile: REQUIRED_PACKAGES += library/desktop/json-glib needs json-glib
Searching for: dbus-x11
Searching for: libepoxy
Searching for: libice
Searching for: libsm
Searching for: libx11
Searching for: libxcomposite
Searching for: mesa
Searching for: desktop-file-utils
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: pulseaudio
Searching for: geoclue
Searching for: geocode-glib
geocode-glib in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/desktop/geocode-glib needs geocode-glib
Searching for: gtk3
gtk3 in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: libgweather
libgweather in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/desktop/libgweather needs libgweather
Searching for: libnotify
libnotify in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/desktop/libnotify needs libnotify
Searching for: p11-kit
Searching for: libcanberra
Searching for: glib2
glib2 in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gcr-4
gcr-4 in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/gnome/gcr-4 needs gcr-4
Searching for: gnome-desktop
gnome-desktop in gnome-settings-daemon/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-desktop needs gnome-desktop
Searching for: cups-libs
Searching for: colord
Searching for: fontconfig
Searching for: math
Searching for: polkit
Searching for: upower
Searching for: libx11
Searching for: libxext
Searching for: libxfixes
Searching for: libxi
Searching for: nautilus
nautilus in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += gnome/file-manager/nautilus needs nautilus
Searching for: gnome-shell
gnome-shell in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += gnome/gnome-shell needs gnome-shell
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: mutter
mutter in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += gnome/window-manager/mutter needs mutter
Searching for: atk
atk in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: clutter
clutter in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gobject-introspection
gobject-introspection in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection needs gobject-introspection
Searching for: gtk3
gtk3 in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/gtk3 needs gtk3
Searching for: pango
pango in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/desktop/pango needs pango
Searching for: glib2
glib2 in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/glib2 needs glib2
Searching for: gnome-menus
gnome-menus in gnome-shell-extensions/Makefile: REQUIRED_PACKAGES += library/gnome/gnome-menus needs gnome-menus
Searching for: gnome-clocks
gnome-clocks in gnome-shell/Makefile: REQUIRED_PACKAGES += gnome/gnome-clocks needs gnome-clocks
Searching for: gnome-settings-daemon
gnome-settings-daemon in gnome-shell/Makefile: REQUIRED_PACKAGES += gnome/gnome-settings-daemon needs gnome-settings-daemon
Searching for: gsettings-desktop-schemas
gsettings-desktop-schemas in gnome-shell/Makefile: REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas needs gsettings-desktop-schemas
Searching for: mutter
mutter in gnome-shell/Makefile: REQUIRED_PACKAGES += gnome/window-manager/mutter needs mutter
Searching for: pulseaudio
Searching for: at-spi2-atk
at-spi2-atk in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/at-spi2-atk needs at-spi2-atk
Searching for: at-spi2-core
at-spi2-core in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/at-spi2-core needs at-spi2-core
Searching for: atk
atk in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/atk needs atk
Searching for: cairo
Searching for: clutter
clutter in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/clutter needs clutter
Searching for: evolution-data-server
evolution-data-server in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/evolution-data-server needs evolution-data-server
Searching for: gdk-pixbuf
gdk-pixbuf in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/gdk-pixbuf needs gdk-pixbuf
Searching for: gjs
gjs in gnome-shell/Makefile: REQUIRED_PACKAGES += library/desktop/gjs needs gjs