From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56633) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4mz1-0008AC-2W for guix-patches@gnu.org; Mon, 02 Sep 2019 10:07:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4mz0-0007X1-4Z for guix-patches@gnu.org; Mon, 02 Sep 2019 10:07:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49783) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i4mz0-0007Wv-1G for guix-patches@gnu.org; Mon, 02 Sep 2019 10:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i4myz-0004ED-QI for guix-patches@gnu.org; Mon, 02 Sep 2019 10:07:01 -0400 Subject: [bug#37274] [PATCHES] libxfce4ui: Add gi and customize vendor. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56596) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4myk-0007u5-0U for guix-patches@gnu.org; Mon, 02 Sep 2019 10:06:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4myi-00070j-UQ for guix-patches@gnu.org; Mon, 02 Sep 2019 10:06:45 -0400 Received: from mout01.posteo.de ([185.67.36.141]:52063) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i4myi-0006yN-Mv for guix-patches@gnu.org; Mon, 02 Sep 2019 10:06:44 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 381BB16005E for ; Mon, 2 Sep 2019 16:06:43 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 46MX2B55R4z6tmB for ; Mon, 2 Sep 2019 16:06:42 +0200 (CEST) From: L p R n d n Date: Mon, 02 Sep 2019 16:06:42 +0200 Message-ID: <87blw2dc7h.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: 37274@debbugs.gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0008-gnu-libxfce4ui-Add-gobject-introspection-support.patch >From 2b27a5241957d3cb25a066bebac5c7168e4e8730 Mon Sep 17 00:00:00 2001 From: L p R n d n Date: Sun, 18 Aug 2019 22:35:07 +0200 Subject: [PATCH 08/19] gnu: libxfce4ui: Add gobject-introspection support. * gnu/packages/xfce.scm (libxfce4ui): Add gobject-introspection to native-inputs. --- 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 31a1209167..953d9675d0 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -171,7 +171,8 @@ storage system.") (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) - ("intltool" ,intltool))) + ("intltool" ,intltool) + ("gobject-introspection" ,gobject-introspection))) (propagated-inputs `(("gtk+-3" ,gtk+) ; required by libxfce4ui-2.pc ;; libxfce4kbd-private-2.pc refers to all these. -- 2.22.0 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0009-gnu-libxfce4ui-Add-vendor.patch >From 2218da3c69bc58aa9546b62b7e19331cba6e6c46 Mon Sep 17 00:00:00 2001 From: L p R n d n Date: Sun, 18 Aug 2019 22:36:55 +0200 Subject: [PATCH 09/19] gnu: libxfce4ui: Add vendor. * gnu/packages/xfce.scm (libxfce4ui)[arguments]: Add #:configure-flags. --- gnu/packages/xfce.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 953d9675d0..1a6de2e781 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -169,6 +169,9 @@ storage system.") (base32 "1npjhznmnckhnylsv3l7p1zvhckhmp9d7vifs8w12kdfmrg0fjf4")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--with-vendor-info=Guix"))) (native-inputs `(("pkg-config" ,pkg-config) ("intltool" ,intltool) -- 2.22.0 --=-=-=--