summaryrefslogtreecommitdiff
path: root/strata/gnome.morph
blob: 00177c1277a796aa56b31ebc0feb2afd16dc5c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
name: gnome
kind: stratum
description: GNOME stratum
build-depends:
- morph: strata/icu-common.morph
- morph: strata/input-common.morph
- morph: strata/vala-common.morph
- morph: strata/gtk2.morph
- morph: strata/gtk3.morph
- morph: strata/audio-bluetooth.morph
- morph: strata/libsoup-common.morph
- morph: strata/NetworkManager-common.morph
- morph: strata/multimedia-gstreamer.morph
- morph: strata/network-security.morph
- morph: strata/privileges-management.morph
- morph: strata/python3-gobject.morph
- morph: strata/python2-core.morph
- morph: strata/wayland-generic.morph
- morph: strata/x-generic.morph
- morph: strata/ruby.morph
- morph: strata/samba.morph
- morph: strata/cups.morph
- morph: strata/docutils.morph
chunks:
- name: dconf
  morph: strata/gnome/dconf.morph
  repo: upstream:dconf
  ref: 7c0beccf286a1dbd396fda7d40b438598a6ce7f4
  unpetrify-ref: master
- name: cogl
  morph: strata/gnome/cogl.morph
  repo: upstream:gnome/cogl
  ref: 85e0b084592e6beef2987b02e34a3909f35708e0
  unpetrify-ref: cogl-1.22
- name: json-glib
  repo: upstream:json-glib
  ref: bfbc0b48e9256473491755766c079f73bee80724
  unpetrify-ref: master
  build-system: autotools
- name: clutter
  morph: strata/gnome/clutter.morph
  repo: upstream:gnome/clutter
  ref: 8e52f8c61ef2192eaf7f2208a922d3530df47d9b
  unpetrify-ref: master
  build-depends:
  - cogl
  - json-glib
- name: clutter-gtk
  repo: upstream:gnome/clutter-gtk
  ref: 56b09d02f71aa38f9496226641850e6ecf14ef70
  unpetrify-ref: 1.6.6
  build-system: autotools
  build-depends:
  - clutter
- name: libchamplain
  morph: strata/gnome/libchamplain.morph
  repo: upstream:gnome/libchamplain
  ref: c873d9d8116b8e14c1bfa939439d763926a77446
  unpetrify-ref: LIBCHAMPLAIN_0_12_12
  build-depends:
  - clutter
  - clutter-gtk
- name: gsettings-desktop-schemas
  repo: upstream:gnome/gsettings-desktop-schemas
  ref: db40812cd79f64c98432efd1b632c5633a27f77e
  unpetrify-ref: master
  build-system: autotools
- name: itstool
  repo: upstream:itstool
  ref: 359be5c350fc3d869807f663cee2b028adf1f5d7
  unpetrify-ref: master
  build-system: autotools
- name: yelp-xsl
  repo: upstream:yelp-xsl
  ref: 2dcf168dde754d18152b008473269a803d6e650b
  unpetrify-ref: master
  build-depends:
  - itstool
  build-system: autotools
- name: yelp-tools
  repo: upstream:yelp-tools
  ref: 6df6bf24e385bbc1ac0b800be8a6e878f18a775c
  unpetrify-ref: master
  build-depends:
  - itstool
  - yelp-xsl
  build-system: autotools
- name: iso-codes
  repo: upstream:iso-codes
  ref: 18ac112b4b84c8f03743565fde3512a637820761
  unpetrify-ref: master
  build-system: autotools
- name: gnome-desktop
  repo: upstream:gnome/gnome-desktop
  ref: 09d331adeb23aea7ec058dfb39c5224ebe8ae8f6
  unpetrify-ref: 3.18.2
  build-depends:
  - gsettings-desktop-schemas
  - iso-codes
  - yelp-tools
  build-system: autotools
- name: libnotify
  repo: upstream:gnome/libnotify
  ref: 2f2c5649ef210b1dffeb46cddf062d20e1518ccf
  unpetrify-ref: master
  build-system: autotools
- name: lcms2
  repo: upstream:lcms2
  ref: ff42eeaf932b64af997681f0eed6be3b67ebeb18
  unpetrify-ref: baserock/gnome
  build-system: autotools
- name: gconf
  morph: strata/gnome/gconf.morph
  repo: upstream:gconf
  ref: 4ef012c2a62d9abd759adb3aeb9d3b9cee17f721
  unpetrify-ref: master
- name: ibus
  morph: strata/gnome/ibus.morph
  repo: upstream:ibus
  ref: 1d678673e18e132ed53df32502b779b0a56314d5
  unpetrify-ref: master
  build-depends:
  - dconf
  - gconf
  - iso-codes
  - libnotify
- name: libhangul
  morph: strata/gnome/libhangul.morph
  repo: upstream:libhangul
  ref: 78e9d8926262db423b4cf9181e1c2cb06a120a9b
  unpetrify-ref: baserock/libhangul-0.1.0-19-g78e9d89
- name: ibus-hangul
  morph: strata/gnome/ibus-hangul.morph
  repo: upstream:ibus-hangul
  ref: 44f41ae5178372a7ff0540a4ce7a4944335525df
  unpetrify-ref: baserock/1.5.0-13-g44f41ae
  build-depends:
  - ibus
  - libhangul
