Welcome to mirror list, hosted at ThFree Co, Russian Federation.

protobuf-update-and-compile.sh - gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 686e2481722c8610828573cc849aba3895707ba5 (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
#!/bin/sh
set -eu

protoc=$(protoc --version)

mumblerepo=../mumble
protof=src/Mumble.proto

cwd=$(pwd)
cd "$mumblerepo"
describe=$(git describe --tags --dirty --always)
branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD)
cd "$cwd"

cat <<EOF >"$protof"
// This is $protof from the Mumble repository at $describe (branch $branch).
// Going to compile to java classes using protoc from ${protoc}.
// NOTE: java compile options added at the bottom of this file.
//
EOF

cat >>"$protof" "$mumblerepo/$protof"

cat <<EOF >>"$protof"
option java_package = "se.lublin.humla.protobuf";
option java_outer_classname = "Mumble";
option java_multiple_files = false;
EOF

protoc --java_out=src/main/java "$protof"

git diff --stat src/main/java/ "$protof"