c987560802
```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 ```
19 lines
757 B
Diff
19 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.
|