From 3ee0244295f6421f2e86255f671202423e6d5927 Mon Sep 17 00:00:00 2001 From: reback00 <51861250+reback00@users.noreply.github.com> Date: Thu, 27 Jun 2019 05:14:40 +0600 Subject: [PATCH] ddgtk: fixes for vte, latest meson, py module name, additional deps 1. [template] Added additional dependencies against build warnings 2. [patch] Updated for latest meson 3. [patch] Updated for latest python module name (instead of deprecated `python3` module, changed to `python` module, according to: https://mesonbuild.com/Release-notes-for-0-48-0.html#dependencyversion-now-applies-to-all-dependency-types ) 4. [patch] Fixed breakage of write functionality due to recent changes in Vte python bindings. Used to raise a `TypeError: Vte.Terminal.feed_child() takes exactly 2 arguments (3 given)` error which has been fixed. (Explanation here: https://github.com/Guake/guake/issues/1243#issuecomment-410208659 ) --- srcpkgs/ddgtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ddgtk/template b/srcpkgs/ddgtk/template index 84948070877..d5f27bb4093 100644 --- a/srcpkgs/ddgtk/template +++ b/srcpkgs/ddgtk/template @@ -3,7 +3,6 @@ pkgname=ddgtk version=0.1 revision=2 build_style=meson -patch_args="-Np1" hostmakedepends="pkg-config glib glib-devel gettext appstream-glib" depends="python3 python3-gobject gtk+3" short_desc="GUI frontend for dd to create bootable ISO images for Linux" @@ -12,3 +11,4 @@ license="GPL-3.0-or-later" homepage="https://github.com/gort818/ddgtk" distfiles="https://github.com/gort818/ddgtk/archive/${version}.tar.gz" checksum=0386336681b24d648cdce3daa0c2b83c77a69773296e97a8427b67cbd27531ed +patch_args="-Np1"