void-packages/srcpkgs/laditools/patches/vte3.patch
Đoàn Trần Công Danh 861ac185a6 srcpkgs/l*: 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

21 lines
947 B
Diff

Support for vte >= 0.52.
See https://bugs.launchpad.net/ubuntu/+source/laditools/+bug/1669111.
--- a/ladi-system-log 2015-09-13 23:38:51.000000000 +0200
+++ b/ladi-system-log 2018-10-17 18:04:59.687899590 +0200
@@ -190,13 +190,13 @@
def on_clear_text (self, data=None):
current_view = self.logview_notebook.get_current_page ()
- self.log_files[current_view]["term"].feed ("\033[2J\033[;f", -1)
+ self.log_files[current_view]["term"].feed ("\033[2J\033[;f")
def on_purge (self, data=None):
current_view = self.logview_notebook.get_current_page ()
# Opens the file in write anew mode thus clearing the file and close it right away
open (self.log_files[current_view]['logfile_path'], "w+")
- self.log_files[current_view]["term"].feed ("\033[2J\033[;f", -1)
+ self.log_files[current_view]["term"].feed ("\033[2J\033[;f")
def run (self):
self.ui.show_all()