blob: e50c0637aac169362647f52dd7c06532a48c28d7 (
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
|
#!/bin/sh
srcdir="$(dirname "$0")"
[ "$(echo "$srcdir" | cut -c1)" = '/' ] || srcdir="$PWD/$srcdir"
srcdir="$srcdir/.."
die() { echo "$*"; exit 1; }
# Import the makerelease.lib
# http://bues.ch/gitweb?p=misc.git;a=blob_plain;f=makerelease.lib;hb=HEAD
for path in $(echo "$PATH" | tr ':' ' '); do
[ -f "$MAKERELEASE_LIB" ] && break
MAKERELEASE_LIB="$path/makerelease.lib"
done
[ -f "$MAKERELEASE_LIB" ] && . "$MAKERELEASE_LIB" || die "makerelease.lib not found."
hook_get_version()
{
local file="$1/pyprofibus/version.py"
local maj="$(cat "$file" | grep -e 'VERSION_MAJOR\s*=' | head -n1 | awk '{print $3;}')"
local min="$(cat "$file" | grep -e 'VERSION_MINOR\s*=' | head -n1 | awk '{print $3;}')"
version="$maj.$min"
}
hook_post_checkout()
{
info "Pulling in git submodules"
git submodule update --init --recursive
default_hook_post_checkout "$@"
rm -r "$1"/maintenance
}
hook_testbuild()
{
default_hook_testbuild "$@"
if which mpy-cross >/dev/null 2>&1; then
# Try a Micropython test build.
sh "$1/micropython/install.sh" --clean --build-only
else
warn "mpy-cross not available. Skipping Micropython test."
fi
}
hook_regression_tests()
{
default_hook_regression_tests "$@"
# Run selftests
sh "$1/tests/run.sh"
}
do_build()
{
local target="$1"
local checkout_dir="$2"
local builddir="$checkout_dir/phy_fpga"
local bindir="$builddir/bin/$target"
make -C "$builddir" TARGET="$target"
mkdir -p "$bindir"
for ftype in .bin .asc .blif .rpt .json _yosys.log _nextpnr.log; do
local binfile="${target}_pyprofibusphy${ftype}"
cp "$builddir/$binfile" "$bindir/$binfile"
done
mv "$builddir/${target}_program.sh" "$bindir/${target}_program.sh"
make -C "$builddir" TARGET="$target" clean
}
hook_pre_archives()
{
local archive_dir="$1"
local checkout_dir="$2"
do_build tinyfpga_bx "$checkout_dir"
}
hook_doc_archives()
{
local archive_dir="$1"
local checkout_dir="$2"
local doc_name="$project-doc-$version"
local doc_dir="$tmpdir/$doc_name"
mkdir "$doc_dir" ||\
die "Failed to create directory '$doc_dir'"
(
cd "$checkout_dir" || die "Failed to cd '$checkout_dir'"
rsync --recursive --prune-empty-dirs \
--include='/doc/' \
--include='/doc/**/' \
--include='/doc/**.pdf' \
--include='/doc/**.png' \
--include='/doc/**.jpg' \
--include='/doc/**.jpeg' \
--include='/doc/**.1' \
--include='/doc/**.html' \
--include='/doc/**.txt' \
--include='/doc/**.ods' \
--include='/doc/**/README' \
--include='/micropython/' \
--include='/micropython/**/' \
--include='/micropython/**.html' \
--include='/*.html' \
--include='/*.txt' \
--exclude='*' \
. "$doc_dir" ||\
die "Failed to copy documentation."
cd "$tmpdir" || die "Failed to cd '$tmpdir'"
tar --owner=root --group=root -c -J -f "$archive_dir"/$doc_name.tar.xz \
"$doc_name" ||\
die "Failed to create doc archive."
) || die
}
project=pyprofibus
default_archives=py-sdist-xz
makerelease "$@"
|