forked from daid/LegacyCura
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.sh
executable file
·736 lines (631 loc) · 23.6 KB
/
package.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
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
#!/usr/bin/env bash
set -e
set -u
# This script is to package the Cura package for Windows/Linux and Mac OS X
# This script should run under Linux and Mac OS X, as well as Windows with Cygwin.
#############################
# CONFIGURATION
#############################
##Select the build target
BUILD_TARGET=${1:-none}
#BUILD_TARGET=win32
#BUILD_TARGET=darwin
#BUILD_TARGET=debian_i386
#BUILD_TARGET=debian_amd64
#BUILD_TARGET=debian_armhf
#BUILD_TARGET=freebsd
##Do we need to create the final archive
ARCHIVE_FOR_DISTRIBUTION=1
##Which version name are we appending to the final archive
##Version
version_file="./Cura/version"
while IFS= read -r line
do
export BUILD_VERSION="$line"
done <"$version_file"
TARGET_DIR=Cura-${BUILD_VERSION}-${BUILD_TARGET}
##Git commit
GIT_HASH=$(git rev-parse --short=4 HEAD)
export FULL_VERSION=${BUILD_VERSION}-${GIT_HASH}
##Which versions of external programs to use
WIN_PORTABLE_PY_VERSION=2.7.2.1
##Which CuraEngine to use
if [ -z ${CURA_ENGINE_REPO:-} ] ; then
CURA_ENGINE_REPO="https://code.alephobjects.com/diffusion/CE/curaengine.git"
fi
#############################
# Support functions
#############################
function checkTool
{
if [ -z "`which $1`" ]; then
echo "The $1 command must be somewhere in your \$PATH."
echo "Fix your \$PATH or install $2"
exit 1
fi
}
function downloadURL
{
filename=`basename "$1"`
echo "Checking for $filename"
if [ -f "$filename" ]; then
FILE_SIZE=$(stat -c%s "$filename")
SERVER_SIZE=$(curl -L -I "$1" | grep Content-Length | awk '{ sub(/\r$/,""); print $2}' | tail -n 1)
echo "File $filename exists with $FILE_SIZE bytes. Server version has $SERVER_SIZE bytes"
if [ "x$SERVER_SIZE" != "x" ]; then
if [ "$SERVER_SIZE" -gt 0 ]; then
if [ "$FILE_SIZE" -ne "$SERVER_SIZE" ]; then
rm -f "$filename"
fi
fi
fi
fi
if [ ! -f "$filename" ]; then
echo "Downloading $1"
curl -L -O "$1"
if [ $? != 0 ]; then
echo "Failed to download $1"
exit 1
fi
fi
}
function extract
{
echo "Extracting $*"
echo "7z x -y $*" >> log.txt
$EXTRACT x -y $* >> log.txt
if [ $? != 0 ]; then
echo "Failed to extract $*"
exit 1
fi
}
function gitClone
{
echo "Cloning $1 into $2"
if [ -d $2 ]; then
cd $2
git remote set-url origin $1
git clean -dfx
git reset --hard
git pull
cd -
else
git clone $1 $2
fi
}
#############################
# Actual build script
#############################
if [ "$BUILD_TARGET" = "none" ]; then
echo "You need to specify a build target with:"
echo "$0 win32"
echo "$0 debian_i386"
echo "$0 debian_amd64"
echo "$0 debian_armhf"
echo "$0 darwin"
echo "$0 freebsd"
echo "$0 fedora # current system"
echo "$0 fedora \"mock_config_file\" ... # different system(s)"
exit 0
fi
if [ -z `which make` ]; then
MAKE=mingw32-make
else
MAKE=make
fi
if [ -z `which 7za` ]; then
EXTRACT=7z
else
EXTRACT=7za
fi
# Change working directory to the directory the script is in
# http://stackoverflow.com/a/246128
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR"
checkTool git "git: http://git-scm.com/"
checkTool curl "curl: http://curl.haxx.se/"
if [ $BUILD_TARGET = "win32" ]; then
checkTool avr-gcc "avr-gcc: http://winavr.sourceforge.net/ "
#Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
checkTool $EXTRACT "7zip: http://www.7-zip.org/"
checkTool $MAKE "mingw: http://www.mingw.org/"
fi
#For building under MacOS we need gnutar instead of tar
if [ -z `which gnutar` ]; then
TAR=tar
else
TAR=gnutar
fi
#############################
# Build the required firmwares
#############################
gitClone "https://code.alephobjects.com/diffusion/CBD/cura-binary-data.git" _cura_binary_data
rm -vf resources/firmware/*.hex
cp -v _cura_binary_data/cura/resources/firmware/* resources/firmware/
#############################
# Darwin
#############################
if [ "$BUILD_TARGET" = "darwin" ]; then
TARGET_DIR=Cura-${BUILD_VERSION}-MacOS
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
CURA_PREFIX_DIR=${CURA_PREFIX_DIR:="/Users/buildbot"}
CURA_VIRT_DIR="$CURA_PREFIX_DIR/cura-virtual"
WX_PREFIX_DIR=${WX_PREFIX_DIR:="$CURA_VIRT_DIR"}
WX_CONFIG_DIR="$WX_PREFIX_DIR/bin/wx-config"
cd "$CURA_PREFIX_DIR"
if [ -d "$CURA_VIRT_DIR" ]; then
rm -rf "$CURA_VIRT_DIR"
fi
mkdir -p "$CURA_VIRT_DIR"
virtualenv "$CURA_VIRT_DIR"
export PS1="(cura-virtual)"
. $CURA_VIRT_DIR/bin/activate
# Download and build wxPython
curl -L "http://sourceforge.net/projects/wxpython/files/wxPython/3.0.2.0/wxPython-src-3.0.2.0.tar.bz2" -o "wxPython-src-3.0.2.0.tar.bz2"
echo " *** wxPython downloaded"
tar -xjf wxPython-src-3.0.2.0.tar.bz2
cd wxPython-src-3.0.2.0
echo " *** Downloading patches..."
curl -L "https://raw.githubusercontent.com/Homebrew/formula-patches/bbf4995/wxmac/patch-yosemite.diff" -o "patch-yosemite.diff"
curl -L "https://raw.githubusercontent.com/Homebrew/formula-patches/bbf4995/wxmac/patch-quicktime-removal.diff" -o "patch-quicktime-removal.diff"
curl -L "http://trac.wxwidgets.org/raw-attachment/ticket/16959/wxPaperCustomPatch.patch" -o "wxPaperCustomPatch.patch"
echo " *** Applying patches..."
patch -p1 < patch-yosemite.diff
patch -p1 < patch-quicktime-removal.diff
patch -p1 < wxPaperCustomPatch.patch
echo " Done."
./configure CFLAGS='-msse2 -mno-sse3 -mno-sse4' \
CXXFLAGS='-msse2 -mno-sse3 -mno-sse4' \
--disable-debug \
--enable-clipboard \
--enable-display \
--enable-dnd \
--enable-monolithic \
--enable-optimise \
--enable-std_string \
--enable-svg \
--enable-unicode \
--enable-universal_binary=i386,x86_64 \
--enable-webkit \
--prefix=$WX_PREFIX_DIR \
--with-expat \
--with-libjpeg=builtin \
--with-libpng=builtin \
--with-libtiff=builtin \
--with-macosx-version-min=10.6 \
--with-opengl \
--with-osx_cocoa \
--with-zlib=builtin
make -j4 install
cd wxPython
python setup.py build_ext BUILD_GIZMOS=1 \
BUILD_GLCANVAS=1 \
BUILD_STC=1 \
INSTALL_MULTIVERSION=0 \
UNICODE=1 \
WX_CONFIG=$WX_CONFIG_DIR \
WXPORT=osx_cocoa
python setup.py install --prefix=$CURA_VIRT_DIR \
BUILD_GIZMOS=1 \
BUILD_GLCANVAS=1 \
BUILD_STC=1 \
INSTALL_MULTIVERSION=0 \
UNICODE=1 \
WX_CONFIG=$WX_CONFIG_DIR \
WXPORT=osx_cocoa
cd $SCRIPT_DIR # Cura source dir
pip install -r requirements_darwin.txt
#############################
rm -rf scripts/darwin/build
rm -rf scripts/darwin/dist
python build_app.py py2app
rc=$?
if [[ $rc != 0 ]]; then
echo "Cannot build app."
exit 1
fi
#Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
echo $BUILD_VERSION > scripts/darwin/dist/Cura.app/Contents/Resources/version
rm -rf CuraEngine
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
$MAKE -C CuraEngine VERSION=${BUILD_VERSION}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
cp CuraEngine/build/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
cd scripts/darwin
# Install QuickLook plugin
mkdir -p dist/Cura.app/Contents/Library/QuickLook
cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
# Fix python symlink
ln -sf /usr/bin/python dist/Cura.app/Contents/MacOS/python
# Archive app
cd dist
$TAR cfp - Cura.app | gzip --best -c > ../../../${TARGET_DIR}.tar.gz
cd ..
# Create sparse image for distribution
hdiutil detach Cura_Volume || true
rm -rf Cura.dmg.sparseimage
hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
hdiutil resize -size 500m Cura.dmg.sparseimage
hdiutil attach Cura.dmg.sparseimage -mountpoint Cura_Volume
cp -a dist/Cura.app Cura_Volume/Cura/
hdiutil detach Cura_Volume
hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../Cura-${FULL_VERSION}-MacOS.dmg
exit
fi
#############################
# FreeBSD part by CeDeROM
#############################
if [ "$BUILD_TARGET" = "freebsd" ]; then
export CXX="c++"
gitClone https://github.com/GreatFruitOmsk/Power Power
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
gmake -j4 -C CuraEngine VERSION=${BUILD_VERSION}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
rm -rf scripts/freebsd/dist
mkdir -p scripts/freebsd/dist/share/cura
mkdir -p scripts/freebsd/dist/share/applications
mkdir -p scripts/freebsd/dist/bin
cp -a Cura scripts/freebsd/dist/share/cura/
cp -a resources scripts/freebsd/dist/share/cura/
cp -a plugins scripts/freebsd/dist/share/cura/
cp -a CuraEngine/build/CuraEngine scripts/freebsd/dist/share/cura/
cp scripts/freebsd/cura.py scripts/freebsd/dist/share/cura/
cp scripts/freebsd/cura.desktop scripts/freebsd/dist/share/applications/
cp scripts/freebsd/cura scripts/freebsd/dist/bin/
cp -a Power/power scripts/freebsd/dist/share/cura/
echo $BUILD_VERSION > scripts/freebsd/dist/share/cura/Cura/version
#Create file list (pkg-plist)
cd scripts/freebsd/dist
find * -type f > ../pkg-plist
DIRLVL=20; while [ $DIRLVL -ge 0 ]; do
DIRS=`find share/cura -type d -depth $DIRLVL`
for DIR in $DIRS; do
echo "@dirrm $DIR" >> ../pkg-plist
done
DIRLVL=`expr $DIRLVL - 1`
done
cd ..
# Create archive or package if root
if [ `whoami` == "root" ]; then
echo "Are you root? Use the Port Luke! :-)"
else
echo "You are not root, building simple package archive..."
pwd
$TAR czf ../../${TARGET_DIR}.tar.gz dist/**
fi
exit
fi
#############################
# Debian 32bit .deb
#############################
if [ "$BUILD_TARGET" = "debian_i386" ]; then
export CXX="g++ -m32"
gitClone https://github.com/GreatFruitOmsk/Power Power
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
$MAKE -C CuraEngine VERSION=${BUILD_VERSION}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
echo $BUILD_VERSION > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
cat scripts/linux/debian_control | sed "s/\[BUILD_VERSION\]/${FULL_VERSION}/" | sed 's/\[ARCH\]/i386/' > scripts/linux/${BUILD_TARGET}/DEBIAN/control
fakeroot sh -ec "
chown root:root scripts/linux/${BUILD_TARGET} -R
chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
cd scripts/linux
dpkg-deb -Zgzip --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${FULL_VERSION}_i386.deb
chown `id -un`:`id -gn` ${BUILD_TARGET} -R
"
exit
fi
#############################
# Debian 64bit .deb
#############################
if [ "$BUILD_TARGET" = "debian_amd64" ]; then
export CXX="g++ -m64"
gitClone https://github.com/GreatFruitOmsk/Power Power
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
$MAKE -C CuraEngine VERSION=${BUILD_VERSION}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
echo $BUILD_VERSION > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
cat scripts/linux/debian_control | sed "s/\[BUILD_VERSION\]/${FULL_VERSION}/" | sed 's/\[ARCH\]/amd64/' > scripts/linux/${BUILD_TARGET}/DEBIAN/control
fakeroot sh -ec "
chown root:root scripts/linux/${BUILD_TARGET} -R
chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
cd scripts/linux
dpkg-deb -Zgzip --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${FULL_VERSION}_amd64.deb
chown `id -un`:`id -gn` ${BUILD_TARGET} -R
"
exit
fi
#############################
# Debian armhf .deb
#############################
if [ "$BUILD_TARGET" = "debian_armhf" ]; then
export CXX="g++"
gitClone https://github.com/GreatFruitOmsk/Power Power
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
$MAKE -C CuraEngine VERSION=${BUILD_VERSION}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
echo $BUILD_VERSION > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
cat scripts/linux/debian_control | sed "s/\[BUILD_VERSION\]/${FULL_VERSION}/" | sed 's/\[ARCH\]/armhf/' > scripts/linux/${BUILD_TARGET}/DEBIAN/control
fakeroot sh -ec "
chown root:root scripts/linux/${BUILD_TARGET} -R
chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
cd scripts/linux
dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/Cura-${FULL_VERSION}-${BUILD_TARGET}.deb
chown `id -un`:`id -gn` ${BUILD_TARGET} -R
"
exit
fi
#############################
# Fedora Generic
#############################
function sanitiseVersion() {
local _version="$1"
echo "${_version//-/.}"
}
function fedoraCreateSRPM() {
local _curaName="$1"
local _version="$(sanitiseVersion "$2")"
local _srcSpecFile="$3"
local _srcSpecFileRelease="$4"
local _dstSrpmDir="$5"
local _dstTarSources="$HOME/rpmbuild/SOURCES/$_curaName-$_version.tar.gz"
local _dstSpec="$HOME/rpmbuild/SPECS/$_curaName-$_version.spec"
local _namePower="Power"
local _nameCuraEngine="CuraEngine"
gitClone "https://github.com/GreatFruitOmsk/Power" "$_namePower"
gitClone "$CURA_ENGINE_REPO" "$_nameCuraEngine"
cd "$_namePower"
local _gitPower="$(git rev-list -1 HEAD)"
cd -
cd "$_nameCuraEngine"
local _gitCuraEngine="$(git rev-list -1 HEAD)"
cd -
local _gitCura="$(git rev-list -1 HEAD)"
rpmdev-setuptree
rm -fv "$_dstTarSources"
tar \
--exclude-vcs \
--transform "s#^#$_curaName-$_version/#" \
-zcvf "$_dstTarSources" \
"$_nameCuraEngine" \
"$_namePower" \
Cura \
resources \
plugins \
scripts/linux/cura.py \
scripts/linux/fedora/usr
sed \
-e "s#__curaName__#$_curaName#" \
-e "s#__version__#$_version#" \
-e "s#__gitCura__#$_gitCura#" \
-e "s#__gitCuraEngine__#$_gitCuraEngine#" \
-e "s#__gitPower__#$_gitPower#" \
-e "s#__basedir__#scripts/linux/fedora#" \
"$_srcSpecFile" \
> "$_dstSpec"
rpmbuild -bs "$_dstSpec"
mkdir -pv "$_dstSrpmDir"
cp -v \
"$HOME/rpmbuild/SRPMS/$_curaName-$_version-$_srcSpecFileRelease.src.rpm" \
"$_dstSrpmDir"
}
function buildFedora() {
local _nameForRpm="Cura"
local _versionForRpm="$(sanitiseVersion "$BUILD_VERSION")"
#
# SRPM
#
local _srcSpecFile="scripts/linux/fedora/rpm.spec"
local _srcSpecFileRelease="$(rpmspec -P "$_srcSpecFile" | grep -E '^Release:'|awk '{print $NF}')"
local _dstSrpmDir="scripts/linux/fedora/SRPMS"
fedoraCreateSRPM \
"$_nameForRpm" \
"$_versionForRpm" \
"$_srcSpecFile" \
"$_srcSpecFileRelease" \
"$_dstSrpmDir"
#
# RPM
#
local _srpmFile="$_dstSrpmDir/$_nameForRpm-$_versionForRpm-$_srcSpecFileRelease.src.rpm"
local _dstRpmDir="scripts/linux/fedora/RPMS"
while [ $# -ne 0 ]; do
local _mockRelease="$(basename "${1%\.cfg}")"
local _mockReleaseArg=""
if [ -n "$_mockRelease" ]; then
_mockReleaseArg="-r $_mockRelease"
fi
mkdir -pv "$_dstRpmDir/$_mockRelease"
# Need to use /usr/bin/mock because depending on $PATH, if /usr/sbin/mock is
# run instead, it will give an error.
/usr/bin/mock \
$_mockReleaseArg \
--resultdir="$_dstRpmDir/$_mockRelease" \
"$_srpmFile"
shift 1
done
}
#############################
# Fedora RPMs
#############################
if [ "$BUILD_TARGET" = "fedora" ]; then
shift 1 # skip "fedora" arg
if [ $# -eq 0 ]; then
"$0" "$BUILD_TARGET" ""
else
buildFedora "${@}"
fi
exit
fi
#############################
# Rest
#############################
#############################
# Download all needed files.
#############################
if [ $BUILD_TARGET = "win32" ]; then
#Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/PyOpenGL-3.0.1.win32.exe
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/VideoCapture-0.9-5.zip
#downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/comtypes-0.6.2.win32.exe
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/ejectmedia.zip
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/wxPython3.0-win32-3.0.2.0.zip
downloadURL http://devel.lulzbot.com/software/Cura/Build-Resources/pyserial-2.7.zip
#Get the power module for python
gitClone https://github.com/GreatFruitOmsk/Power Power
if [ $? != 0 ]; then echo "Failed to clone Power"; exit 1; fi
gitClone ${CURA_ENGINE_REPO} CuraEngine
if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
fi
#############################
# Build the packages
#############################
rm -rf ${TARGET_DIR}
mkdir -p ${TARGET_DIR}
rm -f log.txt
if [ $BUILD_TARGET = "win32" ]; then
if [ -z `which i686-w64-mingw32-g++` ]; then
CXX=g++
else
CXX=i686-w64-mingw32-g++
fi
#In case we have left over files, we don't want the script to fail
rm -rf App
rm -rf PURELIB
rm -rf VideoCapture-0.9-5
rm -rf wxPython3.0-win32-3.0.2.0
rm -rf pyserial-2.7
rm -rf Win32
#For windows extract portable python to include it.
extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe App
extract PyOpenGL-3.0.1.win32.exe PURELIB
extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
#extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
#extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
extract comtypes-0.6.2.win32.exe
extract ejectmedia.zip Win32
extract wxPython3.0-win32-3.0.2.0.zip
extract pyserial-2.7.zip
mkdir -p ${TARGET_DIR}/python
mkdir -p ${TARGET_DIR}/Cura/
mv App/Lib/site-packages/ PURELIB/
mv App/* ${TARGET_DIR}/python
mkdir -p ${TARGET_DIR}/python/Lib/site-packages/
mv PURELIB/site-packages/setuptools* PURELIB/site-packages/site.py PURELIB/site-packages/easy_install.py ${TARGET_DIR}/python/Lib/site-packages/
mv PURELIB/site-packages/numpy* ${TARGET_DIR}/python/Lib/site-packages/
mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
mv pyserial-2.7/* ${TARGET_DIR}/python/Lib/site-packages/
mv wxPython3.0-win32-3.0.2.0/* ${TARGET_DIR}/python/Lib/site-packages/
mv Power/power ${TARGET_DIR}/python/Lib
mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
#mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
#mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
cp -a scripts/win32/nsisPlugins/libgcc_s_dw2-1.dll ${TARGET_DIR}
cp -a scripts/win32/nsisPlugins/libstdc++-6.dll ${TARGET_DIR}
cp -a scripts/win32/nsisPlugins/libwinpthread-1.dll ${TARGET_DIR}
rm -rf Power/
rm -rf App
rm -rf PURELIB
rm -rf VideoCapture-0.9-5
rm -rf wxPython3.0-win32-3.0.2.0
rm -rf pyserial-2.7
#rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
#Clean up portable python a bit, to keep the package size down.
rm -rf ${TARGET_DIR}/python/PyScripter.*
rm -rf ${TARGET_DIR}/python/Doc
rm -rf ${TARGET_DIR}/python/locale
rm -rf ${TARGET_DIR}/python/tcl
rm -rf ${TARGET_DIR}/python/Lib/test
rm -rf ${TARGET_DIR}/python/Lib/distutils
rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-3.0-msw/wx/tools
rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-3.0-msw/wx/locale
#Remove the gle files because they require MSVCR71.dll, which is not included. We also don't need gle, so it's safe to remove it.
rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
# New in 2.7.6.1
rm -rf ${TARGET_DIR}/python/PyCharm/
rm -rf ${TARGET_DIR}/python/share/
rm -rf ${TARGET_DIR}/python/qt.conf
#Build the C++ engine
$MAKE -C CuraEngine VERSION=${BUILD_VERSION} OS=Windows_NT CXX=${CXX}
if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
fi
#add Cura
mkdir -p ${TARGET_DIR}/Cura ${TARGET_DIR}/resources ${TARGET_DIR}/plugins
cp -a Cura/* ${TARGET_DIR}/Cura
cp -a resources/* ${TARGET_DIR}/resources
cp -a plugins/* ${TARGET_DIR}/plugins
#Add cura version file
echo $BUILD_VERSION > ${TARGET_DIR}/Cura/version
#add script files
if [ $BUILD_TARGET = "win32" ]; then
cp -a scripts/win32/cura.bat $TARGET_DIR/
cp CuraEngine/build/CuraEngine.exe $TARGET_DIR
#cp /usr/lib/gcc/i686-w64-mingw32/4.8/libgcc_s_sjlj-1.dll $TARGET_DIR
#cp /usr/i686-w64-mingw32/lib/libwinpthread-1.dll $TARGET_DIR
#cp /usr/lib/gcc/i686-w64-mingw32/4.8/libstdc++-6.dll $TARGET_DIR
fi
#package the result
if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
if [ $BUILD_TARGET = "win32" ]; then
#rm ${TARGET_DIR}.zip
#cd ${TARGET_DIR}
#7z a ../${TARGET_DIR}.zip *
#cd ..
if [ ! -z `which wine` ]; then
#if we have wine, try to run our nsis script.
rm -rf scripts/win32/dist
ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
wine ~/.wine/drive_c/Program\ Files\ \(x86\)/NSIS/makensis.exe /DVERSION=${BUILD_VERSION} scripts/win32/installer.nsi
if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
mv scripts/win32/Cura_${FULL_VERSION}.exe ./
fi
if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
rm -rf scripts/win32/dist
mv "`pwd`/${TARGET_DIR}" scripts/win32/dist
'/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_VERSION} 'scripts/win32/installer.nsi' >> log.txt
if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
mv scripts/win32/Cura_${BUILD_VERSION}.exe ./
fi
else
echo "Archiving to ${TARGET_DIR}.tar.gz"
$TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
fi
else
echo "Installed into ${TARGET_DIR}"
fi