- name: berkeleydb
  morph: strata/gnome/berkeleydb.morph
  repo: upstream:berkeleydb
  ref: 780b92ada9afcf1d58085a83a0b9e6bc982203d1
  unpetrify-ref: db-6.1.23
- name: libpinyin
  repo: upstream:libpinyin
  ref: 2e0c23b3ab6c247dd6a683c716e784a371646af4
  unpetrify-ref: baserock/1.2.91
  build-system: autotools
  build-depends:
  - berkeleydb
- name: ibus-libpinyin
  morph: strata/gnome/ibus-libpinyin.morph
  repo: upstream:ibus-libpinyin
  ref: 4bb5fc19c0829053acd29619de59a85a73e03676
  unpetrify-ref: baserock/1.7.2-7-g4bb5fc1
  build-depends:
  - ibus
  - libpinyin
- name: anthy
  repo: upstream:anthy
  ref: a7a06a7ccfe0af1e134357678b8fa6cf87dff3b0
  unpetrify-ref: anthy-9100h
  build-system: autotools
- name: ibus-anthy
  morph: strata/gnome/ibus-anthy.morph
  repo: upstream:ibus-anthy
  ref: 9ba0a2a1e595fbf6e39c50a15814bb6f9e337769
  unpetrify-ref: baserock/1.5.7-6-g9ba0a2a
  build-depends:
  - ibus
  - anthy
- name: libcanberra
  repo: upstream:libcanberra
  ref: c0620e432650e81062c1967cc669829dbd29b310
  unpetrify-ref: master
  build-system: autotools
- name: upower
  morph: strata/gnome/upower.morph
  repo: upstream:upower
  ref: 0825c162d3dc909966b10fecabbc2c1da364c1a6
  unpetrify-ref: master
- name: gusb
  repo: upstream:gusb
  ref: 0c5eb813279c67607e17dfd99087358d34c6c8f5
  unpetrify-ref: master
  build-system: autotools
- name: libatasmart
  morph: strata/gnome/libatasmart.morph
  repo: upstream:libatasmart
  ref: de6258940960443038b4c1651dfda3620075e870
  unpetrify-ref: master
- name: udisks
  morph: strata/gnome/udisks.morph
  repo: upstream:udisks
  ref: 410cab8f3d749ad2660cda3ba38b6aece42bf10f
  unpetrify-ref: master
  build-depends:
  - libatasmart
- name: colord
  morph: strata/gnome/colord.morph
  repo: upstream:colord
  ref: e68f251b753297fcd1fc2bb7356588945bd3e69b
  unpetrify-ref: baserock/gnome
  build-depends:
  - gusb
  - lcms2
- name: colord-gtk
  repo: upstream:colord-gtk
  ref: eadca143872288e1300303a771efdaab196900e1
  unpetrify-ref: COLORD_GTK_0_1_26
  build-system: autotools
  build-depends:
  - colord
- name: geocode-glib
  repo: upstream:gnome/geocode-glib
  ref: a3e183e40053b4bd0fd0b25a070f60597270397a
  unpetrify-ref: master
  build-depends:
  - json-glib
  build-system: autotools
- name: geoclue
  morph: strata/gnome/geoclue.morph
  repo: upstream:geoclue
  ref: ae8f7ab2f1e90f61931c652f2f65996c30c79e87
  unpetrify-ref: 2.4.0
  build-depends:
  - json-glib
- name: libgweather
  repo: upstream:gnome/libgweather
  ref: 5b8aed611f24d03434eed35e438cea213b894b7c
  unpetrify-ref: master
  build-depends:
  - geocode-glib
  build-system: autotools
- name: gnome-settings-daemon
  morph: strata/gnome/gnome-settings-daemon.morph
  repo: upstream:gnome-settings-daemon
  ref: 8d4904fb35e8aa8b9b0b135b6026464c8e40d254
  unpetrify-ref: baserock/3.18.0/disable_wacom
  build-depends:
  - colord
  - geoclue
  - geocode-glib
  - gnome-desktop
  - gsettings-desktop-schemas
  - ibus
  - libcanberra
  - libgweather
  - libnotify
  - lcms2
  - upower
- name: zenity
  repo: upstream:zenity
  ref: d7135db2bdfdca812c0165f90e4611af9c7c6a50
  unpetrify-ref: master
  build-depends:
  - yelp-tools
  build-system: autotools
- name: mozjs24
  morph: strata/gnome/mozjs24.morph
  repo: upstream:mozilla/mozjs24
  ref: 334066c83de6c96320b63663a35d53159158c9b7
  unpetrify-ref: baserock/gnome
- name: gjs
  repo: upstream:gjs
  ref: 5d480f519e2b7e95cf1fad2f9f1a8e798fd5fe49
  unpetrify-ref: master
  build-depends:
  - mozjs24
  build-system: autotools
- name: telepathy-glib
  morph: strata/gnome/telepathy-glib.morph
  repo: upstream:telepathy-glib
  ref: d27684c488ceee4f2f54f549738adab0e2e8165d
  unpetrify-ref: master
- name: telepathy-logger
  morph: strata/gnome/telepathy-logger.morph
  repo: upstream:telepathy-logger
  ref: 711842911edb15977430c0b6c1803e947619efc3
  unpetrify-ref: master
  build-depends:
  - telepathy-glib
