close Warning: Failed to sync with repository "ogBrowser-Git": (1366, "Incorrect string value: '\\xF0\\x9F\\x93\\xA6 I...' for column 'message' at row 1"); repository information may be out of date. Look in the Trac log for more information including mitigation strategies.

source: ogAgent-Git/src/update.sh @ d7a7a1f

main
Last change on this file since d7a7a1f was d7a7a1f, checked in by Natalia Serrano <natalia.serrano@…>, 16 months ago

refs #309 #393 #408 build and package ogagent py3/qt6 for windows

  • Property mode set to 100755
File size: 2.5 KB
Line 
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
31function 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'/" opengnsys/__init__.py
36    else
37        echo 'src/VERSION: No such file or directory'
38        exit 1
39    fi
40}
41
42function process_ui {
43    pyuic6 about-dialog.ui -o about_dialog_ui.py -x
44    pyuic6 message-dialog.ui -o message_dialog_ui.py -x
45}
46
47function process_resources {
48    ## requires a virtualenv with pyside6
49    ## you can create it by doing 'mkvirtualenv -p python3 ogpyside6'
50    ## this will obviously go away in the future, but we need to merge the py3/qt6 change now
51    ~/.virtualenvs/ogpyside6/bin/pyside6-rcc -o OGAgent_rc.py OGAgent.qrc
52    sed -i -e '/^from PySide6 import QtCore/s/PySide6/PyQt6/' OGAgent_rc.py
53}
54
55cd $(dirname "$0")
56update_version
57process_ui
58process_resources
Note: See TracBrowser for help on using the repository browser.