summaryrefslogtreecommitdiff
path: root/packaging/bundle.spec
blob: fb7f2ce0b136d3fce15e50bf9bd40430540ebe73 (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
Name:       bundle
Summary:    String key-val dictionary ADT
Version:    0.12.0
Release:    0
Group:      System/Libraries
License:    Apache-2.0
Source0:        bundle-%{version}.tar.gz
Source1001:     bundle.manifest
Source1002:     parcel.manifest
BuildRequires:  cmake
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(dlog)
BuildRequires:  pkgconfig(capi-base-common)
BuildRequires:  pkgconfig(json-glib-1.0)
BuildRequires:  pkgconfig(sqlite3)
BuildRequires:  pkgconfig(gmock)

%if 0%{?gcov:1}
BuildRequires:  lcov
BuildRequires:  zip
%endif

%description
Simple string key-val dictionary ADT

%package devel
Summary:    String key-val dictionary ADT (devel)
Group:      Development/Libraries
Requires:   %{name} = %{version}-%{release}

%description devel
Simple string key-val dictionary ADT (devel)

#################################################
# unittests
#################################################
%package unittests
Summary:    GTest for bundle
Group:      Development/Libraries

%description unittests
GTest for bundle

#################################################
# gcov
#################################################
%if 0%{?gcov:1}
%package gcov
Summary:    Simple string key-val dictionary ADT (gcov)
Group:      Application Framework/Testing

%description gcov
Simple string key-val dictionary ADT gcov objects
%endif

#################################################
## parcel
#################################################
%package -n parcel
Summary:    Parcel Library
Group:      Development/Libraries

%description -n parcel
Parcel Library

%package -n parcel-devel
Summary:    Parcel Library (devel)
Group:      Development/Libraries
Requires:   parcel = %{version}-%{release}

%description -n parcel-devel
Parcel Library (devel)

#################################################
# parcel-unittests
#################################################
%package -n parcel-unittests
Summary:    GTest for parcel
Group:      Development/Libraries

%description -n parcel-unittests
GTest for parcel

#################################################
## tizen-database-devel
#################################################
%package -n tizen-database-devel
Summary:    Tizen-database Library (devel)
Group:      Development/Libraries

%description -n tizen-database-devel
Tizen-database Library (devel)

#################################################
# tizen-database-unittests
#################################################
%package -n tizen-database-unittests
Summary:    GTest for tizen-database
Group:      Development/Libraries

%description -n tizen-database-unittests
GTest for tizen-database

%prep
%setup -q -n %{name}-%{version}
cp %{SOURCE1001} .
cp %{SOURCE1002} .

%build
%if 0%{?gcov:1}
export CFLAGS+=" -fprofile-arcs -ftest-coverage"
export CXXFLAGS+=" -fprofile-arcs -ftest-coverage"
export FFLAGS+=" -fprofile-arcs -ftest-coverage"
export LDFLAGS+=" -lgcov"
%endif

%cmake -DVERSION=%{version} .
%__make %{?_smp_mflags}

%check
ctest --verbose %{?_smp_mflags}
%if 0%{?gcov:1}
lcov -c --ignore-errors graph --no-external -b . -d . -o %{name}.info
genhtml %{name}.info -o out --legend --show-details
%endif

%install
%make_install

%if 0%{?gcov:1}
builddir=$(basename $PWD)
gcno_obj_dir=%{buildroot}%{_datadir}/gcov/obj/%{name}/"$builddir"
mkdir -p "$gcno_obj_dir"
find . -name '*.gcno' -exec cp --parents '{}' "$gcno_obj_dir" ';'
%endif

cat << EOF > run-unittest.sh
#!/bin/sh
GCOV_PATH="/tmp/home/abuild/rpmbuild/BUILD"
PAKCAGE="%{name}-%{version}"

set_perm() {
    ## Sets the permission for applications
    /usr/bin/find /tmp/home/ -print | /usr/bin/xargs -n1 /usr/bin/chsmack -a "System::Run" &> /dev/null
    /usr/bin/find /tmp/home/ -print | /usr/bin/xargs -n1 /usr/bin/chsmack -a "System::Run" -t &> /dev/null
    /usr/bin/chmod -R 777 /tmp/home/
}

setup() {
    echo "setup start"
    /usr/bin/mkdir -p "${GCOV_PATH}/${PACKAGE}"
    set_perm
}

test_main() {
    echo "test_main start"
    export "GCOV_PREFIX=/tmp"
    /usr/bin/bundle_unittests
}

teardown() {
    echo "teardown start"
    set_perm
}

main() {
    setup
    test_main
    teardown
}

main "\$*"
EOF

mkdir -p %{buildroot}%{_bindir}/tizen-unittests/%{name}
install -m 0755 run-unittest.sh %{buildroot}%{_bindir}/tizen-unittests/%{name}/

cat << EOF > run-parcel-unittest.sh
#!/bin/sh
GCOV_PATH="/tmp/home/abuild/rpmbuild/BUILD"
PAKCAGE="parcel-%{version}"

set_perm() {
    ## Sets the permission for applications
    /usr/bin/find /tmp/home/ -print | /usr/bin/xargs -n1 /usr/bin/chsmack -a "System::Run" &> /dev/null
    /usr/bin/find /tmp/home/ -print | /usr/bin/xargs -n1 /usr/bin/chsmack -a "System::Run" -t &> /dev/null
    /usr/bin/chmod -R 777 /tmp/home/
}

setup() {
    echo "setup start"
    /usr/bin/mkdir -p "${GCOV_PATH}/${PACKAGE}"
    set_perm
}

test_main() {
    echo "test_main start"
    export "GCOV_PREFIX=/tmp"
    /usr/bin/parcel_unittests
}

teardown() {
    echo "teardown start"
    set_perm
}

main() {
    setup
    test_main
    teardown
}

main "\$*"
EOF

mkdir -p %{buildroot}%{_bindir}/tizen-unittests/parcel
install -m 0755 run-parcel-unittest.sh %{buildroot}%{_bindir}/tizen-unittests/parcel/run-unittest.sh

mkdir -p %{buildroot}%{_bindir}/tizen-unittests/tizen-database
install -m 0755 run-parcel-unittest.sh %{buildroot}%{_bindir}/tizen-unittests/tizen-database/run-unittest.sh

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%post -n parcel
/sbin/ldconfig

%postun -n parcel
/sbin/ldconfig

%post unittests
%if 0%{?gcov:1}
%{_bindir}/bundle_unittests
%endif

%files
%manifest %{name}.manifest
%defattr(-,root,root,-)
%{_libdir}/libbundle.so.*
%license LICENSE

%files devel
%manifest %{name}.manifest
%defattr(-,root,root,-)
%{_includedir}/*.h
%{_libdir}/pkgconfig/bundle.pc
%{_libdir}/libbundle.so

#################################################
# unittests
#################################################
%files unittests
%{_bindir}/bundle_unittests
%{_bindir}/tizen-unittests/%{name}/run-unittest.sh

#################################################
# bundle-gcov
#################################################
%if 0%{?gcov:1}
%files gcov
%{_datadir}/gcov/obj/*
%endif

#################################################
# parcel
#################################################
%files -n parcel
%manifest parcel.manifest
%license LICENSE
%{_libdir}/libparcel.so.*

%files -n parcel-devel
%manifest parcel.manifest
%{_includedir}/*
%{_libdir}/pkgconfig/parcel.pc
%{_libdir}/libparcel.so

%files -n parcel-unittests
%{_bindir}/parcel_unittests
%{_bindir}/tizen-unittests/parcel/run-unittest.sh

#################################################
# tizen-database-devel
#################################################
%files -n tizen-database-devel
%{_includedir}/tizen-database/*
%{_libdir}/pkgconfig/tizen-database.pc

%files -n tizen-database-unittests
%{_bindir}/tizen-database_unittests
%{_bindir}/tizen-unittests/tizen-database/run-unittest.sh