- name: telepathy-mission-control
  repo: upstream:telepathy-mission-control
  ref: 84dc7d0fd952a9ef3d200ac5557cdf2daccca145
  unpetrify-ref: telepathy-mission-control-5.16.3
  build-system: autotools
  build-depends:
  - telepathy-glib
- name: startup-notification
  repo: upstream:startup-notification
  ref: 07237ff25d6171e1b548118442ddba4259a53ba5
  unpetrify-ref: master
  build-system: autotools
- name: libtasn1
  repo: upstream:libtasn1
  ref: 7f3a9c2294cdebd9e63fe007150c181b980865ef
  unpetrify-ref: baserock/gnome
  build-system: autotools
- name: p11-kit
  morph: strata/gnome/p11-kit.morph
  repo: upstream:p11-kit
  ref: ec9e2450bafa1cda47525b38a28c8f981f43c1e1
  unpetrify-ref: 0.23.1
  build-depends:
  - libtasn1
- name: gcr
  repo: upstream:gnome/gcr
  ref: 289ba4859fd170285f51e6bbfe91f2aac3b9170d
  unpetrify-ref: 3.18.0
  build-depends:
  - p11-kit
  build-system: autotools
- name: libxkbcommon-x11
  repo: upstream:xorg-lib-libxkbcommon
  ref: c43c3c866eb9d52cd8f61e75cbef1c30d07f3a28
  unpetrify-ref: xkbcommon-0.5.0
  build-system: autotools
- name: mutter
  morph: strata/gnome/mutter.morph
  repo: upstream:mutter
  ref: b975676c5ddd9401d4acfc4d0b9317dd8956656b
  unpetrify-ref: baserock/3.18.0-25-gb975676
  build-depends:
  - clutter
  - cogl
  - gnome-desktop
  - gnome-settings-daemon
  - gsettings-desktop-schemas
  - libxkbcommon-x11
  - startup-notification
  - upower
  - zenity
- name: libxklavier
  repo: upstream:libxklavier
  ref: 65c132a65e90a42e898f07243ef544109ada53c9
  unpetrify-ref: master
  build-depends:
  - iso-codes
  build-system: autotools
- name: caribou
  morph: strata/gnome/caribou.morph
  repo: upstream:caribou
  ref: e1a7a2488cdf8d0d32f0de67d68a85e9a6ab5fd2
  unpetrify-ref: baserock/CARIBOU_0_4_19-1-ge1a7a24+python3
  build-depends:
  - clutter
  - libxklavier
- name: libsecret
  morph: strata/gnome/libsecret.morph
  repo: upstream:gnome/libsecret
  ref: 4d76cf7dd8e55d93bb58164a1fff38113ba97af5
  unpetrify-ref: master
- name: librest
  morph: strata/gnome/librest.morph
  repo: upstream:gnome/librest
  ref: 08f1fc35e3c77aecedacf08aa510e82c91ac7f2a
  unpetrify-ref: 0.7.93
- name: enchant
  repo: upstream:enchant
  ref: 6d8b6bb15f09a14c90fb900eb2ecf1172d7cf6cf
  unpetrify-ref: master
  build-system: autotools
- name: hyphen
  repo: upstream:hyphen
  ref: 7f28cf7edb54cc1bc4eaa09672e0bc043b1da70b
  unpetrify-ref: master
  build-system: autotools
- name: WebKitGtk1
  morph: strata/gnome/WebKitGtk1.morph
  repo: upstream:WebKitGtk-tarball
  ref: 41386e9cb918eed93b3f13648cbef387e371e451
  unpetrify-ref: webkitgtk-2.4.9
  build-depends:
  - enchant
  - geoclue
  - libsecret
- name: WebKitGtk
  morph: strata/gnome/WebKitGtk.morph
  repo: upstream:WebKitGtk-tarball
  ref: e15dd966d523731101f70ccf768bba12435a0208
  unpetrify-ref: webkitgtk-2.10.2
  build-depends:
  - enchant
  - geoclue
  - hyphen
  - libnotify
  - libsecret
- name: gnome-online-accounts
  morph: strata/gnome/gnome-online-accounts.morph
  repo: upstream:gnome/gnome-online-accounts
  ref: 167ada60a66a0ed851bb65335a46570cf071115a
  unpetrify-ref: baserock/3.18.1
  build-depends:
  - librest
  - telepathy-glib
  - WebKitGtk
- name: liboauth
  repo: upstream:liboauth
  ref: 9ff9d2902caf8a85c5019c11214d73e67053ba69
  unpetrify-ref: liboauth-0.9.7
  build-system: autotools
- name: libgdata
  morph: strata/gnome/libgdata.morph
  repo: upstream:libgdata
  ref: ed52192fcd3cde2c0d7f0ab0d9e300fcdbc373a8
  unpetrify-ref: baserock/LIBGDATA_0_17_3-16-ged52192
  build-depends:
  - gcr
  - gnome-online-accounts
  - liboauth
- name: krb5
  morph: strata/gnome/krb5.morph
  repo: upstream:krb5
  ref: db2acb6b06e469c6c12476bec68acc7964626523
  unpetrify-ref: master
