From: Ryan Pavlik Date: Tue, 19 Jan 2021 19:38:05 +0000 (-0600) Subject: Adjust get_orig.sh script for RC2 X-Git-Tag: archive/raspbian/3.1+ds1-4+rpi1^2~106 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=672959bc0156a53b5fc826b5f6ecd9b194a0f9c8;p=solvespace.git Adjust get_orig.sh script for RC2 --- diff --git a/debian/get_orig.sh b/debian/get_orig.sh index 5dd74be..c9e598b 100755 --- a/debian/get_orig.sh +++ b/debian/get_orig.sh @@ -1,9 +1,15 @@ #!/bin/bash -RELEASE_NAME=v3.0.rc1 +RELEASE_NAME=v3.0.rc2 +SUFFIX=+repack1 UPSTREAM="https://github.com/solvespace/solvespace.git" -git clone --depth=1 --recursive -b ${RELEASE_NAME} ${UPSTREAM} +git clone --depth=1 -b ${RELEASE_NAME} ${UPSTREAM} +( + cd solvespace + git submodule init extlib/libdxfrw extlib/mimalloc + git submodule update +) #rm -rf ./solvespace #cp -r ./solvespace_copy ./solvespace @@ -16,13 +22,13 @@ rm -rfv solvespace/extlib/zlib rm -rfv solvespace/extlib/si rm -rfv solvespace/extlib/angle rm -rfv solvespace/extlib/cairo -rm -rfv solvespace/extlib/flatbuffers rm -rfv solvespace/extlib/pixman rm -rfv solvespace/extlib/mimalloc/do* rm -rfv solvespace/extlib/mimalloc/bin rm -rfv solvespace/debian rm -rfv solvespace/.gi* rm -rfv solvespace/.travis -rm -rfv solvespace/src/fonts/unifont-8.0.01.hex.gz +rm -rfv solvespace/res/fonts/unifont.hex.gz +rm -rfv solvespace/res/threejs/three-r76.js.gz -tar cJf solvespace_${RELEASE_NAME}+repack2.tar.xz solvespace +tar cJf solvespace_${RELEASE_NAME}${SUFFIX}.tar.xz solvespace