void-packages/srcpkgs/swell-foop/patches/fix-vala-array.patch
Đoàn Trần Công Danh 4b97cd2fb4 srcpkgs/s*: convert patches to -Np1
```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
```
2021-06-20 13:17:29 +07:00

11 lines
421 B
Diff

--- a/src/game-view.vala 2019-10-15 12:48:06.000000000 +0200
+++ b/src/game-view.vala 2020-11-04 11:56:58.582438926 +0100
@@ -354,7 +354,7 @@
public Theme (string name)
{
textures = new Clutter.Image [4];
- string[4] colors = {"blue", "green", "yellow", "red"};
+ string colors[4] = {"blue", "green", "yellow", "red"};
/* Create the textures required to render */
try