- name: evolution-data-server
  morph: strata/gnome/evolution-data-server.morph
  repo: upstream:evolution-data-server
  ref: 658d6e37796984bf05e275413726ad3b71083ccf
  unpetrify-ref: EVOLUTION_DATA_SERVER_3_18_3
  build-depends:
  - gcr
  - gnome-online-accounts
  - krb5
  - libgdata
  - libgweather
  - libsecret
- name: raptor
  morph: strata/gnome/raptor.morph
  repo: upstream:raptor
  ref: 286452cd786098ce31a002f16e5ec2e0fbdc9041
  unpetrify-ref: raptor2_2_0_15
- name: isodate
  repo: upstream:python-packages/isodate
  ref: b99c0bd318991a8a8a9dc0c5273800b9801428f6
  unpetrify-ref: 0.5.4
  build-system: python-distutils
- name: rdflib
  repo: upstream:python-packages/rdflib
  ref: c2f9725f385a85fd280b4cf30239748b24f5cc06
  unpetrify-ref: 4.2.1
  build-system: python-distutils
  build-depends:
  - isodate
- name: zeitgeist
  morph: strata/gnome/zeitgeist.morph
  repo: upstream:zeitgeist
  ref: abc7939806346a563ded2b16456dc7e2fff54fcc
  unpetrify-ref: v0.9.16
  build-depends:
  - json-glib
  - raptor
  - rdflib
  - telepathy-glib
- name: folks
  morph: strata/gnome/folks.morph
  repo: upstream:gnome/folks
  ref: 27367f26cd66bb86b745c892db214aa9a136c818
  unpetrify-ref: 0.11.2
  build-depends:
  - evolution-data-server
  - telepathy-logger
  - tracker
  - zeitgeist
- name: libgfbgraph
  repo: upstream:gnome/libgfbgraph
  ref: 50eabf601310052216e25fa112e688204738f222
  unpetrify-ref: v_0_2_3
  build-system: autotools
  build-depends:
  - gnome-online-accounts
  - json-glib
  - librest
- name: network-manager-applet
  repo: upstream:gnome/network-manager-applet
  ref: bbcc673af29066cfc6f0e12f04c0dd3f9937fb3a
  unpetrify-ref: baserock/0.9.10-beta1-344-gbbcc673
  build-system: autotools
  build-depends:
  - iso-codes
  - libsecret
  - libnotify
- name: gnome-shell
  morph: strata/gnome/gnome-shell.morph
  repo: upstream:gnome/gnome-shell
  ref: 4da5b8dd1189e7e628605b2b23efe5db2d88f94b
  unpetrify-ref: baserock/3.18.0-71-g4da5b8d
  build-depends:
  - caribou
  - clutter
  - evolution-data-server
  - gcr
  - gjs
  - libcanberra
  - mutter
  - startup-notification
  - telepathy-glib
  - network-manager-applet
- name: gnome-session
  morph: strata/gnome/gnome-session.morph
  repo: upstream:gnome/gnome-session
  ref: 4ab09c39738adaaf16116b3bd82e47188b5483cd
  unpetrify-ref: 3.18.1.2
  build-depends:
  - gnome-desktop
  - json-glib
- name: d-feet
  morph: strata/gnome/d-feet.morph
  repo: upstream:gnome/d-feet
  ref: a526f5325f179482f915216f7781232899be5600
  unpetrify-ref: master
  build-depends:
  - yelp-tools
- name: gnome-keyring
  morph: strata/gnome/gnome-keyring.morph
  repo: upstream:gnome-keyring
  ref: eb16c037431da14d4f1c396357f82f2b35e76e23
  unpetrify-ref: baserock/3.18.3-5-geb16c03
  build-depends:
  - gcr
- name: gvfs
  morph: strata/gnome/gvfs.morph
  repo: upstream:gvfs
  ref: d037b5fd56cae878ed7bb5269a40e4bd046551d7
  unpetrify-ref: master
  build-depends:
  - gcr
  - udisks
- name: accountsservice
  morph: strata/gnome/accountsservice.morph
  repo: upstream:accountsservice
  ref: 36b424b4aad91aaf91eeb6b6285cf550b15fcfeb
  unpetrify-ref: master
- name: gdm
  morph: strata/gnome/gdm.morph
  repo: upstream:gdm
  ref: 494ec8cee5727c37118994d3864c44f36aa454fc
  unpetrify-ref: 3.18.0
  build-depends:
  - accountsservice
  - libcanberra
  - dconf
- name: hicolor-icon-theme
  morph: strata/gnome/hicolor-icon-theme.morph
  repo: upstream:hicolor-icon-theme
  ref: 5954bd6c123aa31c8f35b83d70b73e1f6dcf34b3
  unpetrify-ref: master
- name: gnome-themes-standard
  morph: strata/gnome/gnome-themes-standard.morph
  repo: upstream:gnome-themes-standard
  ref: 4058c3bced2173c8e6f2a22953327dcc2023e82d
  unpetrify-ref: master
  build-depends:
  - hicolor-icon-theme
- name: adwaita-icon-theme
  morph: strata/gnome/adwaita-icon-theme.morph
  repo: upstream:gnome/adwaita-icon-theme
  ref: 5e469ae6e664cb0808b6ce9fcfd7bd2ac6fc4216
  unpetrify-ref: gnome-3-18
