From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: bug#25537: gtksourceview-2 has xorg-server and shared-mime-info as inputs rather than native-inputs (they are just required for tests) Date: Wed, 25 Jan 2017 23:20:49 +0100 Message-ID: <20170125232049.0c8aca99@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40613) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWVx8-0004oC-WC for bug-guix@gnu.org; Wed, 25 Jan 2017 17:22:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWVx4-0006s4-0f for bug-guix@gnu.org; Wed, 25 Jan 2017 17:22:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:45650) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWVx3-0006ry-Ui for bug-guix@gnu.org; Wed, 25 Jan 2017 17:22:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cWVx3-0000tb-Pq for bug-guix@gnu.org; Wed, 25 Jan 2017 17:22:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40407) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWVw4-00044K-9L for bug-guix@gnu.org; Wed, 25 Jan 2017 17:21:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWVvz-0006bL-9s for bug-guix@gnu.org; Wed, 25 Jan 2017 17:21:00 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:55608) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cWVvz-0006b5-2i for bug-guix@gnu.org; Wed, 25 Jan 2017 17:20:55 -0500 Received: from localhost (178.112.96.100.wireless.dyn.drei.com [178.112.96.100]) by dd1012.kasserver.com (Postfix) with ESMTPSA id 1DA051CA03B9 for ; Wed, 25 Jan 2017 23:20:53 +0100 (CET) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 25537@debbugs.gnu.org (define-public gtksourceview-2 (package (name "gtksourceview") (version "2.10.5") ; This is the last version which builds against gtk+2 (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" (version-major+minor version) "/" name "-" version ".tar.bz2")) (sha256 (base32 "07hrabhpl6n8ajz10s0d960jdwndxs87szxyn428mpxi8cvpg1f5")))) (build-system gnu-build-system) (inputs `(("gtk" ,gtk+-2) ;; These two are needed only to allow the tests to run successfully. ("xorg-server" ,xorg-server) ; <====================== ?! ("shared-mime-info" ,shared-mime-info))) ; <====================== ?! (native-inputs `(("intltool" ,intltool) ("glib" ,glib "bin") ; for glib-genmarshal, etc. ("pkg-config" ,pkg-config))) Why? Also, gtksourceview (without -2) doesn't. Weird...