Package: tootle Version: 0.2.0-2 Followup-For: Bug #952099 User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu focal ubuntu-patch
Hi, In Ubuntu, the attached patch was applied to achieve the following: * d/p/vala-0.46.patch: Make constructor for AbstractView protected to fix FTBFS against Vala >= 0.46. Thanks for considering the patch. Logan -- System Information: Debian Release: bullseye/sid APT prefers focal APT policy: (500, 'focal') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.4.0-14-generic (SMP w/8 CPU cores) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
diff -Nru tootle-0.2.0/debian/patches/series tootle-0.2.0/debian/patches/series --- tootle-0.2.0/debian/patches/series 2018-12-01 09:02:47.000000000 -0500 +++ tootle-0.2.0/debian/patches/series 2020-03-15 22:15:06.000000000 -0400 @@ -1,2 +1,3 @@ 001-insert-icon-search-path.patch 002-browser-not-found-fallback.patch +vala-0.46.patch diff -Nru tootle-0.2.0/debian/patches/vala-0.46.patch tootle-0.2.0/debian/patches/vala-0.46.patch --- tootle-0.2.0/debian/patches/vala-0.46.patch 1969-12-31 19:00:00.000000000 -0500 +++ tootle-0.2.0/debian/patches/vala-0.46.patch 2020-03-15 22:15:39.000000000 -0400 @@ -0,0 +1,11 @@ +--- a/src/Views/AbstractView.vala ++++ b/src/Views/AbstractView.vala +@@ -21,7 +21,7 @@ + }); + } + +- public AbstractView () { ++ protected AbstractView () { + show_all (); + } +