void-packages/srcpkgs/tc-play/patches/sysmacros.patch
Đoàn Trần Công Danh 4f75cf25fd srcpkgs/t*: 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

10 lines
270 B
Diff

--- a/tcplay.c 2020-01-02 03:32:31.615390563 +0100
+++ b/tcplay.c 2020-01-02 03:32:45.237882108 +0100
@@ -30,6 +30,7 @@
#define _BSD_SOURCE
#include <sys/types.h>
#include <sys/stat.h>
+#include <sys/sysmacros.h>
#if defined(__DragonFly__)
#include <sys/param.h>