- name: gnome-backgrounds
  repo: upstream:gnome/gnome-backgrounds
  ref: e68462edd35ae3edb4311df90dc4d1a3cdcb175f
  unpetrify-ref: baserock/3.18.0-2-ge68462e
  build-system: autotools
- name: nettle
  morph: strata/gnome/nettle.morph
  repo: upstream:nettle
  ref: 549e2853d6f3fa9cefb099970209c7f5bf5673b7
  unpetrify-ref: nettle_3.1.1_release_20150424
- name: gnutls
  morph: strata/gnome/gnutls.morph
  repo: upstream:gnutls
  ref: 21fecbde80ae824f85a10a0c23a327c49e4e5fb6
  unpetrify-ref: baserock/gnutls_3_4_6
  build-depends:
  - nettle
  - libtasn1
  - p11-kit
- name: glib-networking
  morph: strata/gnome/glib-networking.morph
  repo: upstream:gnome/glib-networking
  ref: 32ee55186d7df497e3d402a1940cddfabd9dbc21
  unpetrify-ref: 2.46.0
  build-depends:
  - gnutls
- name: cracklib
  morph: strata/gnome/cracklib.morph
  repo: upstream:cracklib
  ref: 1dd5ca2114c0dd478b17e68e38d2c9f7094552cc
  unpetrify-ref: cracklib-2.9.6
- name: libpwquality
  morph: strata/gnome/libpwquality.morph
  repo: upstream:libpwquality
  ref: 24937f6fdcc1673e064c9626407c89f58289957d
  unpetrify-ref: libpwquality-1.3.0
  build-depends:
  - cracklib
- name: glade
  morph: strata/gnome/glade.morph
  repo: upstream:gnome/glade
  ref: 4f81f15467ad45c3dddc7ee50ffaca9596d628ee
  unpetrify-ref: master
  build-depends:
  - yelp-tools
- name: vte
  morph: strata/gnome/vte.morph
  repo: upstream:gnome/vte
  ref: aa7120c2e359bb5d6d0b0ec6c1e0eecf0583be03
  unpetrify-ref: 0.43.0
  build-depends:
  - gnutls
  - glade
- name: tracker
  repo: upstream:gnome/tracker
  ref: ad31f26e3c45dbe3365ff4aaae39269d9210f4a9
  unpetrify-ref: 1.6.0
  build-system: autotools
- name: libexif
  repo: upstream:libexif-tarball
  ref: 0c6a5fa0d9719a40748d8726b4543f02f70518c1
  unpetrify-ref: libexif-0.6.21
  build-system: autotools
- name: nautilus
  morph: strata/gnome/nautilus.morph
  repo: upstream:nautilus
  ref: 2efab5ea404077bfb09f543ed2acc8e0940d21c9
  unpetrify-ref: baserock/3.18.1
  build-depends:
  - vte
  - gnome-desktop
  - gsettings-desktop-schemas
  - libexif
  - tracker
- name: desktop-file-utils
  morph: strata/gnome/desktop-file-utils.morph
  repo: upstream:desktop-file-utils
  ref: 4944725bddcf5821d53d7d648fc53347ce12cc03
  unpetrify-ref: 0.22
- name: gnome-terminal
  morph: strata/gnome/gnome-terminal.morph
  repo: upstream:gnome/gnome-terminal
  ref: d52e6beb2df7aedd0c98696ae3be4a36b4c8f0f0
  unpetrify-ref: 3.18.1
  build-depends:
  - desktop-file-utils
  - dconf
  - gconf
  - gsettings-desktop-schemas
  - nautilus
  - yelp-tools
- name: gmime
  morph: strata/gnome/gmime.morph
  repo: upstream:gnome/gmime
  ref: 496313fbe956b350c22fa705edbcfdde3d7c9e50
  unpetrify-ref: baserock/GMIME_2_6_20-24-g496313f
- name: totem-pl-parser
  repo: upstream:gnome/totem-pl-parser
  ref: 1be3144e9a6bf183a61c9596165d52bbe405b5cc
  unpetrify-ref: baserock/V_3_10_5-16-g1be3144
  build-system: autotools
  build-depends:
  - gmime
- name: libmediaart
  morph: strata/gnome/libmediaart.morph
  repo: upstream:gnome/libmediaart
  ref: 52eb6498c97ce0005186946bc9162d87597abc2c
  unpetrify-ref: baserock/1.9.0-8-g52eb649
- name: gssdp
  morph: strata/gnome/gssdp.morph
  repo: upstream:gnome/gssdp
  ref: a53a6ac85f1b70192bc75fbbd4601582d6095cfd
  unpetrify-ref: gssdp-0.14.12
- name: gupnp
  repo: upstream:gnome/gupnp
  ref: c42b9cdda466ae9fef91f6beb370f8dfdebc295c
  unpetrify-ref: gupnp-0.20.14
  build-system: autotools
  build-depends:
  - gssdp
- name: gupnp-av
  repo: upstream:gnome/gupnp-av
  ref: d277511ae1f456ba804f4c9beb5d36043f5a1659
  unpetrify-ref: gupnp-av-0.12.7
  build-system: autotools
  build-depends:
  - gupnp
