mirror of
https://github.com/python-LimeReport/pyside.git
synced 2024-12-23 14:43:00 +03:00
refactor
This commit is contained in:
parent
deacd813b4
commit
297bc5562d
56
build.sh
56
build.sh
@ -2,10 +2,10 @@
|
||||
|
||||
qt6_build()
|
||||
{
|
||||
python3 setup.py build --parallel "$(nproc)" --limited-api yes
|
||||
export dir_name=qfpa-py${PYTHON_VERSION}-qt${QT_VERSION}-64bit-release
|
||||
tar czvf "/output/$dir_name.tar.gz" -C "./build/$dir_name/install" .
|
||||
python3 setup.py build --parallel "$(nproc)" bdist_wheel --limited-api yes
|
||||
export dir_name=qfpa-py${PYTHON_VERSION}-qt${QT_VERSION}-64bit-release
|
||||
export archive_name=extra-${PYTHON_PLATFORM}
|
||||
tar czvf "/output/$dir_name.tar.gz" -C "./build/$dir_name/install" .
|
||||
cp ./dist/* /output
|
||||
}
|
||||
|
||||
@ -15,23 +15,39 @@ qt5_build()
|
||||
exit 1
|
||||
}
|
||||
|
||||
mkdir -p /output
|
||||
get_variables()
|
||||
{
|
||||
export PYTHON_PLATFORM=$(python3 -c "from packaging.tags import sys_tags; print(next(sys_tags()).platform.lower().replace(\"-\", \"_\").replace(\".\", \"_\").replace(\" \", \"_\"))")
|
||||
}
|
||||
|
||||
cd /opt \
|
||||
&& git clone -b ${QT_VERSION} https://code.qt.io/pyside/pyside-setup.git \
|
||||
&& cd pyside-setup \
|
||||
&& pip3 install -r requirements.txt
|
||||
init()
|
||||
{
|
||||
get_variables
|
||||
|
||||
mkdir -p /output
|
||||
|
||||
cd /opt \
|
||||
&& git clone -b ${QT_VERSION} https://code.qt.io/pyside/pyside-setup.git \
|
||||
&& cd pyside-setup \
|
||||
&& pip3 install -r requirements.txt
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
init
|
||||
|
||||
case $QT_VERSION in
|
||||
6*)
|
||||
qt6_build
|
||||
;;
|
||||
5*)
|
||||
qt5_build
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported version of QT"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
case $QT_VERSION in
|
||||
6*)
|
||||
qt6_build
|
||||
;;
|
||||
5*)
|
||||
qt5_build
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported version of QT"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user