From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: gnome-tweak-tool: Use glib-or-gtk-build-system Date: Mon, 09 Jan 2017 10:15:38 +0100 Message-ID: <87d1fwr3ut.fsf@gnu.org> References: <20161227223312.16791-1-mail@cbaines.net> <8737h56kwj.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52832) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQW3M-0003bT-U5 for guix-devel@gnu.org; Mon, 09 Jan 2017 04:15:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQW3J-0001Z6-QB for guix-devel@gnu.org; Mon, 09 Jan 2017 04:15:44 -0500 In-Reply-To: <8737h56kwj.fsf@gmail.com> (Chris Marusich's message of "Fri, 30 Dec 2016 15:45:48 -0800") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Chris Marusich Cc: guix-devel@gnu.org Chris Marusich skribis: > Christopher Baines writes: > >> * gnu/packages/gnome.scm (gnome-tweak-tool): Switch from the gnu build >> system to the glib-or-gtk build system, to fix missing gobject >> introspection namespaces. >> --- >> gnu/packages/gnome.scm | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm >> index 91da7783a..5f13cdd0e 100644 >> --- a/gnu/packages/gnome.scm >> +++ b/gnu/packages/gnome.scm >> @@ -5288,12 +5288,12 @@ existing databases over the internet.") >> (sha256 >> (base32 >> "1fj6wjvnjygzm9br3sw9gya6d18yly1rm69yaiar9spfbkvv4wai")= ))) >> - (build-system gnu-build-system) >> + (build-system glib-or-gtk-build-system) >> (arguments >> `(#:configure-flags '("--localstatedir=3D/tmp" >> "--sysconfdir=3D/tmp") >> #:imported-modules ((guix build python-build-system) >> - ,@%gnu-build-system-modules) >> + ,@%glib-or-gtk-build-system-modules) >> #:phases (modify-phases %standard-phases >> (add-after 'install 'wrap >> (@@ (guix build python-build-system) wrap))))) > > When I build this with --rounds=3D2, I get the following error: > > output =E2=80=98/gnu/store/2469sq8ny3f7dffx3v30y27d882hy5k4-module-impo= rt-compiled=E2=80=99 of =E2=80=98/gnu/store/8frm3y92vlkxjb2x0ljcrzx4qy357wv= 9-module-import-compiled.drv=E2=80=99 differs from previous round This is a =E2=80=9Cknown issue=E2=80=9D, but the good news is that it=E2=80= =99s fixed upstream: https://bugs.gnu.org/20272 Ludo=E2=80=99.