void-packages/srcpkgs/freeplane/patches/remove_mac.patch
Đoàn Trần Công Danh be5369a0cb srcpkgs/f*: convert patches to -Np1
* fpc 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
```
2021-06-20 13:17:29 +07:00

13 lines
440 B
Diff

--- a/freeplane_debughelper/build.gradle 2020-06-29 17:33:42.544000000 +1000
+++ b/freeplane_debughelper/build.gradle 2020-06-29 17:33:48.627000000 +1000
@@ -7,9 +7,7 @@
dependencies {
def exclusions = [project.name, 'freeplane_ant']
- if (! Os.isFamily(Os.FAMILY_MAC)) {
- exclusions.add('freeplane_mac')
- }
+ exclusions.add('freeplane_mac')
parent.subprojects.findAll{! exclusions.contains(it.name)}.each {
runtimeOnly it
}