forked from gem/oq-hazardlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packager.sh
executable file
·562 lines (481 loc) · 17.3 KB
/
packager.sh
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
#!/bin/bash
# export PS4='+${BASH_SOURCE}:${LINENO}:${FUNCNAME[0]}: '
if [ $GEM_SET_DEBUG ]; then
set -x
fi
set -e
GEM_GIT_REPO="git://github.com/gem"
GEM_GIT_PACKAGE="oq-hazardlib"
GEM_DEB_PACKAGE="python-${GEM_GIT_PACKAGE}"
GEM_DEB_SERIE="master"
if [ -z "$GEM_DEB_REPO" ]; then
GEM_DEB_REPO="$HOME/gem_ubuntu_repo"
fi
if [ -z "$GEM_DEB_MONOTONE" ]; then
GEM_DEB_MONOTONE="$HOME/monotone"
fi
GEM_BUILD_ROOT="build-deb"
GEM_BUILD_SRC="${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}"
GEM_ALWAYS_YES=false
if [ "$GEM_EPHEM_CMD" = "" ]; then
GEM_EPHEM_CMD="lxc-start-ephemeral"
fi
GEM_EPHEM_NAME="ubuntu-lxc-eph"
NL="
"
TB=" "
#
# functions
sig_hand () {
trap ERR
echo "signal trapped"
if [ "$lxc_name" != "" ]; then
set +e
echo "Destroying [$lxc_name] lxc"
upper="$(mount | grep "${lxc_name}.*upperdir" | sed 's@.*upperdir=@@g;s@,.*@@g')"
if [ -f "${upper}.dsk" ]; then
loop_dev="$(sudo losetup -a | grep "(${upper}.dsk)$" | cut -d ':' -f1)"
fi
sudo lxc-stop -n $lxc_name
sudo umount /var/lib/lxc/$lxc_name/rootfs
sudo umount /var/lib/lxc/$lxc_name/ephemeralbind
echo "$upper" | grep -q '^/tmp/'
if [ $? -eq 0 ]; then
sudo umount "$upper"
sudo rm -r "$upper"
if [ "$loop_dev" != "" ]; then
sudo losetup -d "$loop_dev"
if [ -f "${upper}.dsk" ]; then
sudo rm -f "${upper}.dsk"
fi
fi
fi
sudo lxc-destroy -n $lxc_name
fi
if [ -f /tmp/packager.eph.$$.log ]; then
rm /tmp/packager.eph.$$.log
fi
exit 1
}
#
# repo_id_get - retry git repo from local git remote command
repo_id_get () {
local repo_name repo_line
if ! repo_name="$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null)"; then
repo_line="$(git remote -vv | grep "^origin[ ${TB}]" | grep '(fetch)$')"
if [ -z "$repo_line" ]; then
echo "no remote repository associated with the current branch, exit 1"
exit 1
fi
else
repo_name="$(echo "$repo_name" | sed 's@/.*@@g')"
repo_line="$(git remote -vv | grep "^${repo_name}[ ${TB}].*(fetch)\$")"
fi
if echo "$repo_line" | grep -q '[0-9a-z_-\.]\+@[a-z0-9_-\.]\+:'; then
repo_id="$(echo "$repo_line" | sed "s/^[^ ${TB}]\+[ ${TB}]\+[^ ${TB}@]\+@//g;s/.git[ ${TB}]\+(fetch)$/.git/g;s@/${GEM_GIT_PACKAGE}.git@@g;s@:@/@g")"
else
repo_id="$(echo "$repo_line" | sed "s/^[^ ${TB}]\+[ ${TB}]\+git:\/\///g;s/.git[ ${TB}]\+(fetch)$/.git/g;s@/${GEM_GIT_PACKAGE}.git@@g")"
fi
echo "$repo_id"
}
#
# mksafedir <dname> - try to create a directory and rise an alert if it already exists
# <dname> name of the directory to create
#
mksafedir () {
local dname
dname="$1"
if [ "$GEM_ALWAYS_YES" != "true" -a -d "$dname" ]; then
echo "$dname already exists"
echo "press Enter to continue or CTRL+C to abort"
read a
fi
rm -rf $dname
mkdir -p $dname
}
usage () {
local ret
ret=$1
echo
echo "USAGE:"
echo " $0 [-D|--development] [-S--sources_copy] [-B|--binaries] [-U|--unsigned] [-R|--repository] build debian source package."
echo " if -S is present try to copy sources to <GEM_DEB_MONOTONE>/source directory"
echo " if -B is present binary package is build too."
echo " if -R is present update the local repository to the new current package"
echo " if -D is present a package with self-computed version is produced."
echo " if -U is present no sign are perfomed using gpg key related to the mantainer."
echo " $0 pkgtest <branch-name> run packaging tests into an ubuntu lxc environment"
echo " $0 devtest <branch-name> run development tests into an ubuntu lxc environment"
echo
exit $ret
}
_wait_ssh () {
local lxc_ip="$1"
for i in $(seq 1 20); do
if ssh $lxc_ip "echo begin"; then
break
fi
sleep 2
done
if [ $i -eq 20 ]; then
return 1
fi
}
_devtest_innervm_run () {
local i lxc_ip="$1"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh $lxc_ip "sudo apt-get update"
ssh $lxc_ip "sudo apt-get upgrade -y"
pkgs_list="$(deps_list debian/control)"
ssh $lxc_ip "sudo apt-get install -y ${pkgs_list}"
# TODO: version check
git archive --prefix ${GEM_GIT_PACKAGE}/ HEAD | ssh $lxc_ip "tar xv"
ssh $lxc_ip "cd $GEM_GIT_PACKAGE ; nosetests -v --with-doctest --with-coverage --cover-package=openquake.hazardlib --with-xunit"
scp "$lxc_ip:$GEM_GIT_PACKAGE/nosetests.xml" .
trap ERR
return
}
_pkgtest_innervm_run () {
local lxc_ip="$1"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh $lxc_ip "sudo apt-get update"
ssh $lxc_ip "sudo apt-get -y upgrade"
gpg -a --export | ssh $lxc_ip "sudo apt-key add -"
# install package to manage repository properly
ssh $lxc_ip "sudo apt-get install -y python-software-properties"
# create a remote "local repo" where place $GEM_DEB_PACKAGE package
ssh $lxc_ip mkdir -p repo/${GEM_DEB_PACKAGE}
scp build-deb/${GEM_DEB_PACKAGE}_*.deb build-deb/${GEM_DEB_PACKAGE}_*.changes \
build-deb/${GEM_DEB_PACKAGE}_*.dsc build-deb/${GEM_DEB_PACKAGE}_*.tar.gz \
build-deb/Packages* build-deb/Sources* build-deb/Release* $lxc_ip:repo/${GEM_DEB_PACKAGE}
ssh $lxc_ip "sudo apt-add-repository \"deb file:/home/ubuntu/repo/${GEM_DEB_PACKAGE} ./\""
ssh $lxc_ip "sudo apt-get update"
# packaging related tests (install, remove, purge, install, reinstall)
ssh $lxc_ip "sudo apt-get install -y ${GEM_DEB_PACKAGE}"
ssh $lxc_ip "sudo apt-get remove -y ${GEM_DEB_PACKAGE}"
ssh $lxc_ip "sudo apt-get install -y ${GEM_DEB_PACKAGE}"
ssh $lxc_ip "sudo apt-get install --reinstall -y ${GEM_DEB_PACKAGE}"
trap ERR
return
}
deps_list() {
local oldifs out_list i filename="$1" build_only="$2"
oldifs="$IFS"
IFS=','
out_list=""
if [ "$build_only" = "y" ]; then
i_all="$(cat "$filename" | grep "^Build-Depends:" | sed 's/^Build-Depends: //g')"
else
i_all="$(cat "$filename" | grep "^\(Build-\)\?Depends:" | sed 's/^\(Build-\)\?Depends: //g')"
fi
for i in $i_all ; do
item="$(echo "$i" | sed 's/^ \+//g;s/ \+$//g')"
pkg_name="$(echo "${item} " | cut -d ' ' -f 1)"
pkg_vers="$(echo "${item} " | cut -d ' ' -f 2)"
echo "[$pkg_name][$pkg_vers]" >&2
if echo "$pkg_name" | grep -q "^\${" ; then
continue
fi
if [ "$out_list" == "" ]; then
out_list="$pkg_name"
else
out_list="$out_list $pkg_name"
fi
done
IFS="$oldifs"
echo "$out_list"
return 0
}
_lxc_name_and_ip_get()
{
local filename="$1" i e
i=-1
e=-1
for i in $(seq 1 40); do
sleep 2
if grep -q "sudo lxc-console -n $GEM_EPHEM_NAME" /tmp/packager.eph.$$.log 2>&1 ; then
lxc_name="$(grep "sudo lxc-console -n $GEM_EPHEM_NAME" /tmp/packager.eph.$$.log | sed "s/.*sudo lxc-console -n \($GEM_EPHEM_NAME\)/\1/g")"
for e in $(seq 1 40); do
sleep 2
if grep -q "$lxc_name" /var/lib/misc/dnsmasq.leases ; then
lxc_ip="$(grep " $lxc_name " /var/lib/misc/dnsmasq.leases | cut -d ' ' -f 3)"
break
fi
done
break
fi
done
if [ $i -eq 40 -o $e -eq 40 ]; then
return 1
fi
echo "SUCCESSFULY RUNNED $lxc_name ($lxc_ip)"
return 0
}
devtest_run () {
sudo echo
sudo ${GEM_EPHEM_CMD} -o $GEM_EPHEM_NAME -d 2>&1 | tee /tmp/packager.eph.$$.log &
_lxc_name_and_ip_get /tmp/packager.eph.$$.log
_wait_ssh $lxc_ip
set +e
_devtest_innervm_run $lxc_ip
inner_ret=$?
sudo lxc-shutdown -n $lxc_name -w -t 10
set -e
if [ -f /tmp/packager.eph.$$.log ]; then
rm /tmp/packager.eph.$$.log
fi
# if [ $inner_ret -ne 0 ]; then
return $inner_ret
# fi
}
pkgtest_run () {
local i e branch_id="$1"
#
# run build of package
if [ -d build-deb ]; then
if [ ! -f build-deb/${GEM_DEB_PACKAGE}_*.deb ]; then
echo "'build-deb' directory already exists but .deb file package was not found"
return 1
fi
else
$0 $BUILD_FLAGS
fi
#
# prepare repo and install $GEM_DEB_PACKAGE package
cd build-deb
dpkg-scanpackages . /dev/null >Packages
cat Packages | gzip -9c > Packages.gz
dpkg-scansources . > Sources
cat Sources | gzip > Sources.gz
cat > Release <<EOF
Archive: precise
Origin: Ubuntu
Label: Local Ubuntu Precise Repository
Architecture: amd64
MD5Sum:
EOF
printf ' '$(md5sum Packages | cut --delimiter=' ' --fields=1)' %16d Packages\n' \
$(wc --bytes Packages | cut --delimiter=' ' --fields=1) >> Release
printf ' '$(md5sum Packages.gz | cut --delimiter=' ' --fields=1)' %16d Packages.gz\n' \
$(wc --bytes Packages.gz | cut --delimiter=' ' --fields=1) >> Release
printf ' '$(md5sum Sources | cut --delimiter=' ' --fields=1)' %16d Sources\n' \
$(wc --bytes Sources | cut --delimiter=' ' --fields=1) >> Release
printf ' '$(md5sum Sources.gz | cut --delimiter=' ' --fields=1)' %16d Sources.gz\n' \
$(wc --bytes Sources.gz | cut --delimiter=' ' --fields=1) >> Release
gpg --armor --detach-sign --output Release.gpg Release
cd -
sudo echo
sudo ${GEM_EPHEM_CMD} -o $GEM_EPHEM_NAME -d 2>&1 | tee /tmp/packager.eph.$$.log &
_lxc_name_and_ip_get /tmp/packager.eph.$$.log
_wait_ssh $lxc_ip
set +e
_pkgtest_innervm_run $lxc_ip
inner_ret=$?
sudo lxc-shutdown -n $lxc_name -w -t 10
set -e
if [ -f /tmp/packager.eph.$$.log ]; then
rm /tmp/packager.eph.$$.log
fi
if [ $inner_ret -ne 0 ]; then
return $inner_ret
fi
if [ $BUILD_REPOSITORY -eq 1 -a -d "${GEM_DEB_REPO}" ]; then
if [ "$branch_id" != "" ]; then
repo_id="$(repo_id_get)"
if [ "git://$repo_id" != "$GEM_GIT_REPO" -o "$branch_id" != "master" ]; then
CUSTOM_SERIE="devel/$(echo "$repo_id" | sed "s@/@__@g;s/\./-/g")__${branch_id}"
if [ "$CUSTOM_SERIE" != "" ]; then
GEM_DEB_SERIE="$CUSTOM_SERIE"
fi
fi
fi
mkdir -p "${GEM_DEB_REPO}/${GEM_DEB_SERIE}"
repo_tmpdir="$(mktemp -d "${GEM_DEB_REPO}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.XXXXXX")"
# if the monotone directory exists and is the "gem" repo and is the "master" branch then ...
if [ -d "${GEM_DEB_MONOTONE}/binary" ]; then
if [ "git://$repo_id" == "$GEM_GIT_REPO" -a "$branch_id" == "master" ]; then
cp build-deb/${GEM_DEB_PACKAGE}_*.deb build-deb/${GEM_DEB_PACKAGE}_*.changes \
build-deb/${GEM_DEB_PACKAGE}_*.dsc build-deb/${GEM_DEB_PACKAGE}_*.tar.gz \
"${GEM_DEB_MONOTONE}/binary"
fi
fi
cp build-deb/${GEM_DEB_PACKAGE}_*.deb build-deb/${GEM_DEB_PACKAGE}_*.changes \
build-deb/${GEM_DEB_PACKAGE}_*.dsc build-deb/${GEM_DEB_PACKAGE}_*.tar.gz \
build-deb/Packages* build-deb/Sources* build-deb/Release* "${repo_tmpdir}"
if [ "${GEM_DEB_REPO}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}" ]; then
rm -rf "${GEM_DEB_REPO}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}"
fi
mv "${repo_tmpdir}" "${GEM_DEB_REPO}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}"
echo "The package is saved here: ${GEM_DEB_REPO}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}"
fi
# TODO
# app related tests (run demos)
return
}
#
# MAIN
#
BUILD_SOURCES_COPY=0
BUILD_BINARIES=0
BUILD_REPOSITORY=0
BUILD_DEVEL=0
BUILD_UNSIGN=0
BUILD_FLAGS=""
trap sig_hand SIGINT SIGTERM
# args management
while [ $# -gt 0 ]; do
case $1 in
-D|--development)
BUILD_DEVEL=1
if [ "$DEBFULLNAME" = "" -o "$DEBEMAIL" = "" ]; then
echo
echo "error: set DEBFULLNAME and DEBEMAIL environment vars and run again the script"
echo
exit 1
fi
;;
-S|--sources_copy)
BUILD_SOURCES_COPY=1
;;
-B|--binaries)
BUILD_BINARIES=1
;;
-R|--repository)
BUILD_REPOSITORY=1
;;
-U|--unsigned)
BUILD_UNSIGN=1
;;
-h|--help)
usage 0
break
;;
devtest)
# Sed removes 'origin/' from the branch name
devtest_run $(echo "$2" | sed 's@.*/@@g')
exit $?
break
;;
pkgtest)
# Sed removes 'origin/' from the branch name
pkgtest_run $(echo "$2" | sed 's@.*/@@g')
exit $?
break
;;
*)
usage 1
break
;;
esac
BUILD_FLAGS="$BUILD_FLAGS $1"
shift
done
DPBP_FLAG=""
if [ $BUILD_BINARIES -eq 0 ]; then
DPBP_FLAG="-S"
fi
if [ $BUILD_UNSIGN -eq 1 ]; then
DPBP_FLAG="$DPBP_FLAG -us -uc"
fi
mksafedir "$GEM_BUILD_ROOT"
mksafedir "$GEM_BUILD_SRC"
git archive HEAD | (cd "$GEM_BUILD_SRC" ; tar xv)
# NOTE: if in the future we need modules we need to execute the following commands
#
# git submodule init
# git submodule update
## "submodule foreach" vars: $name, $path, $sha1 and $toplevel:
# git submodule foreach "git archive HEAD | (cd \"\${toplevel}/${GEM_BUILD_SRC}/\$path\" ; tar xv ) "
cd "$GEM_BUILD_SRC"
# date
dt="$(date +%s)"
# version info from openquake/hazardlib/__init__.py
ini_vers="$(sed 's/^[ ]*__version__[ ]*=[ ]*["'"'"']\([^"'"'"']*\)/\1/g' openquake/hazardlib/__init__.py)"
ini_maj="$(echo "$ini_vers" | sed -n 's/^\([0-9]\+\).*/\1/gp')"
ini_min="$(echo "$ini_vers" | sed -n 's/^[0-9]\+\.\([0-9]\+\).*/\1/gp')"
ini_bfx="$(echo "$ini_vers" | sed -n 's/^[0-9]\+\.[0-9]\+\.\([0-9]\+\).*/\1/gp')"
ini_suf="" # currently not included into the version array structure
# version info from debian/changelog
h="$(head -n1 debian/changelog)"
# pkg_vers="$(echo "$h" | cut -d ' ' -f 2 | cut -d '(' -f 2 | cut -d ')' -f 1 | sed -n 's/[-+].*//gp')"
pkg_name="$(echo "$h" | cut -d ' ' -f 1)"
pkg_vers="$(echo "$h" | cut -d ' ' -f 2 | cut -d '(' -f 2 | cut -d ')' -f 1)"
pkg_rest="$(echo "$h" | cut -d ' ' -f 3-)"
pkg_maj="$(echo "$pkg_vers" | sed -n 's/^\([0-9]\+\).*/\1/gp')"
pkg_min="$(echo "$pkg_vers" | sed -n 's/^[0-9]\+\.\([0-9]\+\).*/\1/gp')"
pkg_bfx="$(echo "$pkg_vers" | sed -n 's/^[0-9]\+\.[0-9]\+\.\([0-9]\+\).*/\1/gp')"
pkg_deb="$(echo "$pkg_vers" | sed -n 's/^[0-9]\+\.[0-9]\+\.[0-9]\+\(-[^+]\+\).*/\1/gp')"
pkg_suf="$(echo "$pkg_vers" | sed -n 's/^[0-9]\+\.[0-9]\+\.[0-9]\+-[^+]\+\(+.*\)/\1/gp')"
# echo "pkg [$pkg_vers] [$pkg_maj] [$pkg_min] [$pkg_bfx] [$pkg_deb] [$pkg_suf]"
if [ $BUILD_DEVEL -eq 1 ]; then
hash="$(git log --pretty='format:%h' -1)"
mv debian/changelog debian/changelog.orig
if [ "$pkg_maj" = "$ini_maj" -a "$pkg_min" = "$ini_min" -a \
"$pkg_bfx" = "$ini_bfx" -a "$pkg_deb" != "" ]; then
deb_ct="$(echo "$pkg_deb" | sed 's/^-//g')"
pkg_deb="-$(( deb_ct + 1 ))"
else
pkg_maj="$ini_maj"
pkg_min="$ini_min"
pkg_bfx="$ini_bfx"
pkg_deb="-1"
fi
( echo "$pkg_name (${pkg_maj}.${pkg_min}.${pkg_bfx}${pkg_deb}+dev${dt}-${hash}) $pkg_rest"
echo
echo " * Development version from $hash commit"
echo
echo " -- $DEBFULLNAME <$DEBEMAIL> $(date -d@$dt -R)"
echo
) > debian/changelog
cat debian/changelog.orig >> debian/changelog
rm debian/changelog.orig
fi
if [ "$ini_maj" != "$pkg_maj" -o \
"$ini_min" != "$pkg_min" -o \
"$ini_bfx" != "$pkg_bfx" ]; then
echo
echo "Versions are not aligned"
echo " init: ${ini_maj}.${ini_min}.${ini_bfx}"
echo " pkg: ${pkg_maj}.${pkg_min}.${pkg_bfx}"
echo
echo "press [enter] to continue, [ctrl+c] to abort"
read a
fi
# the following unexecuted block of code is a flag to identify where and how modifications can
# be performed from sources to package
if [ 0 -eq 1 ]; then
sed -i "s/^\([ ]*\)[^)]*\() # release date .*\)/\1${dt}\2/g" openquake/__init__.py
# mods pre-packaging
mv LICENSE openquake
mv README.txt openquake/README
mv celeryconfig.py openquake
mv openquake.cfg openquake
mv bin/openquake bin/oqscript.py
mv bin openquake/bin
rm -rf $(find demos -mindepth 1 -maxdepth 1 | egrep -v 'demos/simple_fault_demo_hazard|demos/event_based_hazard|demos/_site_model')
fi
dpkg-buildpackage $DPBP_FLAG
cd -
# if the monotone directory exists and is the "gem" repo and is the "master" branch then ...
if [ -d "${GEM_DEB_MONOTONE}/source" -a $BUILD_SOURCES_COPY -eq 1 ]; then
cp build-deb/${GEM_DEB_PACKAGE}_*.changes \
build-deb/${GEM_DEB_PACKAGE}_*.dsc build-deb/${GEM_DEB_PACKAGE}_*.tar.gz \
"${GEM_DEB_MONOTONE}/source"
fi
if [ $BUILD_DEVEL -ne 1 ]; then
exit 0
fi
#
# DEVEL EXTRACTION OF SOURCES
if [ -z "$GEM_SRC_PKG" ]; then
echo "env var GEM_SRC_PKG not set, exit"
exit 0
fi
GEM_BUILD_PKG="${GEM_SRC_PKG}/pkg"
mksafedir "$GEM_BUILD_PKG"
GEM_BUILD_EXTR="${GEM_SRC_PKG}/extr"
mksafedir "$GEM_BUILD_EXTR"
cp ${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}_*.deb $GEM_BUILD_PKG
cd "$GEM_BUILD_EXTR"
dpkg -x $GEM_BUILD_PKG/${GEM_DEB_PACKAGE}_*.deb .
dpkg -e $GEM_BUILD_PKG/${GEM_DEB_PACKAGE}_*.deb