From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:55417) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gs3Vq-0004fi-H4 for guix-patches@gnu.org; Fri, 08 Feb 2019 05:36:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gs3Vp-00087v-Sj for guix-patches@gnu.org; Fri, 08 Feb 2019 05:36:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39660) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gs3Vp-00087m-PX for guix-patches@gnu.org; Fri, 08 Feb 2019 05:36:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gs3Vp-0007ia-Hh for guix-patches@gnu.org; Fri, 08 Feb 2019 05:36:01 -0500 Subject: [bug#34385] [PATCH 2/2] guix: ruby-build-system: Do gem install --verbose. Resent-Message-ID: From: Christopher Baines Date: Fri, 8 Feb 2019 10:35:52 +0000 Message-Id: <20190208103552.5992-2-mail@cbaines.net> In-Reply-To: <20190208103552.5992-1-mail@cbaines.net> References: <875ztur313.fsf@cbaines.net> <20190208103552.5992-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34385@debbugs.gnu.org This is helpful as it displays more information about what gem install is doing, especially for packages with native extensions. * guix/build/ruby-build-system.scm (install): Add --verbose to gem install command. --- guix/build/ruby-build-system.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/build/ruby-build-system.scm b/guix/build/ruby-build-system.scm index cdabd829e2..64b4400f1a 100644 --- a/guix/build/ruby-build-system.scm +++ b/guix/build/ruby-build-system.scm @@ -144,6 +144,7 @@ GEM-FLAGS are passed to the 'gem' invokation, if present." (or (zero? (apply system* "gem" "install" gem-file + "--verbose" "--local" "--ignore-dependencies" "--vendor" ;; Executables should go into /bin, not ;; /lib/ruby/gems. -- 2.20.1