File: update-weblate.sh

package info (click to toggle)
qtox 1.17.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 25,628 kB
  • sloc: cpp: 40,089; xml: 10,393; sh: 2,401; ansic: 1,520; objc: 208; perl: 28; makefile: 13
file content (80 lines) | stat: -rwxr-xr-x 2,194 bytes parent folder | download | duplicates (2)
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
#!/bin/bash

#   Copyright © 2016 Zetok Zalbavar <zetok@openmailbox.org>
#   Copyright © 2019 by The qTox Project Contributors
#
#   This file is part of qTox, a Qt-based graphical interface for Tox.
#   qTox is libre software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   qTox is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with qTox.  If not, see <http://www.gnu.org/licenses/>

# Script to update the translations from Weblate. Works only if there are no
# merge conflicts. Assumes that working dir is a qTox git repo.
#
# Requires a GPG key to sign merge commits.

# usage:
#   ./$script 


set -e -o pipefail

readonly COMMIT_NAME="chore(l10n): update translations from Weblate

"

source_functions() {
    local fns_file="tools/lib/PR_bash.source"
    source $fns_file
}

# If there's no qTox Weblate remote, add it
add_remote_weblate() {
    local remote_url="https://hosted.weblate.org/git/tox/qtox/"
    local remote_name="weblate"

    is_remote_present $remote_name \
        || git remote add $remote_name "${remote_url}"
}

do_merge() {
    # update commits
    git fetch upstream
    git fetch weblate
    
    git checkout upstream/master
    
    local COMMIT_MESSAGE=`git shortlog upstream/master..weblate/master`
    
    # squash and merge    
    git merge --squash --no-edit weblate/master
    
    # update format for adapt to Qt translation format
    ./tools/deweblate-translation-file.sh ./translations/*.ts || true
    
    # commit
    git commit --no-edit -S -m "$COMMIT_NAME" -m "$COMMIT_MESSAGE"
}

main() {
    source_functions
    add_remote
    add_remote_weblate

    do_merge
    
    echo "You can now checkout the changes with:"
    echo ""
    echo "    git checkout -b <branch-name>"
    echo ""
}
main