From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35251) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieLx5-0005O0-4S for guix-patches@gnu.org; Mon, 09 Dec 2019 11:32:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieLx4-00041d-2n for guix-patches@gnu.org; Mon, 09 Dec 2019 11:32:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48366) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieLx3-00041X-TV for guix-patches@gnu.org; Mon, 09 Dec 2019 11:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieLx3-0008HD-QD for guix-patches@gnu.org; Mon, 09 Dec 2019 11:32:01 -0500 Subject: [bug#38547] [PATCH v2] gnu: libwnck@2.30.7: Override build system for old release. Resent-Message-ID: Date: Mon, 9 Dec 2019 17:31:34 +0100 From: Miguel Arruga Vivas Message-ID: <20191209173135.06edb2af@gmail.com> In-Reply-To: <20191209153610.6dadf5d1@gmail.com> References: <20191209153610.6dadf5d1@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/PWbATHZHis4l0N1abfaFCI_" 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: 38547@debbugs.gnu.org --MP_/PWbATHZHis4l0N1abfaFCI_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Sorry, last patch didn't work as it tries to install files into glib folder. This one keeps the native-inputs before d3b406969a. Best regards, Miguel --MP_/PWbATHZHis4l0N1abfaFCI_ Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-libwnck-2.30.7-Override-build-system-for-old-rel.patch >From 6f345bf43973a1fabd5dceb29aebf3918eb57837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Arruga=20Vivas?= Date: Mon, 9 Dec 2019 15:13:41 +0100 Subject: [PATCH] gnu: libwnck@2.30.7: Override build system for old release. * gnu/packages/gnome.scm (libwnck-2)[build-system]: Override with gnu-build-system. --- gnu/packages/gnome.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 979093277b..6a9a42dcc8 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2343,6 +2343,10 @@ Hints specification (EWMH).") (sha256 (base32 "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) (propagated-inputs `(("gtk+" ,gtk+-2) ("libxres" ,libxres) -- 2.23.0 --MP_/PWbATHZHis4l0N1abfaFCI_--