summaryrefslogtreecommitdiff
path: root/packaging/domain-apis.inc
blob: 52268cc1c59c574211c6837fdecc07fc434e1042 (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
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
# Maintainer: TBD: This is temporary block for TDC Demo. You may proceed with this later anyway.
# You need ACK (+1) from the maintainer to be reviewed by building-blocks maintainers.

%package root-domain_API
Summary:	Tizen Native API Sets
Suggests:	%{name}-sub1-domain_API-Account
Suggests:	%{name}-sub1-domain_API-AppFramework
Suggests:	%{name}-sub1-domain_API-Base
Suggests:	%{name}-sub1-domain_API-Content
Suggests:	%{name}-sub1-domain_API-Context
Suggests:	%{name}-sub1-domain_API-Location
Suggests:	%{name}-sub1-domain_API-Maps
Suggests:	%{name}-sub1-domain_API-Messaging
Suggests:	%{name}-sub1-domain_API-Multimedia
Suggests:	%{name}-sub1-domain_API-Network
Suggests:	%{name}-sub1-domain_API-Security
Suggests:	%{name}-sub1-domain_API-Social
Suggests:	%{name}-sub1-domain_API-System
Suggests:	%{name}-sub1-domain_API-Telephony
Suggests:	%{name}-sub1-domain_API-UI
Suggests:	%{name}-sub1-domain_API-UIX
Suggests:	%{name}-sub1-domain_API-Web
%description root-domain_API
__EXPAND__: domains
Tizen packages blocked and sorted by API sets defined by TPL
%files root-domain_API


############
## Account ##
############
%package sub1-domain_API-Account
Summary:	Account Native API Group
Suggests: %{name}-sub2-domain_API-Account-Account_Manager
Suggests: %{name}-sub2-domain_API-Account-FIDO_Client
Suggests: %{name}-sub2-domain_API-Account-OAuth2
Suggests: %{name}-sub2-domain_API-Account-Sync_Manager
Suggests: %{name}-sub2-domain_API-Account-libOAuth
%description sub1-domain_API-Account
Tizen block (set of packages) for Group of domain API-Account
%files sub1-domain_API-Account


%package sub2-domain_API-Account-Account_Manager
Summary:	Account Manager
Requires:	libaccount-service
Requires:	account-manager
Requires:	account-parser
%description sub2-domain_API-Account-Account_Manager
This block supports managing account related information. Once you check the Account Manager before Image Creation, it will be included the image.
%files sub2-domain_API-Account-Account_Manager

### TODO - FIDO Client###
# Summary, description

%package sub2-domain_API-Account-FIDO_Client
Summary:	FIDO Client
%description sub2-domain_API-Account-FIDO_Client

### TODO ###
# packakge list

%files sub2-domain_API-Account-FIDO_Client

### TODO - OAuth2.0 ###
# Summary, description

%package sub2-domain_API-Account-OAuth2
Summary:	OAuth2.0
%description sub2-domain_API-Account-OAuth2

### TODO ###
# packakge list

%files sub2-domain_API-Account-OAuth2

%package sub2-domain_API-Account-Sync_Manager
Summary:	Sync Manager
Requires:	libcore-sync-client
Requires:	%{name}-sub2-domain_API-Account-Account_Manager
Requires:	%{name}-sub2-domain_API-Social-Contacts
Suggests:	%{name}-sub1-domain_API-Telephony
Suggests:	%{name}-sub2-domain_API-Network-WiFi
%description sub2-domain_API-Account-Sync_Manager
This block supports managing data synchronization. Also, to use this feature, either Data Network or Wi-Fi connection is required. Once you check the Sync Manager before Image Creation, it will be included the image.
%files sub2-domain_API-Account-Sync_Manager

### TODO - libOAuth ###
# Summary, description

%package sub2-domain_API-Account-libOAuth
Summary:	libOAuth
%description sub2-domain_API-Account-libOAuth

### TODO ###
# packakge list

%files sub2-domain_API-Account-libOAuth

###################
## AppFrammework ##
###################
%package sub1-domain_API-AppFramework
Summary:	Application Framework Native API Group
Suggests: %{name}-sub2-domain_API-AppFramework-TPK_Installation
Suggests: %{name}-sub2-domain_API-AppFramework-Native_EFL_UI_app_model
Suggests: %{name}-sub2-domain_API-AppFramework-Alarm_API
Suggests: %{name}-sub2-domain_API-AppFramework-Message_Port_API
Suggests: %{name}-sub2-domain_API-AppFramework-Data_Control_API
Suggests: %{name}-sub2-domain_API-AppFramework-Native_EFL_Widget_App_Model
Suggests: %{name}-sub2-domain_API-AppFramework-Notification_API
Suggests: %{name}-sub2-domain_API-AppFramework-Shortcut_API
Suggests: %{name}-sub2-domain_API-AppFramework-Badge_API
Suggests: %{name}-sub2-domain_API-AppFramework-Media_Key_API
Suggests: %{name}-sub2-domain_API-AppFramework-Attach_Panel
%description sub1-domain_API-AppFramework
Tizen block (set of packages) for Group of domain API-AppFramework
%files sub1-domain_API-AppFramework

%package sub2-domain_API-AppFramework-TPK_Installation
Summary: TPK package management
Requires: pkgmgr-server
Requires: pkgmgr-tool
%description sub2-domain_API-AppFramework-TPK_Installation
This block supports tpk package management (install/uninstall)
%files sub2-domain_API-AppFramework-TPK_Installation

%package sub2-domain_API-AppFramework-Native_EFL_UI_app_model
Summary: Native EFL UI app model
Requires: capi-appfw-application
Requires: amd-mod-cynara-core
Requires: amd-mod-extractor
Requires: amd-mod-input
Requires: amd-mod-launchpad
Requires: amd-mod-share
Requires: amd-mod-splash-screen
Requires: amd-mod-ui-core
Requires: amd-mod-wayland-core
Requires: %{name}-sub2-domain_API-UI-Display_Server
Requires: %{name}-sub2-domain_API-UI-EFL_NativeUIToolkit
%description sub2-domain_API-AppFramework-Native_EFL_UI_app_model
This block supports native EFL UI application model
%files sub2-domain_API-AppFramework-Native_EFL_UI_app_model

%package sub2-domain_API-AppFramework-Alarm_API
Summary: Alarm API
Requires: capi-appfw-alarm
Requires: alarm-server
%description sub2-domain_API-AppFramework-Alarm_API
This block supports alarm API
%files sub2-domain_API-AppFramework-Alarm_API

%package sub2-domain_API-AppFramework-Message_Port_API
Summary: Message Port API
Requires: message-port
%description sub2-domain_API-AppFramework-Message_Port_API
This block supports message port API
%files sub2-domain_API-AppFramework-Message_Port_API

%package sub2-domain_API-AppFramework-Data_Control_API
Summary: Data Control API
Requires: data-control
%description sub2-domain_API-AppFramework-Data_Control_API
This block supports data control API
%files sub2-domain_API-AppFramework-Data_Control_API

%package sub2-domain_API-AppFramework-Native_EFL_Widget_App_Model
Summary: EFL widget app model
Requires: %{name}-sub2-domain_API-AppFramework-Native_EFL_UI_app_model
Requires: appcore-widget
Requires: libwidget_service
Requires: libwidget_viewer
Requires: libwidget_viewer_evas
%description sub2-domain_API-AppFramework-Native_EFL_Widget_App_Model
This block supports native EFL widget app model
%files sub2-domain_API-AppFramework-Native_EFL_Widget_App_Model

%package sub2-domain_API-AppFramework-Notification_API
Summary: Notification API
Requires: notification
Requires: data-provider-master
%description sub2-domain_API-AppFramework-Notification_API
This block supports notification API
%files sub2-domain_API-AppFramework-Notification_API

%package sub2-domain_API-AppFramework-Shortcut_API
Summary: Shortcut API
Requires: libshortcut
Requires: data-provider-master
%description sub2-domain_API-AppFramework-Shortcut_API
This block supports shortcut API
%files sub2-domain_API-AppFramework-Shortcut_API

%package sub2-domain_API-AppFramework-Badge_API
Summary: Badge API
Requires: badge
Requires: data-provider-master
%description sub2-domain_API-AppFramework-Badge_API
This block supports badge API
%files sub2-domain_API-AppFramework-Badge_API

%package sub2-domain_API-AppFramework-Media_Key_API
Summary: Media Key API
Requires: capi-system-media-key
Requires: %{name}-sub2-domain_API-UI-Display_Server
%description sub2-domain_API-AppFramework-Media_Key_API
This block supports media key API
%files sub2-domain_API-AppFramework-Media_Key_API

%package sub2-domain_API-AppFramework-Attach_Panel
Summary:    Attach-Panel

# packakge list
Requires: attach-panel
Requires: attach-panel-gallery
Requires: attach-panel-camera
Requires: attach-panel-document
Requires: attach-panel-voicerecorder

Requires: %{name}-sub2-domain_API-Multimedia-Camera
Requires: %{name}-sub2-domain_API-System-Device_Battery
Requires: %{name}-sub2-domain_API-Multimedia-Recorder
Requires: %{name}-sub2-domain_API-AppFramework-Native_EFL_UI_app_model
Requires: %{name}-sub2-domain_API-System-Storage

Suggests: org.tizen.app-selector-profile_mobile

%description sub2-domain_API-AppFramework-Attach_Panel
Attach panel provides functions to attach images, voices, contacts, events and files. User can attach images, take pictures, record voice and select files to attach into the caller app.
Currently, only mobile is supported, and if there is a profile you want, you can select the app-selector package corresponding to profile.

%files sub2-domain_API-AppFramework-Attach_Panel


##########
## Base ##
##########
%package sub1-domain_API-Base
Summary:	Base API Group
Suggests: %{name}-sub2-domain_API-Base-CPP_Standard_library
Suggests: %{name}-sub2-domain_API-Base-Common_Error
Suggests: %{name}-sub2-domain_API-Base-Glib
Suggests: %{name}-sub2-domain_API-Base-Glibc
Suggests: %{name}-sub2-domain_API-Base-LibXML
Suggests: %{name}-sub2-domain_API-Base-Minizip
Suggests: %{name}-sub2-domain_API-Base-OpenMP
Suggests: %{name}-sub2-domain_API-Base-Sqlite
Suggests: %{name}-sub2-domain_API-Base-Utils
Suggests: %{name}-sub2-domain_API-Base-zlib
%description sub1-domain_API-Base
Tizen block (set of packages) for Group of domain API-Base
%files sub1-domain_API-Base

### TODO - CPP-Standard-library ###
# Summary, description

%package sub2-domain_API-Base-CPP_Standard_library
Summary:    C++-Standard-library
%description sub2-domain_API-Base-CPP_Standard_library

### TODO ###
# packakge list

%files sub2-domain_API-Base-CPP_Standard_library

### TODO - Common-Error ###
# Summary, description

%package sub2-domain_API-Base-Common_Error
Summary:    Common-Error
%description sub2-domain_API-Base-Common_Error

### TODO ###
# packakge list

%files sub2-domain_API-Base-Common_Error

### TODO - Glib ###
# Summary, description

%package sub2-domain_API-Base-Glib
Summary:    Glib
%description sub2-domain_API-Base-Glib

### TODO ###
# packakge list

%files sub2-domain_API-Base-Glib

### TODO - Glibc ###
# Summary, description

%package sub2-domain_API-Base-Glibc
Summary:    Glib
%description sub2-domain_API-Base-Glibc

### TODO ###
# packakge list

%files sub2-domain_API-Base-Glibc

### TODO - LibXML ###
# Summary, description

%package sub2-domain_API-Base-LibXML
Summary:    LibXML
%description sub2-domain_API-Base-LibXML

### TODO ###
# packakge list

%files sub2-domain_API-Base-LibXML

### TODO - Minizip ###
# Summary, description

%package sub2-domain_API-Base-Minizip
Summary:    Minizip
%description sub2-domain_API-Base-Minizip

### TODO ###
# packakge list

%files sub2-domain_API-Base-Minizip

### TODO - OpenMP ###
# Summary, description

%package sub2-domain_API-Base-OpenMP
Summary:    OpenMP
%description sub2-domain_API-Base-OpenMP

### TODO ###
# packakge list

%files sub2-domain_API-Base-OpenMP

### TODO - Sqlite ###
# Summary, description

%package sub2-domain_API-Base-Sqlite
Summary:    Sqlite
%description sub2-domain_API-Base-Sqlite

### TODO ###
# packakge list

%files sub2-domain_API-Base-Sqlite

### TODO - Utils ###
# Summary, description

%package sub2-domain_API-Base-Utils
Summary:    Utils
%description sub2-domain_API-Base-Utils

### TODO ###
# packakge list

%files sub2-domain_API-Base-Utils

### TODO - zlib ###
# Summary, description

%package sub2-domain_API-Base-zlib
Summary:    zlib
%description sub2-domain_API-Base-zlib

### TODO ###
# packakge list

%files sub2-domain_API-Base-zlib


#############
## Content ##
#############
%package sub1-domain_API-Content
Summary:	Content API Group
Suggests: %{name}-sub2-domain_API-Content-Download
Suggests: %{name}-sub2-domain_API-Content-MIME_Type
Suggests: %{name}-sub2-domain_API-Content-Media_Content
%description sub1-domain_API-Content
Tizen block (set of packages) for Group of domain API-Content
%files sub1-domain_API-Content

### TODO - Download ###
# Summary, description

%package sub2-domain_API-Content-Download
Summary:    Download
%description sub2-domain_API-Content-Download

### TODO ###
# packakge list

%files sub2-domain_API-Content-Download

### TODO - MIME-Type ###
# Summary, description

%package sub2-domain_API-Content-MIME_Type
Summary:    MIME-Type
%description sub2-domain_API-Content-MIME_Type

### TODO ###
# packakge list

%files sub2-domain_API-Content-MIME_Type

%package sub2-domain_API-Content-Media_Content
Summary:    Media-Content
Requires: capi-content-media-content
Requires: media-server
Requires: dcm-service
Requires: media-thumbnail-server
Requires: %{name}-sub2-domain_API-Multimedia-Media_Vision_Face
%description sub2-domain_API-Content-Media_Content
Enabling Media Content and it is possible to use Media Content API
%files sub2-domain_API-Content-Media_Content

#############
## Context ##
#############
%package sub1-domain_API-Context
Summary:	Context API Group
Suggests: %{name}-sub2-domain_API-Context-Activity_Geusture_Recognition
Suggests: %{name}-sub2-domain_API-Context-Contextual_History
Suggests: %{name}-sub2-domain_API-Context-Contextual_Tirgger
%description sub1-domain_API-Context
Tizen block (set of packages) for Group of domain API-Context
%files sub1-domain_API-Context

### TODO - Activity-Geusture-Recognition ###
# Summary, description

%package sub2-domain_API-Context-Activity_Geusture_Recognition
Summary:    Activiti-Geusture-Recognition
%description sub2-domain_API-Context-Activity_Geusture_Recognition

### TODO ###
# packakge list

%files sub2-domain_API-Context-Activity_Geusture_Recognition

### TODO - Contextual-History ###
# Summary, description

%package sub2-domain_API-Context-Contextual_History
Summary:    Contextual-History
%description sub2-domain_API-Context-Contextual_History

### TODO ###
# packakge list

%files sub2-domain_API-Context-Contextual_History

### TODO - Contextual-Tirgger ###
# Summary, description

%package sub2-domain_API-Context-Contextual_Tirgger
Summary:    Contextual-Tirgger
%description sub2-domain_API-Context-Contextual_Tirgger

### TODO ###
# packakge list

%files sub2-domain_API-Context-Contextual_Tirgger



##############
## Location ##
##############
%package sub1-domain_API-Location
Summary:	Location API Group
Suggests: %{name}-sub2-domain_API-Location-Location_Manager
Suggests: %{name}-sub2-domain_API-Location-Geofence_Manager
%description sub1-domain_API-Location
Tizen block (set of packages) for Group of domain API-Location
%files sub1-domain_API-Location

### TODO - Location-Manager ###
# Summary, description

%package sub2-domain_API-Location-Location_Manager
Summary:    Location-Manager
%description sub2-domain_API-Location-Location_Manager

### TODO ###
# packakge list

%files sub2-domain_API-Location-Location_Manager

### TODO - Geofence-Manager ###
# Summary, description

%package sub2-domain_API-Location-Geofence_Manager
Summary:    Geofence-Manager
%description sub2-domain_API-Location-Geofence_Manager

### TODO ###
# packakge list

%files sub2-domain_API-Location-Geofence_Manager

##########
## Maps ##
##########
%package sub1-domain_API-Maps
Summary:	Maps API Group
Suggests: %{name}-sub2-domain_API-Maps-Maps_Service
Suggests: %{name}-sub2-domain_API-Maps-Here_Plugin
Suggests: %{name}-sub2-domain_API-Maps-Mapzen_Plugin
%description sub1-domain_API-Maps
Tizen block (set of packages) for Group of domain API-Maps
%files sub1-domain_API-Maps

### TODO - Maps_Service ###
# Summary, description

%package sub2-domain_API-Maps-Maps_Service
Summary:    Masp_Service
%description sub2-domain_API-Maps-Maps_Service

### TODO ###
# packakge list

%files sub2-domain_API-Maps-Maps_Service

### TODO - Here_Plugin ###
# Summary, description

%package sub2-domain_API-Maps-Here_Plugin
Summary:    Here_Plugin
%description sub2-domain_API-Maps-Here_Plugin

### TODO ###
# packakge list

%files sub2-domain_API-Maps-Here_Plugin

### TODO - Mapzen_Plugin ###
# Summary, description

%package sub2-domain_API-Maps-Mapzen_Plugin
Summary:    Mapzen_Plugin
%description sub2-domain_API-Maps-Mapzen_Plugin

### TODO ###
# packakge list

%files sub2-domain_API-Maps-Mapzen_Plugin

###############
## Messaging ##
###############
%package sub1-domain_API-Messaging
Summary:	Messaging API Group
Suggests: %{name}-sub2-domain_API-Messaging-Email
Suggests: %{name}-sub2-domain_API-Messaging-Messages
Suggests: %{name}-sub2-domain_API-Messaging-Push
%description sub1-domain_API-Messaging
Tizen block (set of packages) for Group of domain API-Messaging
%files sub1-domain_API-Messaging

%package sub2-domain_API-Messaging-Email
Summary:Email
Requires:capi-messaging-email
Requires:email-service
Suggests:%{name}-sub1-domain_API-Telephony
Suggests:%{name}-sub2-domain_API-Network-WiFi

%description sub2-domain_API-Messaging-Email
This block supports managing Email service.<br>
Telephony or WiFi should be selected to use Email service.<br>
Telephony would be available when Telephony is selected.<br>
Wifi would be available when Wifi is selected.


%files sub2-domain_API-Messaging-Email

%package sub2-domain_API-Messaging-Messages
Summary:Messages
Requires:capi-messaging-messages
Requires:msg-service
Requires:msg-manager
Requires:sms-plugin
Requires:mms-plugin
Requires:%{name}-sub1-domain_API-Telephony

%description sub2-domain_API-Messaging-Messages
This block supports managing Message service.

%files sub2-domain_API-Messaging-Messages

%package sub2-domain_API-Messaging-Push
Summary:	Push Client
Requires:	libpush
Suggests:	%{name}-sub1-domain_API-Telephony
Suggests:	%{name}-sub2-domain_API-Network-WiFi
%description sub2-domain_API-Messaging-Push
This block supports transferation push messages between devices and server. Also, to use this feature, either Data Network or Wi-Fi connection is required. Once you check the Push Client before Image Creation, it will be included the image. For this, either Data Network or Wi-Fi connection is required.
%files sub2-domain_API-Messaging-Push

################
## Multimedia ##
################
%package sub1-domain_API-Multimedia
Summary:	Multimedia API Group
Suggests: %{name}-sub2-domain_API-Multimedia-Audio_IO
Suggests: %{name}-sub2-domain_API-Multimedia-Camera
Suggests: %{name}-sub2-domain_API-Multimedia-Image_Util
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Codec
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Controller
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Demuxer
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Muxer
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Streamer
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Tool
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Vision_Barcode
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Vision_Face
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Vision_Image
Suggests: %{name}-sub2-domain_API-Multimedia-Media_Vision_Surveillance
Suggests: %{name}-sub2-domain_API-Multimedia-Metadata_Editor
Suggests: %{name}-sub2-domain_API-Multimedia-Metadata_Extractor
Suggests: %{name}-sub2-domain_API-Multimedia-OpenAL
Suggests: %{name}-sub2-domain_API-Multimedia-Player
Suggests: %{name}-sub2-domain_API-Multimedia-Radio
Suggests: %{name}-sub2-domain_API-Multimedia-Recorder
Suggests: %{name}-sub2-domain_API-Multimedia-Screen_Mirroring
Suggests: %{name}-sub2-domain_API-Multimedia-Sound_Manager
Suggests: %{name}-sub2-domain_API-Multimedia-Thumbnail_Util
Suggests: %{name}-sub2-domain_API-Multimedia-Tone_Player
Suggests: %{name}-sub2-domain_API-Multimedia-Video_Util
Suggests: %{name}-sub2-domain_API-Multimedia-WAV_Player
Suggests: %{name}-sub2-domain_API-Multimedia-libEXIF
%description sub1-domain_API-Multimedia
Tizen block (set of packages) for Group of domain API-Multimedia
%files sub1-domain_API-Multimedia

### TODO - Audio_IO ###
# Summary, description

%package sub2-domain_API-Multimedia-Audio_IO
Summary:    Audio_IO
%description sub2-domain_API-Multimedia-Audio_IO

### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Audio_IO

### TODO - Camera ##
# Summary, description

%package sub2-domain_API-Multimedia-Camera
Summary:    Camera
%description sub2-domain_API-Multimedia-Camera
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Camera

%package sub2-domain_API-Multimedia-Image_Util
Summary:    Image_Util
Requires: capi-media-image-util
%description sub2-domain_API-Multimedia-Image_Util
Enabling Image Util and it is possible to use Image Util API
%files sub2-domain_API-Multimedia-Image_Util

### TODO - Media_Codec ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Codec
Summary:    Media_Codec
%description sub2-domain_API-Multimedia-Media_Codec
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Codec

%package sub2-domain_API-Multimedia-Media_Controller
Summary:    Media_Controller
Requires: capi-media-controller
Requires: mediacontroller
%description sub2-domain_API-Multimedia-Media_Controller
Enabling Media Controller and it is possible to use Media Controller API
%files sub2-domain_API-Multimedia-Media_Controller

### TODO - Media_Demuxer ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Demuxer
Summary:    Media_Demuxer
%description sub2-domain_API-Multimedia-Media_Demuxer
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Demuxer

### TODO - Media_Muxer ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Muxer
Summary:    Media_Muxer
%description sub2-domain_API-Multimedia-Media_Muxer
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Muxer

### TODO - Media_Streamer ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Streamer
Summary:    Media_Streamer
%description sub2-domain_API-Multimedia-Media_Streamer
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Streamer

### TODO - Media_Tool ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Tool
Summary:    Media_Tool
%description sub2-domain_API-Multimedia-Media_Tool
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Tool

### TODO - Media_Vision_Barcode ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Vision_Barcode
Summary:    Media_Vision_Barcode
%description sub2-domain_API-Multimedia-Media_Vision_Barcode
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Vision_Barcode

### TODO - Media_Vision_Face ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Vision_Face
Summary:    Media_Vision_Face
%description sub2-domain_API-Multimedia-Media_Vision_Face
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Vision_Face

### TODO - Media_Vision_Image ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Vision_Image
Summary:    Media_Vision_Image
%description sub2-domain_API-Multimedia-Media_Vision_Image
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Vision_Image

### TODO - Media_Vision_Surveillance ##
# Summary, description

%package sub2-domain_API-Multimedia-Media_Vision_Surveillance
Summary:    Media_Vision_Surveillance
%description sub2-domain_API-Multimedia-Media_Vision_Surveillance
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Media_Vision_Surveillance

%package sub2-domain_API-Multimedia-Metadata_Editor
Summary:    Metadata_Editor
Requires: capi-media-metadata-editor
%description sub2-domain_API-Multimedia-Metadata_Editor
Enabling Metadata Editor and it is possible to use Metadata Editor API
%files sub2-domain_API-Multimedia-Metadata_Editor

%package sub2-domain_API-Multimedia-Metadata_Extractor
Summary:    Metadata_Extractor
Requires: capi-media-metadata-extractor
%description sub2-domain_API-Multimedia-Metadata_Extractor
Enabling Metadata Extractor and it is possible to use Metadata Extractor API
%files sub2-domain_API-Multimedia-Metadata_Extractor

### TODO - OpenAL ##
# Summary, description

%package sub2-domain_API-Multimedia-OpenAL
Summary:    OpenAL
%description sub2-domain_API-Multimedia-OpenAL
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-OpenAL

### TODO - Player ##
# Summary, description

%package sub2-domain_API-Multimedia-Player
Summary:    Player
%description sub2-domain_API-Multimedia-Player
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Player

### TODO - Radio ##
# Summary, description

%package sub2-domain_API-Multimedia-Radio
Summary:    Radio
%description sub2-domain_API-Multimedia-Radio
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Radio

### TODO - Recorder ##
# Summary, description

%package sub2-domain_API-Multimedia-Recorder
Summary:    Recorder
%description sub2-domain_API-Multimedia-Recorder
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Recorder

### TODO - Screen_Mirroring ##
# Summary, description

%package sub2-domain_API-Multimedia-Screen_Mirroring
Summary:    Screen_Mirroring
%description sub2-domain_API-Multimedia-Screen_Mirroring
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Screen_Mirroring

### TODO - Sound_Manager ##
# Summary, description

%package sub2-domain_API-Multimedia-Sound_Manager
Summary:    Sound_Manager
%description sub2-domain_API-Multimedia-Sound_Manager
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Sound_Manager

%package sub2-domain_API-Multimedia-Thumbnail_Util
Summary:    Thumbnail_Util
Requires: capi-media-thumbnail-util
Requires: media-server
Requires: media-thumbnail-server
%description sub2-domain_API-Multimedia-Thumbnail_Util
Enabling Thumbnail Util and it is possible to use Thumbnail Util API
%files sub2-domain_API-Multimedia-Thumbnail_Util

### TODO - Tone_Player ##
# Summary, description

%package sub2-domain_API-Multimedia-Tone_Player
Summary:    Tone_Player
%description sub2-domain_API-Multimedia-Tone_Player
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Tone_Player

### TODO - Video_Util ##
# Summary, description

%package sub2-domain_API-Multimedia-Video_Util
Summary:    Video_Util
%description sub2-domain_API-Multimedia-Video_Util
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-Video_Util

### TODO - WAV_Player ##
# Summary, description

%package sub2-domain_API-Multimedia-WAV_Player
Summary:    WAV_Player
%description sub2-domain_API-Multimedia-WAV_Player
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-WAV_Player

### TODO - libEXIF ##
# Summary, description

%package sub2-domain_API-Multimedia-libEXIF
Summary:    libEXIF
%description sub2-domain_API-Multimedia-libEXIF
### TODO ###
# packakge list

%files sub2-domain_API-Multimedia-libEXIF

#############
## Netowrk ##
#############
%package sub1-domain_API-Network
Summary:	Network API Group
Suggests: %{name}-sub2-domain_API-Network-Bluetooth_BREDR
Suggests: %{name}-sub2-domain_API-Network-Bluetooth_Call_Audio
Suggests: %{name}-sub2-domain_API-Network-Bluetooth_Media_Audio
Suggests: %{name}-sub2-domain_API-Network-Bluetooth_Transfer
Suggests: %{name}-sub2-domain_API-Network-Bluetooth_LE
Suggests: %{name}-sub2-domain_API-Network-ASP
Suggests: %{name}-sub2-domain_API-Network-Connection
Suggests: %{name}-sub2-domain_API-Network-Curl
Suggests: %{name}-sub2-domain_API-Network-DNSSD
Suggests: %{name}-sub2-domain_API-Network-HTTP
Suggests: %{name}-sub2-domain_API-Network-IoTCon
Suggests: %{name}-sub2-domain_API-Network-MTP
Suggests: %{name}-sub2-domain_API-Network-NFC
Suggests: %{name}-sub2-domain_API-Network-SSDP
Suggests: %{name}-sub2-domain_API-Network-STC
Suggests: %{name}-sub2-domain_API-Network-Smartcard
Suggests: %{name}-sub2-domain_API-Network-VPN_Service
Suggests: %{name}-sub2-domain_API-Network-WiFi
Suggests: %{name}-sub2-domain_API-Network-WiFi_Manager
Suggests: %{name}-sub2-domain_API-Network-WiFi_Direct
%description sub1-domain_API-Network
Tizen block (set of packages) for Group of domain API-Network
%files sub1-domain_API-Network


### TODO - Bluetooth_BREDR ##
# Summary, description

%package sub2-domain_API-Network-Bluetooth_BREDR
Summary:    Bluetooth_BREDR
%description sub2-domain_API-Network-Bluetooth_BREDR
### TODO ###
# packakge list

%files sub2-domain_API-Network-Bluetooth_BREDR

### TODO - Bluetooth_Call_Audio ##
# Summary, description

%package sub2-domain_API-Network-Bluetooth_Call_Audio
Summary:    Bluetooth_Call_Audio
%description sub2-domain_API-Network-Bluetooth_Call_Audio
### TODO ###
# packakge list

%files sub2-domain_API-Network-Bluetooth_Call_Audio
### TODO - Bluetooth_Media_Audio ##
# Summary, description

%package sub2-domain_API-Network-Bluetooth_Media_Audio
Summary:    Bluetooth_Media_Audio
%description sub2-domain_API-Network-Bluetooth_Media_Audio
### TODO ###
# packakge list

%files sub2-domain_API-Network-Bluetooth_Media_Audio
### TODO - Bluetooth_Transfer ##
# Summary, description

%package sub2-domain_API-Network-Bluetooth_Transfer
Summary:    Bluetooth_Transfer
%description sub2-domain_API-Network-Bluetooth_Transfer
### TODO ###
# packakge list

%files sub2-domain_API-Network-Bluetooth_Transfer
### TODO - Bluetooth_LE ##
# Summary, description

%package sub2-domain_API-Network-Bluetooth_LE
Summary:    Bluetooth_LE
%description sub2-domain_API-Network-Bluetooth_LE
### TODO ###
# packakge list

%files sub2-domain_API-Network-Bluetooth_LE
### TODO - ASP ##
# Summary, description

%package sub2-domain_API-Network-ASP
Summary:    ASP
%description sub2-domain_API-Network-ASP
### TODO ###
# packakge list

%files sub2-domain_API-Network-ASP
### TODO - Connection ##
# Summary, description

%package sub2-domain_API-Network-Connection
Summary:    Connection
%description sub2-domain_API-Network-Connection
### TODO ###
# packakge list

%files sub2-domain_API-Network-Connection
### TODO - Curl ##
# Summary, description

%package sub2-domain_API-Network-Curl
Summary:    Curl
%description sub2-domain_API-Network-Curl
### TODO ###
# packakge list

%files sub2-domain_API-Network-Curl
### TODO - DNSSD ##
# Summary, description

%package sub2-domain_API-Network-DNSSD
Summary:    DNSSD
%description sub2-domain_API-Network-DNSSD
### TODO ###
# packakge list

%files sub2-domain_API-Network-DNSSD
### TODO - HTTP ##
# Summary, description

%package sub2-domain_API-Network-HTTP
Summary:    HTTP
%description sub2-domain_API-Network-HTTP
### TODO ###
# packakge list

%files sub2-domain_API-Network-HTTP
### TODO - IoTCon ##
# Summary, description

%package sub2-domain_API-Network-IoTCon
Summary:    IoTCon
%description sub2-domain_API-Network-IoTCon
### TODO ###
# packakge list

%files sub2-domain_API-Network-IoTCon
### TODO - MTP ##
# Summary, description

%package sub2-domain_API-Network-MTP
Summary:    MTP
%description sub2-domain_API-Network-MTP
### TODO ###
# packakge list

%files sub2-domain_API-Network-MTP
### TODO - NFC ##
# Summary, description

%package sub2-domain_API-Network-NFC
Summary:    NFC
%description sub2-domain_API-Network-NFC
### TODO ###
# packakge list

%files sub2-domain_API-Network-NFC
### TODO - SSDP ##
# Summary, description

%package sub2-domain_API-Network-SSDP
Summary:    SSDP
%description sub2-domain_API-Network-SSDP
### TODO ###
# packakge list

%files sub2-domain_API-Network-SSDP
### TODO - STC ##
# Summary, description

%package sub2-domain_API-Network-STC
Summary:    STC
%description sub2-domain_API-Network-STC
### TODO ###
# packakge list

%files sub2-domain_API-Network-STC
### TODO - Smartcard ##
# Summary, description

%package sub2-domain_API-Network-Smartcard
Summary:    Smartcard
%description sub2-domain_API-Network-Smartcard
### TODO ###
# packakge list

%files sub2-domain_API-Network-Smartcard
### TODO - VPN_Service ##
# Summary, description

%package sub2-domain_API-Network-VPN_Service
Summary:    VPN_Service
%description sub2-domain_API-Network-VPN_Service
### TODO ###
# packakge list

%files sub2-domain_API-Network-VPN_Service
### TODO - WiFi ##
# Summary, description

%package sub2-domain_API-Network-WiFi
Summary:    WiFi
%description sub2-domain_API-Network-WiFi
### TODO ###
# packakge list

%files sub2-domain_API-Network-WiFi
### TODO - WiFi_Manager ##
# Summary, description

%package sub2-domain_API-Network-WiFi_Manager
Summary:    WiFi_Manager
%description sub2-domain_API-Network-WiFi_Manager
### TODO ###
# packakge list

%files sub2-domain_API-Network-WiFi_Manager
### TODO - WiFi_Direct ##
# Summary, description

%package sub2-domain_API-Network-WiFi_Direct
Summary:    WiFi_Direct
%description sub2-domain_API-Network-WiFi_Direct
### TODO ###
# packakge list

%files sub2-domain_API-Network-WiFi_Direct

##############
## Security ##
##############
%package sub1-domain_API-Security
Summary:	Security API Group
Suggests: %{name}-sub2-domain_API-Security-CSR
Suggests: %{name}-sub2-domain_API-Security-Device_Policy
Suggests: %{name}-sub2-domain_API-Security-Key_Manager
Suggests: %{name}-sub2-domain_API-Security-OpenSSL
Suggests: %{name}-sub2-domain_API-Security-Privilege_Info
Suggests: %{name}-sub2-domain_API-Security-YACA
%description sub1-domain_API-Security
Tizen block (set of packages) for Group of domain API-Security
%files sub1-domain_API-Security

### TODO - CSR ##
# Summary, description

%package sub2-domain_API-Security-CSR
Summary:    CSR
%description sub2-domain_API-Security-CSR
### TODO ###
# packakge list

%files sub2-domain_API-Security-CSR

### TODO - Device_Policy ##
# Summary, description

%package sub2-domain_API-Security-Device_Policy
Summary:    Device_Policy
%description sub2-domain_API-Security-Device_Policy
### TODO ###
# packakge list

%files sub2-domain_API-Security-Device_Policy

### TODO - Key_Manager ##
# Summary, description

%package sub2-domain_API-Security-Key_Manager
Summary:    Key_Manager
%description sub2-domain_API-Security-Key_Manager
### TODO ###
# packakge list

%files sub2-domain_API-Security-Key_Manager

### TODO - OpenSSL ##
# Summary, description

%package sub2-domain_API-Security-OpenSSL
Summary:    OpenSSL
%description sub2-domain_API-Security-OpenSSL
### TODO ###
# packakge list

%files sub2-domain_API-Security-OpenSSL

### TODO - Privilege_Info ##
# Summary, description

%package sub2-domain_API-Security-Privilege_Info
Summary:    Privilege_Info
%description sub2-domain_API-Security-Privilege_Info
### TODO ###
# packakge list

%files sub2-domain_API-Security-Privilege_Info

### TODO - YACA ##
# Summary, description

%package sub2-domain_API-Security-YACA
Summary:    YACA
%description sub2-domain_API-Security-YACA
### TODO ###
# packakge list

%files sub2-domain_API-Security-YACA

############
## Social ##
############
%package sub1-domain_API-Social
Summary:	Social API Group
Suggests: %{name}-sub2-domain_API-Social-Calendar
Suggests: %{name}-sub2-domain_API-Social-Contacts
Suggests: %{name}-sub2-domain_API-Social-Phonenumber_utils
%description sub1-domain_API-Social
Tizen block (set of packages) for Group of domain API-Social
%files sub1-domain_API-Social

%package sub2-domain_API-Social-Calendar
Summary: Calendar
Requires:libcalendar-service
Requires:calendar-service
Suggests:%{name}-sub2-domain_API-Social-Contacts

%description sub2-domain_API-Social-Calendar
This block supports managing Calendar service.<br>
Syncing Birthday event to calendar could be available when Contacts is selected.<br>
This logic is not available in TV profile.


%files sub2-domain_API-Social-Calendar

%package sub2-domain_API-Social-Contacts
Summary: Contacts
Requires:libcontacts-service
Requires:contacts-service
Requires:session-utils

%description sub2-domain_API-Social-Contacts
This block supports managing Contacts service

%files sub2-domain_API-Social-Contacts

%package sub2-domain_API-Social-Phonenumber_utils
Summary: Phonenumber_utils
Requires:phonenumber-utils

%description sub2-domain_API-Social-Phonenumber_utils
This block supports managing Phonenumber utils

%files sub2-domain_API-Social-Phonenumber_utils

############
## System ##
############
%package sub1-domain_API-System
Summary:	System API Group
Suggests: %{name}-sub2-domain_API-System-Device_Battery
Suggests: %{name}-sub2-domain_API-System-Device_Callback
Suggests: %{name}-sub2-domain_API-System-Device_Haptic
Suggests: %{name}-sub2-domain_API-System-Device_IR
Suggests: %{name}-sub2-domain_API-System-Device_Led
Suggests: %{name}-sub2-domain_API-System-Device_Power
Suggests: %{name}-sub2-domain_API-System-Feedback
Suggests: %{name}-sub2-domain_API-System-Runtime_information
Suggests: %{name}-sub2-domain_API-System-Sensor_Listener_Utility
Suggests: %{name}-sub2-domain_API-System-Sensor_Recorder
Suggests: %{name}-sub2-domain_API-System-Storage
Suggests: %{name}-sub2-domain_API-System-System_Information
Suggests: %{name}-sub2-domain_API-System-System_Settings
Suggests: %{name}-sub2-domain_API-System-T_Trace
Suggests: %{name}-sub2-domain_API-System-USB_Host
Suggests: %{name}-sub2-domain_API-System-dlog
%description sub1-domain_API-System
Tizen block (set of packages) for Group of domain API-System
%files sub1-domain_API-System

### TODO - Device_Battery ##
# Summary, description

%package sub2-domain_API-System-Device_Battery
Summary:    Device_Battery
%description sub2-domain_API-System-Device_Battery
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_Battery

### TODO - Device_Callback ##
# Summary, description

%package sub2-domain_API-System-Device_Callback
Summary:    Device_Callback
%description sub2-domain_API-System-Device_Callback
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_Callback

### TODO - Device_Haptic ##
# Summary, description

%package sub2-domain_API-System-Device_Haptic
Summary:    Device_Haptic
%description sub2-domain_API-System-Device_Haptic
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_Haptic

### TODO - Device_IR ##
# Summary, description

%package sub2-domain_API-System-Device_IR
Summary:    Device_IR
%description sub2-domain_API-System-Device_IR
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_IR

### TODO - Device_Led ##
# Summary, description

%package sub2-domain_API-System-Device_Led
Summary:    Device_Led
%description sub2-domain_API-System-Device_Led
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_Led

### TODO - Device_Power ##
# Summary, description

%package sub2-domain_API-System-Device_Power
Summary:    Device_Power
%description sub2-domain_API-System-Device_Power
### TODO ###
# packakge list

%files sub2-domain_API-System-Device_Power

### TODO - Feedback ##
# Summary, description

%package sub2-domain_API-System-Feedback
Summary:    Feedback
%description sub2-domain_API-System-Feedback
### TODO ###
# packakge list

%files sub2-domain_API-System-Feedback

### TODO - Runtime_information ##
# Summary, description

%package sub2-domain_API-System-Runtime_information
Summary:    Runtime_information
%description sub2-domain_API-System-Runtime_information
### TODO ###
# packakge list

%files sub2-domain_API-System-Runtime_information

### TODO - Sensor_Listener_Utility ##
# Summary, description

%package sub2-domain_API-System-Sensor_Listener_Utility
Summary:    Sensor_Listener_Utility
%description sub2-domain_API-System-Sensor_Listener_Utility
### TODO ###
# packakge list

%files sub2-domain_API-System-Sensor_Listener_Utility

### TODO - Sensor_Recorder ##
# Summary, description

%package sub2-domain_API-System-Sensor_Recorder
Summary:    Sensor_Recorder
%description sub2-domain_API-System-Sensor_Recorder
### TODO ###
# packakge list

%files sub2-domain_API-System-Sensor_Recorder

### TODO - Storage ##
# Summary, description

%package sub2-domain_API-System-Storage
Summary:    Storage
%description sub2-domain_API-System-Storage
### TODO ###
# packakge list

%files sub2-domain_API-System-Storage

### TODO - System_Information ##
# Summary, description

%package sub2-domain_API-System-System_Information
Summary:    System_Information
%description sub2-domain_API-System-System_Information
### TODO ###
# packakge list

%files sub2-domain_API-System-System_Information

### TODO - System_Settings ##
# Summary, description

%package sub2-domain_API-System-System_Settings
Summary:    System_Settings
%description sub2-domain_API-System-System_Settings
### TODO ###
# packakge list

%files sub2-domain_API-System-System_Settings

### TODO - T_Trace ##
# Summary, description

%package sub2-domain_API-System-T_Trace
Summary:    T_Trace
%description sub2-domain_API-System-T_Trace
### TODO ###
# packakge list

%files sub2-domain_API-System-T_Trace

### TODO - USB_Host ##
# Summary, description

%package sub2-domain_API-System-USB_Host
Summary:    USB_Host
%description sub2-domain_API-System-USB_Host
### TODO ###
# packakge list

%files sub2-domain_API-System-USB_Host

### TODO - dlog ##
# Summary, description

%package sub2-domain_API-System-dlog
Summary:    dlog
%description sub2-domain_API-System-dlog
### TODO ###
# packakge list

%files sub2-domain_API-System-dlog


###############
## Telephony ##
###############
%package sub1-domain_API-Telephony
Summary:	Telephony API
Requires: capi-telephony
Requires: telephony-daemon
Requires: libtapi
Requires: libtcore
Requires: tel-plugin-dbus_tapi
Requires: tel-plugin-manager
Requires: tel-plugin-database
Requires: tel-plugin-vconf
Requires: tel-plugin-packetservice
Suggests: tel-plugin-nitz
Suggests: tel-plugin-indicator
Suggests: telephony-syspopup
Suggests: tel-plugin-syspopup
%description sub1-domain_API-Telephony
Tizen block (set of packages) for Group of domain API-Telephony
%files sub1-domain_API-Telephony

########
## UI ##
########
%package sub1-domain_API-UI
Summary:	UI API Group
Suggests: %{name}-sub2-domain_API-UI-Cairo
Suggests: %{name}-sub2-domain_API-UI-Clipboard_History_Manager
Suggests: %{name}-sub2-domain_API-UI-DALi
Suggests: %{name}-sub2-domain_API-UI-EFL_MainLoop
Suggests: %{name}-sub2-domain_API-UI-EFL_NativeUIToolkit
Suggests: %{name}-sub2-domain_API-UI-EFL_ELM_Accessbility
Suggests: %{name}-sub2-domain_API-UI-EFL_Extension
Suggests: %{name}-sub2-domain_API-UI-External_Output_Manager
Suggests: %{name}-sub2-domain_API-UI-FontConfig
Suggests: %{name}-sub2-domain_API-UI-Freetype
Suggests: %{name}-sub2-domain_API-UI-HarfBuzz
Suggests: %{name}-sub2-domain_API-UI-Minicontrol
Suggests: %{name}-sub2-domain_API-UI-SDL_GL
Suggests: %{name}-sub2-domain_API-UI-SDL_Vulkan
Suggests: %{name}-sub2-domain_API-UI-TBM_Surface
Suggests: %{name}-sub2-domain_API-UI-Tizen_WS_Shell
Suggests: %{name}-sub2-domain_API-UI-UI_View_Manager
Suggests: %{name}-sub2-domain_API-UI-Vulkan
Suggests: %{name}-sub2-domain_API-UI-Display_Server
%description sub1-domain_API-UI
Tizen block (set of packages) for Group of domain API-UI
%files sub1-domain_API-UI

### TODO - Cairo ##
# Summary, description

%package sub2-domain_API-UI-Cairo
Summary:    Cairo
%description sub2-domain_API-UI-Cairo
### TODO ###
# packakge list

%files sub2-domain_API-UI-Cairo

### TODO - Clipboard_History_Manager ##
# Summary, description

%package sub2-domain_API-UI-Clipboard_History_Manager
Summary:    Clipboard_History_Manager
%description sub2-domain_API-UI-Clipboard_History_Manager
### TODO ###
# packakge list

%files sub2-domain_API-UI-Clipboard_History_Manager


### TODO - DALi ##
# Summary, description

%package sub2-domain_API-UI-DALi
Summary:    DALi
%description sub2-domain_API-UI-DALi
### TODO ###
# packakge list

%files sub2-domain_API-UI-DALi


### TODO - EFL_MainLoop ##
# Summary, description

%package sub2-domain_API-UI-EFL_MainLoop
Summary:    EFL_MainLoop
%description sub2-domain_API-UI-EFL_MainLoop
### TODO ###
# packakge list

%files sub2-domain_API-UI-EFL_MainLoop


### TODO - EFL_NativeUIToolkit ##
# Summary, description

%package sub2-domain_API-UI-EFL_NativeUIToolkit
Summary:    EFL_NativeUIToolkit
%description sub2-domain_API-UI-EFL_NativeUIToolkit
### TODO ###
# packakge list

%files sub2-domain_API-UI-EFL_NativeUIToolkit


### TODO - EFL_ELM_Accessbility ##
# Summary, description

%package sub2-domain_API-UI-EFL_ELM_Accessbility
Summary:    EFL_ELM_Accessbility
%description sub2-domain_API-UI-EFL_ELM_Accessbility
### TODO ###
# packakge list

%files sub2-domain_API-UI-EFL_ELM_Accessbility


### TODO - EFF_Extension ##
# Summary, description

%package sub2-domain_API-UI-EFL_Extension
Summary:    EFL_Extension
%description sub2-domain_API-UI-EFL_Extension
### TODO ###
# packakge list

%files sub2-domain_API-UI-EFL_Extension


### TODO - External_Output_Manager ##
# Summary, description

%package sub2-domain_API-UI-External_Output_Manager
Summary:    External_Output_Manager
%description sub2-domain_API-UI-External_Output_Manager
### TODO ###
# packakge list

%files sub2-domain_API-UI-External_Output_Manager


### TODO - FontConfig ##
# Summary, description

%package sub2-domain_API-UI-FontConfig
Summary:    FontConfig
%description sub2-domain_API-UI-FontConfig
### TODO ###
# packakge list

%files sub2-domain_API-UI-FontConfig


### TODO - Freetype ##
# Summary, description

%package sub2-domain_API-UI-Freetype
Summary:    Freetype
%description sub2-domain_API-UI-Freetype
### TODO ###
# packakge list

%files sub2-domain_API-UI-Freetype


### TODO - HarfBuzz ##
# Summary, description

%package sub2-domain_API-UI-HarfBuzz
Summary:    HarfBuzz
%description sub2-domain_API-UI-HarfBuzz
### TODO ###
# packakge list

%files sub2-domain_API-UI-HarfBuzz


### TODO - Minicontrol ##
# Summary, description

%package sub2-domain_API-UI-Minicontrol
Summary:    Minicontrol
%description sub2-domain_API-UI-Minicontrol
### TODO ###
# packakge list

%files sub2-domain_API-UI-Minicontrol


### TODO - SDL_GL ##
# Summary, description

%package sub2-domain_API-UI-SDL_GL
Summary:    SDL_GL
%description sub2-domain_API-UI-SDL_GL
### TODO ###
# packakge list

%files sub2-domain_API-UI-SDL_GL


### TODO - SDL_Vulkan ##
# Summary, description

%package sub2-domain_API-UI-SDL_Vulkan
Summary:    SDL_Vulkan
%description sub2-domain_API-UI-SDL_Vulkan
### TODO ###
# packakge list

%files sub2-domain_API-UI-SDL_Vulkan


### TODO - TBM_Surface ##
# Summary, description

%package sub2-domain_API-UI-TBM_Surface
Summary:    TBM_Surface
%description sub2-domain_API-UI-TBM_Surface
### TODO ###
# packakge list

%files sub2-domain_API-UI-TBM_Surface


### TODO - Tizen_WS_Shell ##
# Summary, description

%package sub2-domain_API-UI-Tizen_WS_Shell
Summary:    Tizen_WS_Shell
%description sub2-domain_API-UI-Tizen_WS_Shell
### TODO ###
# packakge list

%files sub2-domain_API-UI-Tizen_WS_Shell


### TODO - UI_View_Manager ##
# Summary, description

%package sub2-domain_API-UI-UI_View_Manager
Summary:    UI_View_Manager
%description sub2-domain_API-UI-UI_View_Manager
### TODO ###
# packakge list

%files sub2-domain_API-UI-UI_View_Manager


### TODO - Vulkan ##
# Summary, description

%package sub2-domain_API-UI-Vulkan
Summary:    Vulkan
%description sub2-domain_API-UI-Vulkan
### TODO ###
# packakge list

%files sub2-domain_API-UI-Vulkan


### TODO - Display_Server ##
# Summary, description

%package sub2-domain_API-UI-Display_Server
Summary:    Display_Server
Requires:   enlightenment
#Profiles
Suggests:   e-tizen-data-profile_common
Suggests:   e-tizen-data-profile_mobile
Suggests:   e-tizen-data-profile_wearable
Suggests:   e-tizen-data-profile_tv
Suggests:   e-tizen-data-profile_ivi

#DisplayHAL-TBM
Suggests:   libtbm-sprd
Suggests:   libtbm-exynos
Suggests:   libtbm-exynos-tgm
Suggests:   libtbm-nexell
Suggests:   libtbm-vc4
Suggests:   libtbm-vigs
Suggests:   libtbm-dumb

#DisplayHAL-TDM
Suggests:   libtdm-sprd
Suggests:   libtdm-exynos
Suggests:   libtdm-exynos-deconfb
Suggests:   libtdm-drm
Suggests:   libtdm-vc4

%description sub2-domain_API-UI-Display_Server
Tizen block (set of packages) for Group of Display Server
Display Server Block is core block for UI. It contains the wayland display server,
modules for server and display HAL for target.
There are three categories to choose.
1. Server config for each profile
   There are 5 profiles(common, mobile, wearable, tv, ivi).
2. Tizen Buffer Manager(TBM) Backend
3. Tizen Display Manager(TDM) Backend
   You should choose a tbm and tdm backend for your target.
   For example, if you want make binary for TM1, you can choose the libtbm-sprd and the libtdm-sprd

%files sub2-domain_API-UI-Display_Server


#########
## UIX ##
#########
%package sub1-domain_API-UIX
Summary:	UIX API Group
Suggests: %{name}-sub2-domain_API-UIX-Input_Method
Suggests: %{name}-sub2-domain_API-UIX-STT
Suggests: %{name}-sub2-domain_API-UIX-TTS
Suggests: %{name}-sub2-domain_API-UIX-Voice_control
Suggests: %{name}-sub2-domain_API-UIX-Voice_control_elementary
%description sub1-domain_API-UIX
Tizen block (set of packages) for Group of domain API-UIX
%files sub1-domain_API-UIX

### TODO - Input_Method ##
# Summary, description

%package sub2-domain_API-UIX-Input_Method
Summary:    Input_Method
%description sub2-domain_API-UIX-Input_Method
### TODO ###
# packakge list

%files sub2-domain_API-UIX-Input_Method

### TODO - STT ##
# Summary, description

%package sub2-domain_API-UIX-STT
Summary:    STT
%description sub2-domain_API-UIX-STT
### TODO ###
# packakge list

%files sub2-domain_API-UIX-STT


### TODO - TTS ##
# Summary, description

%package sub2-domain_API-UIX-TTS
Summary:    TTS
%description sub2-domain_API-UIX-TTS
### TODO ###
# packakge list

%files sub2-domain_API-UIX-TTS


### TODO - Voice_control ##
# Summary, description

%package sub2-domain_API-UIX-Voice_control
Summary:    Voice_control
%description sub2-domain_API-UIX-Voice_control
### TODO ###
# packakge list

%files sub2-domain_API-UIX-Voice_control


### TODO - Voice_control_elementary ##
# Summary, description

%package sub2-domain_API-UIX-Voice_control_elementary
Summary:    Voice_control_elementary
%description sub2-domain_API-UIX-Voice_control_elementary
### TODO ###
# packakge list

%files sub2-domain_API-UIX-Voice_control_elementary


#########
## Web ##
#########
%package sub1-domain_API-Web
Summary:	Web API Group
Suggests: %{name}-sub2-domain_API-Web-json_Glib
Suggests: %{name}-sub2-domain_API-Web-WebView
%description sub1-domain_API-Web
Tizen block (set of packages) for Group of domain API-Web
%files sub1-domain_API-Web

### TODO - json_Glib ##
# Summary, description

%package sub2-domain_API-Web-json_Glib
Summary:    json_Glib
%description sub2-domain_API-Web-json_Glib
### TODO ###
# packakge list

%files sub2-domain_API-Web-json_Glib

### TODO - WebView ##
# Summary, description

%package sub2-domain_API-Web-WebView
Summary:    WebView
%description sub2-domain_API-Web-WebView
### TODO ###
# packakge list

%files sub2-domain_API-Web-WebView