- name: gupnp-igd
  repo: upstream:gnome/gupnp-igd
  ref: f679a8ad782eee72e2ff7a0a7598b4523ef03bb3
  unpetrify-ref: 0.2.4
  build-system: autotools
  build-depends:
  - gupnp
- name: gupnp-dlna
  repo: upstream:gnome/gupnp-dlna
  ref: 1aad765f223e3338d86bc975a2b4925fca43bf58
  unpetrify-ref: gupnp-dlna-0.10.3
  build-system: autotools
  build-depends:
  - gupnp
- name: rygel
  repo: upstream:rygel
  ref: 4a42aee4afda9509db1e3d259c5a2907407a7261
  unpetrify-ref: RYGEL_0_28_2
  build-system: autotools
  build-depends:
  - gssdp
  - gupnp
  - gupnp-av
  - gupnp-dlna
  - libmediaart
  - tracker
- name: libnice
  repo: upstream:libnice
  ref: 533ff6c5a03680f300709be4dc999f45659f3a1b
  unpetrify-ref: 0.1.13
  build-system: autotools
  build-depends:
  - gupnp-igd
- name: farstream
  repo: upstream:farstream
  ref: 9247c10816835dc76269baa7c4c8996ae1a2fac3
  unpetrify-ref: baserock/0.2.7
  build-system: autotools
  build-depends:
  - libnice
- name: telepathy-farstream
  repo: upstream:telepathy-farstream
  ref: 0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5
  unpetrify-ref: telepathy-farstream-0.6.2
  build-system: autotools
  build-depends:
  - farstream
  - telepathy-glib
- name: telepathy-gabble
  morph: strata/gnome/telepathy-gabble.morph
  repo: upstream:telepathy-gabble
  ref: 91d890ef3f269e92ea3a2a265597293e056e842c
  unpetrify-ref: baserock/telepathy-gabble-0.18.3
  build-depends:
  - libnice
  - telepathy-glib
- name: telepathy-salut
  morph: strata/gnome/telepathy-salut.morph
  repo: upstream:telepathy-salut
  ref: e554f3c595307f665e5c2dd464f1baf0120ab43d
  unpetrify-ref: baserock/telepathy-salut-0.8.1
  build-depends:
  - telepathy-glib
- name: telepathy-idle
  repo: upstream:telepathy-idle
  ref: 55e9841a4af51d7f014395475526b700abec4d0b
  unpetrify-ref: telepathy-idle-0.2.0
  build-system: autotools
  build-depends:
  - telepathy-glib
- name: libpurple
  morph: strata/gnome/libpurple.morph
  repo: upstream:pidgin
  ref: 9273b95bd66893a362cbf6f69bb8bc749db41f04
  unpetrify-ref: baserock/v2.10.11
  build-depends:
  - evolution-data-server
  - farstream
- name: telepathy-haze
  repo: upstream:telepathy-haze
  ref: d3d7b7f9342511c0c961e3f2d9fc1f5fb0804142
  unpetrify-ref: telepathy-haze-0.8.0
  build-system: autotools
  build-depends:
  - libpurple
  - telepathy-glib
- name: grilo
  repo: upstream:gnome/grilo
  ref: e470c0cd72231d2a86f419a584df3d635bc6b62f
  unpetrify-ref: baserock/grilo-0.2.14-17-ge470c0c
  build-system: autotools
  build-depends:
  - totem-pl-parser
- name: grilo-plugins
  repo: upstream:gnome/grilo-plugins
  ref: e23b0fa5f6656d53b977693bf55174bd2ccd172d
  unpetrify-ref: baserock/grilo-plugins-0.2.16-17-ge23b0fa
  build-system: autotools
  build-depends:
  - gnome-online-accounts
  - grilo
  - gupnp-av
  - libgdata
  - libmediaart
  - liboauth
  - librest
  - totem-pl-parser
  - tracker
  - yelp-tools
- name: libgtop
  repo: upstream:gnome/libgtop
  ref: ac2aef0f47fd998555abf18003f4c11ffecbf542
  unpetrify-ref: 2.32.0
  build-system: autotools
- name: libwacom
  repo: upstream:linuxwacom/libwacom
  ref: c707d0f98c79260cb72b5d2bdded50b4e816e350
  unpetrify-ref: libwacom-0.15
  build-system: autotools
- name: gnome-bluetooth
  repo: upstream:gnome/gnome-bluetooth
  ref: eb2558d45518f7c23c20fa7b13639f013810494e
  unpetrify-ref: GNOMEBT_V_3_18_0
  build-system: autotools
  build-depends:
  - libcanberra
  - libnotify
- name: libarchive
  morph: strata/gnome/libarchive.morph
  repo: upstream:libarchive
  ref: 19f23e191f9d3e1dd2a518735046100419965804
  unpetrify-ref: v3.1.2
- name: gcab
  repo: upstream:gnome/gcab
  ref: e57dd3d1ddb0da91df9188c2a98d59d1050ac6cb
  unpetrify-ref: baserock/v0.6-22-ge57dd3d
  build-system: autotools
