04b9978a29
* wine is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
17 lines
713 B
Diff
17 lines
713 B
Diff
# reason:
|
|
# since bebf09a3b33b72027a0a0601f2b331d524630ad6 qt5-rcc defaults to
|
|
# zstd compression which is unsupprted for format-version<3
|
|
# see: https://travis-ci.org/Piraty/void-packages/jobs/562765059#L5398-L5411
|
|
# upstream: no
|
|
|
|
--- a/ui/qt/CMakeLists.txt
|
|
+++ b/ui/qt/CMakeLists.txt
|
|
@@ -601,7 +601,7 @@
|
|
# so this has no unwanted side effects. This mtime started appearing in
|
|
# Qt 5.8. The option to force the old file format without mtime was
|
|
# added in Qt 5.9. See https://bugreports.qt.io/browse/QTBUG-58769
|
|
- set(CMAKE_AUTORCC_OPTIONS --format-version 1)
|
|
+ set(CMAKE_AUTORCC_OPTIONS --format-version 1 --compress-algo zlib)
|
|
endif()
|
|
|
|
QT5_ADD_TRANSLATION(WIRESHARK_QT_QM ${WIRESHARK_QT_TS})
|