void-packages/srcpkgs/taskd/patches/musl.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
289 B
Diff

--- a/src/Directory.cpp 2015-10-23 19:01:36.570860470 -0400
+++ b/src/Directory.cpp 2015-10-23 19:02:12.097860878 -0400
@@ -29,6 +29,7 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
+#include <limits.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>