765e304c4b
```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 ```
11 lines
603 B
Diff
11 lines
603 B
Diff
--- a/mesonbuild/modules/gnome.py 2020-06-29 19:00:15.000000000 +0200
|
|
+++ b/mesonbuild/modules/gnome.py 2020-06-29 19:00:15.000000000 +0200
|
|
@@ -403,7 +403,7 @@
|
|
|
|
def _get_gir_dep(self, state):
|
|
if not self.gir_dep:
|
|
- kwargs = {'native': True, 'required': True}
|
|
+ kwargs = {'native': False, 'required': True}
|
|
holder = self.interpreter.func_dependency(state.current_node, ['gobject-introspection-1.0'], kwargs)
|
|
self.gir_dep = holder.held_object
|
|
giscanner = state.environment.lookup_binary_entry(MachineChoice.HOST, 'g-ir-scanner')
|