- name: appstream-glib
  repo: upstream:appstream-glib
  ref: d3885c325271fee0bed5c5815d41eb788712acb4
  unpetrify-ref: appstream_glib_0_5_0
  # Building 0.5.3 requires absurdly new libsoup
  # ref: 2b57a0c407021f2b1efca38eb99a9bf61c1d16b2
  # unpetrify-ref: appstream_glib_0_5_3
  build-system: autotools
  build-depends:
  - gcab
  - libarchive
- name: gnome-color-manager
  morph: strata/gnome/gnome-color-manager.morph
  repo: upstream:gnome/gnome-color-manager
  ref: 8284cb186e0e7c248fc2a2449735fd24b778ec81
  unpetrify-ref: GNOME_COLOR_MANAGER_3_18_0
  build-depends:
  - appstream-glib
  - colord-gtk
  - gnome-desktop
  - lcms2
  - libcanberra
  - libexif
  - vte
  - yelp-tools
- name: clutter-gst
  repo: upstream:gnome/clutter-gst
  ref: 395797827a148809a2be0d968c5bf71a6e9c9299
  unpetrify-ref: 3.0.14
  build-system: autotools
  build-depends:
  - clutter
- name: clutter-gst2
  repo: upstream:gnome/clutter-gst
  ref: e9372b1c7d858ae0268d92d0c5e02532a8352b68
  unpetrify-ref: 2.0.16
  build-system: autotools
  build-depends:
  - clutter
- name: cheese
  morph: strata/gnome/cheese.morph
  repo: upstream:gnome/cheese
  ref: 61651e03e8346bd0084da7247269e52e2a42190e
  unpetrify-ref: gnome-3-18
  build-depends:
  - appstream-glib
  - clutter
  - clutter-gst
  - clutter-gtk
  - gnome-desktop
  - libcanberra
  - yelp-tools
- name: gnome-control-center
  morph: strata/gnome/gnome-control-center.morph
  repo: upstream:gnome/gnome-control-center
  ref: f00c05ba3b3c7aa328d7970b73a784739cef560a
  unpetrify-ref: baserock/3.18
  build-depends:
  - accountsservice
  - cheese
  - clutter
  - clutter-gtk
  - colord
  - colord-gtk
  - gnome-bluetooth
  - gnome-desktop
  - gnome-online-accounts
  - gnome-settings-daemon
  - grilo
  - gsettings-desktop-schemas
  - ibus
  - iso-codes
  - krb5
  - libcanberra
  - libgtop
  - libpwquality
  - libwacom
  - network-manager-applet
- name: gnome-initial-setup
  morph: strata/gnome/gnome-initial-setup.morph
  repo: upstream:gnome/gnome-initial-setup
  ref: a6ae059a7fab60cae534f78eb485960a7b406be5
  unpetrify-ref: new-user-mode-fixes
  build-depends:
  - accountsservice
  - cheese
  - gdm
  - gnome-desktop
  - gnome-keyring
  - gnome-online-accounts
  - ibus
  - iso-codes
  - krb5
  - libgweather
  - libpwquality
  - network-manager-applet
- name: libgnomekbd
  repo: upstream:gnome/libgnomekbd
  ref: d8ff867e95e548476c68db12ade3a0a4697a24a1
  unpetrify-ref: master
  build-system: autotools
  build-depends:
  - libxklavier
- name: sound-theme-freedesktop
  build-system: autotools
  repo: upstream:sound-theme-freedesktop
  ref: 9d2ac65a2f88263f0eec8b777ef3bdc023b93c25
  unpetrify-ref: 0.8
- name: libwnck
  morph: strata/gnome/libwnck.morph
  repo: upstream:libwnck
  ref: 46bade6f53351f2a63d030e27cbba2e0048d1cde
  unpetrify-ref: 3.14.0
- name: libpeas
  morph: strata/gnome/libpeas.morph
  repo: upstream:gnome/libpeas
  ref: ede1902bee26dbe36c2c1559b1166035580cdf30
  unpetrify-ref: libpeas-1.16.0
- name: gtksourceview
  morph: strata/gnome/gtksourceview.morph
  repo: upstream:gnome/gtksourceview
  ref: eeb6fd40fbbc74515828070fef554ed98ad481e9
  unpetrify-ref: 3.18.1
  build-depends:
  - glade
###############################################
#         Applications Start Here             #
###############################################
- name: epiphany
  morph: strata/gnome/epiphany.morph
  repo: upstream:gnome/epiphany
  ref: 5483823ae71fc5280e2fda9e85557362debb0c2e
  unpetrify-ref: 3.18.1
  build-depends:
  - appstream-glib
  - enchant
  - gcr
  - gnome-desktop
  - iso-codes
  - libcanberra
  - libnotify
  - libsecret
  - libwnck
  - startup-notification
  - WebKitGtk
- name: totem
  repo: upstream:gnome/totem
  ref: 77cf0b9d3de4fd3a48492c77e25308d6c411b651
  unpetrify-ref: baserock/V_3_18_1
  build-system: autotools
  build-depends:
  - appstream-glib
  - clutter
  - clutter-gst
  - clutter-gtk
  - gnome-desktop
  - grilo
  - grilo-plugins
  - gsettings-desktop-schemas
  - iso-codes
  - libpeas
  - totem-pl-parser
  - yelp-tools
- name: yelp
  repo: upstream:gnome/yelp
  morph: strata/gnome/yelp.morph 
  ref: 9932283ce9610f969e023a0dc326c81159c06a15
  unpetrify-ref: 3.18.1
  build-depends:
  - WebKitGtk
  - yelp-xsl
