-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.sh
executable file
·53 lines (37 loc) · 1.31 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
#!/bin/bash -e
version=$(grep '"version"' manifest.json | cut -d: -f2 | cut -d\" -f2)
# Setup environment for building inside Dockerized toolchain
[ $(id -u) = 0 ] && umask 0
# Clean up from previous releases
echo "removing old files"
rm -rf *.tgz *.sha256sum package SHA256SUMS lib
if [ -z "${ADDON_ARCH}" ]; then
TARFILE_SUFFIX=
else
PYTHON_VERSION="$(python3 --version 2>&1 | cut -d' ' -f2 | cut -d. -f 1-2)"
TARFILE_SUFFIX="-${ADDON_ARCH}-v${PYTHON_VERSION}"
fi
mkdir -p lib
# Pull down Python dependencies
pip3 install -r requirements.txt -t lib --no-binary :all: --prefix ""
# Prep new package
mkdir -p package
# Put package together
cp -r pkg lib LICENSE manifest.json *.py bluetooth_manufacturers.csv silence.wav README.md css images js views package/
find package -type f -name '*.pyc' -delete
find package -type f -name '._*' -delete
find package -type d -empty -delete
rm -rf package/pkg/pycache
# Generate checksums
echo "generating checksums"
cd package
find . -type f \! -name SHA256SUMS -exec shasum --algorithm 256 {} \; >> SHA256SUMS
cd -
# Make the tarball
echo "creating archive"
TARFILE="bluetoothpairing-${version}${TARFILE_SUFFIX}.tgz"
echo "TARFILE: $TARFILE"
tar czf ${TARFILE} package
shasum --algorithm 256 ${TARFILE} > ${TARFILE}.sha256sum
cat ${TARFILE}.sha256sum
rm -rf SHA256SUMS package