635e9da391
* par 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 ```
21 lines
428 B
Diff
21 lines
428 B
Diff
# upstream: yes
|
|
# picked from 579e559a6322209df7cd51c34801fecff5fe734b
|
|
|
|
--- a/src/common/types.h
|
|
+++ b/src/common/types.h
|
|
@@ -140,6 +140,7 @@
|
|
typedef QList<MsgId> MsgIdList;
|
|
typedef QList<BufferId> BufferIdList;
|
|
|
|
+#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
|
/**
|
|
* Catch-all stream serialization operator for enum types.
|
|
*
|
|
@@ -169,6 +170,7 @@
|
|
value = static_cast<T>(v);
|
|
return in;
|
|
}
|
|
+#endif
|
|
|
|
// Exceptions
|
|
|