- name: gnome-user-docs
  repo: upstream:gnome/gnome-user-docs
  ref: 618fc9644317c55d674ca2e1b00b41d364427fb1
  unpetrify-ref: master
  build-system: autotools
  build-depends:
  - yelp-tools
- name: gnome-getting-started-docs
  repo: upstream:gnome/gnome-getting-started-docs
  ref: e50ec428ee080513f059a5cab0a41174f99f0413
  unpetrify-ref: 3.18.2
  build-system: autotools
  build-depends:
  - yelp-tools
- name: gedit
  repo: upstream:gnome/gedit
  ref: 4b318c265d71eca3572920bb159dcda9aa9f9184
  unpetrify-ref: baserock/3.18.2
  build-system: autotools
  build-depends:
  - enchant
  - gsettings-desktop-schemas
  - gtksourceview
  - iso-codes
  - libpeas
  - yelp-tools
- name: gnome-calendar
  repo: upstream:gnome/gnome-calendar
  ref: 5292e9d57442067701ce94eea54b4b12d13b7aa3
  unpetrify-ref: 3.18.1
  build-system: autotools
  build-depends:
  - appstream-glib
  - gnome-online-accounts
  - evolution-data-server
- name: gnome-todo
  repo: upstream:gnome/gnome-todo
  ref: a39ccadf8a659fca8b4503bf4844383f5346f6cb
  unpetrify-ref: GNOME_TODO_3_18_1
  build-system: autotools
  build-depends:
  - appstream-glib
  - evolution-data-server
  - gnome-online-accounts
- name: empathy
  morph: strata/gnome/empathy.morph
  repo: upstream:gnome/empathy
  ref: facd02a2cf3c0d2778b10626362b29e2a6df546a
  unpetrify-ref: baserock/EMPATHY_3_12_11
  build-depends:
  - cheese
  - clutter
  - clutter-gst2
  - clutter-gtk
  - enchant
  - farstream
  - folks
  - gcr
  - geoclue
  - geocode-glib
  - gnome-online-accounts
  - gnutls
  - gsettings-desktop-schemas
  - iso-codes
  - libcanberra
  - libchamplain
  - libnotify
  - libsecret
  - telepathy-farstream
  - telepathy-glib
  - telepathy-logger
  - telepathy-mission-control
  - WebKitGtk1
  - yelp-tools
- name: gnome-contacts
  repo: upstream:gnome/gnome-contacts
  ref: 3715ec79662989038d5055bb74aa0b728b40edb5
  unpetrify-ref: baserock/3.18.0
  build-system: autotools
  build-depends:
  - cheese
  - folks
  - gnome-desktop
  - gnome-online-accounts
  - libchamplain
  - libnotify
  - telepathy-glib
- name: gnome-maps
  repo: upstream:gnome/gnome-maps
  ref: 6d6e8afd54735e565a0c81cb761f22bb82d142db
  unpetrify-ref: v3.18.1
  build-system: autotools
  build-depends:
  - folks
  - clutter-gtk
  - geoclue
  - geocode-glib
  - gjs
  - gnome-desktop
  - gnome-online-accounts
  - libchamplain
  - libgfbgraph
- name: gnome-dictionary
  repo: upstream:gnome/gnome-dictionary
  ref: e36fac6ee47a71c46afdd55f2110c36a22521bb6
  unpetrify-ref: 3.18.0
  build-system: autotools
  build-depends:
  - yelp-tools
- name: eog
  repo: upstream:gnome/eog
  ref: d05bdd7dfbe13910f903c8678e923ff6d92cbc86
  unpetrify-ref: 3.18.1
  build-system: autotools
  build-depends:
  - gnome-desktop
  - gsettings-desktop-schemas
  - lcms2
  - libexif
  - libpeas
  - yelp-tools
- name: baobab
  repo: upstream:gnome/baobab
  ref: 59fa8171d2dfa02be56930f451ae186680074bb6
  unpetrify-ref: 3.18.1
  build-system: autotools
  build-depends:
  - yelp-tools
- name: gnome-font-viewer
  repo: upstream:gnome/gnome-font-viewer
  ref: 9af2f35a63f34f87407e784b514cafe1cc772384
  unpetrify-ref: master
  build-system: autotools
  build-depends:
  - gnome-desktop
- name: gnome-screenshot
  repo: upstream:gnome/gnome-screenshot
  ref: 3a97ad23ff14a0400f12dd3fdf501d1d9dad04d4
  unpetrify-ref: 3.18.0
  build-system: autotools
  build-depends:
  - libcanberra
- name: evolution
  morph: strata/gnome/evolution.morph
  repo: upstream:gnome/evolution
  ref: 579583275620be75afdedcde909a82fd96136188
  unpetrify-ref: EVOLUTION_3_18_3
  build-depends:
  - enchant
  - evolution-data-server
  - gcr
  - geoclue
  - geocode-glib
  - clutter-gtk
  - gnome-desktop
  - gnome-online-accounts
  - gsettings-desktop-schemas
  - libcanberra
  - libchamplain
  - libgdata
  - libgweather
  - libnotify
  - WebKitGtk1
  - yelp-tools