Updating for 6.5.1
This commit is contained in:
parent
f7b1df509c
commit
361c105959
2 changed files with 9 additions and 1 deletions
9
build.sh
9
build.sh
|
@ -1,4 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
DISTRIBUTION=${DISTRIBUTION:-jammy}
|
||||||
|
|
||||||
rm -rf output
|
rm -rf output
|
||||||
|
|
||||||
# Download latest weels
|
# Download latest weels
|
||||||
|
@ -12,7 +15,11 @@ echo -e "\n[Writing modifications]\n"
|
||||||
for i in output/*; do
|
for i in output/*; do
|
||||||
cp copyright "$i/debian" # Add copyrights
|
cp copyright "$i/debian" # Add copyrights
|
||||||
perl -i -p0e 's/python3 \(<< 3.(\d)+\),//gm' "$i/debian/control" # Remove upper limit from control.
|
perl -i -p0e 's/python3 \(<< 3.(\d)+\),//gm' "$i/debian/control" # Remove upper limit from control.
|
||||||
|
sed -i "s/stable;/$DISTRIBUTION;/g" "$i/debian/changelog" # Change distribution.
|
||||||
done
|
done
|
||||||
|
|
||||||
# Moving the shaders library over to essentials since it's required by Qt5Compat
|
# Moving the shaders library over to essentials since it's required by Qt5Compat
|
||||||
mv output/python3-pyside6-addons_*_amd64/src/PySide6/Qt/lib/libQt6ShaderTools.so.6 output/python3-pyside6-essentials_*_amd64/src/PySide6/Qt/lib/
|
# mv output/python3-pyside6-addons_*_amd64/src/PySide6/Qt/lib/libQt6ShaderTools.so.6 output/python3-pyside6-essentials_*_amd64/src/PySide6/Qt/lib/
|
||||||
|
|
||||||
|
# Remove conflicting files between Essentials and Addons
|
||||||
|
rm output/python3-pyside6-addons_*_amd64/src/PySide6/__init__.py
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
.:
|
.:
|
||||||
maintainer_name: 'Ad5001'
|
maintainer_name: 'Ad5001'
|
||||||
maintainer_email: 'mail@ad5001.eu'
|
maintainer_email: 'mail@ad5001.eu'
|
||||||
|
distribution: jammy
|
||||||
|
|
Loading…
Reference in a new issue