void-packages/srcpkgs/chatty/patches/disable_version_check.patch
Đoàn Trần Công Danh c987560802 srcpkgs/c*: 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

20 lines
757 B
Diff

*** a/src/chatty/Chatty.java 2018-02-19 04:22:40.961744905 -0500
--- a/src/chatty/Chatty.java 2018-02-19 04:24:16.080555756 -0500
***************
*** 60,66 ****
* Enable Version Checker (if you compile and distribute this yourself, you
* may want to disable this)
*/
! public static final boolean VERSION_CHECK_ENABLED = true;
/**
* The regular URL of the textfile where the most recent version is stored.
--- 60,66 ----
* Enable Version Checker (if you compile and distribute this yourself, you
* may want to disable this)
*/
! public static final boolean VERSION_CHECK_ENABLED = false;
/**
* The regular URL of the textfile where the most recent version is stored.