From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56246) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4mw8-00051V-5z for guix-patches@gnu.org; Mon, 02 Sep 2019 10:04:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4mw6-00032U-Ve for guix-patches@gnu.org; Mon, 02 Sep 2019 10:04:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49768) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i4mw6-00032L-SK for guix-patches@gnu.org; Mon, 02 Sep 2019 10:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i4mw6-00048A-M8 for guix-patches@gnu.org; Mon, 02 Sep 2019 10:04:02 -0400 Subject: [bug#37271] [PATCHES] libxfce4util: Add vala and gi support. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56142) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4mvB-00042g-04 for guix-patches@gnu.org; Mon, 02 Sep 2019 10:03:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4mv9-0001W0-9L for guix-patches@gnu.org; Mon, 02 Sep 2019 10:03:04 -0400 Received: from mout01.posteo.de ([185.67.36.141]:34463) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i4mv9-0001Sw-1h for guix-patches@gnu.org; Mon, 02 Sep 2019 10:03:03 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 171DC160064 for ; Mon, 2 Sep 2019 16:02:58 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 46MWxs46xXz6tmP for ; Mon, 2 Sep 2019 16:02:57 +0200 (CEST) From: L p R n d n Date: Mon, 02 Sep 2019 16:02:56 +0200 Message-ID: <87k1aqdcdr.fsf@lprndn.info> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37271@debbugs.gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0003-gnu-libxfce4util-Add-gobject-introspection-support.patch >From 6db4063b2497dcb5366bc43fbdb0e65a67b1d803 Mon Sep 17 00:00:00 2001 From: L p R n d n Date: Sun, 18 Aug 2019 21:34:09 +0200 Subject: [PATCH 03/19] gnu: libxfce4util: Add gobject-introspection support. * gnu/packages/xfce.scm (libxfce4util): Add gobject-introspection to native-inputs. --- gnu/packages/xfce.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index df894b5c9a..aa7a99e95b 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -99,6 +99,7 @@ (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) + ("gobject-introspection" ,gobject-introspection) ("intltool" ,intltool))) (propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc (home-page "https://www.xfce.org/") -- 2.22.0 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0004-gnu-libxfce4util-Build-Vala-bindings.patch >From 2ce598f7e510570314607ad8e6a9d89013a1def4 Mon Sep 17 00:00:00 2001 From: L p R n d n Date: Tue, 20 Aug 2019 12:17:00 +0200 Subject: [PATCH 04/19] gnu: libxfce4util: Build Vala bindings. * gnu/packages/xfce.scm (libxfce4util)[native-inputs]: Add vala. --- gnu/packages/xfce.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index aa7a99e95b..3417fca282 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -100,7 +100,8 @@ (native-inputs `(("pkg-config" ,pkg-config) ("gobject-introspection" ,gobject-introspection) - ("intltool" ,intltool))) + ("intltool" ,intltool) + ("vala" ,vala))) (propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc (home-page "https://www.xfce.org/") (synopsis "Basic utility library for Xfce") -- 2.22.0 --=-=-=--