From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Remove redundancy where mkdir-p is followed by install-file . Date: Sun, 20 Nov 2016 12:05:37 -0500 Message-ID: <20161120170537.GA10828@jasmine> References: <5cf95ba2b20f58e0bfa9392ea0eb92cf@mykolab.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34635) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c8r7P-00049p-4A for guix-devel@gnu.org; Mon, 21 Nov 2016 11:06:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c8r7K-0005Sy-7U for guix-devel@gnu.org; Mon, 21 Nov 2016 11:06:55 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:34667) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c8r7K-0005Sk-3d for guix-devel@gnu.org; Mon, 21 Nov 2016 11:06:50 -0500 Content-Disposition: inline In-Reply-To: <5cf95ba2b20f58e0bfa9392ea0eb92cf@mykolab.ch> 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: Petter Cc: guix-devel@gnu.org On Sun, Nov 20, 2016 at 04:28:29PM +0100, Petter wrote: > From 595d438789c7c9a293ae7fac500ace7422073624 Mon Sep 17 00:00:00 2001 > From: Petter > Date: Sun, 20 Nov 2016 13:39:13 +0100 > Subject: [PATCH] gnu: Remove redundancy where mkdir-p is followed by > install-file . > > * gnu/packages/bioinformatics.scm (bwa)[source]: Remove redundant mkdir-p. > * gnu/packages/bioinformatics.scm (eigensoft)[source]: Likewise. > * gnu/packages/bioinformatics.scm (snap-aligner)[source]: Likewise. > * gnu/packages/bioinformatics.scm (pardre)[source]: Likewise. > * gnu/packages/bioinformatics.scm (piranha)[source]: Likewise. > * gnu/packages/maths.scm (hypre)[source]: Likewise. > * gnu/packages/mp3.scm (mpc123)[source]: Likewise. > * gnu/packages/music.scm (tuxguitar)[source]: Likewise. > * gnu/packages/pdf.scm (impressive)[source]: Likewise. > * gnu/packages/qemu.scm (qemu)[source]: Likewise. > * gnu/packages/tls.scm (openssl)[source]: Likewise. Thanks! A few requests... First, I think that most, if not all, of these changes are not in the [source] field of the changed package definitions. I bet that they are all in the [arguments] field. Can you send a revised patch with an updated commit message? Second, we can't change the OpenSSL package on the master branch, because many things depend on it: $ guix refresh -l openssl@1.0.2 Building the following 1090 packages would ensure 2981 dependent packages are rebuilt [...] We do non-security related changes to that sort of "core" package on the core-updates branch, which is merged into master every couple months. Otherwise, we'd be rebuilding everything constantly, and users would be unhappy. So, will you submit a separate patch for the OpenSSL change? Make sure it applies cleanly to the core-updates branch. You don't need to try building this; it will take forever, as you noticed.