1 | #!/bin/bash |
---|
2 | # |
---|
3 | # Copyright (c) 2014 Virtual Cable S.L. |
---|
4 | # Copyright (c) 2024 Qindel Formación y Servicios S.L. |
---|
5 | # All rights reserved. |
---|
6 | # |
---|
7 | # Redistribution and use in source and binary forms, with or without modification, |
---|
8 | # are permitted provided that the following conditions are met: |
---|
9 | # |
---|
10 | # * Redistributions of source code must retain the above copyright notice, |
---|
11 | # this list of conditions and the following disclaimer. |
---|
12 | # * Redistributions in binary form must reproduce the above copyright notice, |
---|
13 | # this list of conditions and the following disclaimer in the documentation |
---|
14 | # and/or other materials provided with the distribution. |
---|
15 | # * Neither the name of Virtual Cable S.L. nor the names of its contributors |
---|
16 | # may be used to endorse or promote products derived from this software |
---|
17 | # without specific prior written permission. |
---|
18 | # |
---|
19 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
20 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
21 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
---|
22 | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
---|
23 | # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
---|
24 | # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
---|
25 | # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
---|
26 | # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
---|
27 | # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
---|
28 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
29 | |
---|
30 | |
---|
31 | function update_version { |
---|
32 | if [[ -r VERSION ]]; then |
---|
33 | V="$(cat VERSION)" |
---|
34 | sed -i "s/Version [^<]*/Version $V/" about-dialog.ui |
---|
35 | sed -i "s/^VERSION='.*'$/VERSION='$V'/" setup.py |
---|
36 | sed -i "s/^VERSION='.*'$/VERSION='$V'/" opengnsys/__init__.py |
---|
37 | else |
---|
38 | echo 'src/VERSION: No such file or directory' |
---|
39 | exit 1 |
---|
40 | fi |
---|
41 | } |
---|
42 | |
---|
43 | function process_ui { |
---|
44 | pyuic6 about-dialog.ui -o about_dialog_ui.py -x |
---|
45 | pyuic6 message-dialog.ui -o message_dialog_ui.py -x |
---|
46 | } |
---|
47 | |
---|
48 | function process_resources { |
---|
49 | ## requires a virtualenv with pyside6 |
---|
50 | ## you can create it by doing 'mkvirtualenv -p python3 ogpyside6' |
---|
51 | ## this will obviously go away in the future, but we need to merge the py3/qt6 change now |
---|
52 | ~/.virtualenvs/ogpyside6/bin/pyside6-rcc -o OGAgent_rc.py OGAgent.qrc |
---|
53 | sed -i -e '/^from PySide6 import QtCore/s/PySide6/PyQt6/' OGAgent_rc.py |
---|
54 | } |
---|
55 | |
---|
56 | cd $(dirname "$0") |
---|
57 | update_version |
---|
58 | process_ui |
---|
59 | process_resources |
---|