From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] Update gd and php Date: Fri, 20 Jan 2017 12:30:02 -0500 Message-ID: <20170120173002.GA29902@jasmine> References: <20170119221919.7a74f45a@lepiller.eu> <20170120055319.GA28011@jasmine> <20170120153318.GB30118@jasmine> <0b4d2ae981add092d4fd8e5b656d184c@lepiller.eu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUd0r-0000BD-44 for guix-devel@gnu.org; Fri, 20 Jan 2017 12:30:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUd0n-00038c-4g for guix-devel@gnu.org; Fri, 20 Jan 2017 12:30:09 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:38189) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cUd0m-00038B-Vh for guix-devel@gnu.org; Fri, 20 Jan 2017 12:30:05 -0500 Content-Disposition: inline In-Reply-To: <0b4d2ae981add092d4fd8e5b656d184c@lepiller.eu> 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: julien lepiller Cc: guix-devel@gnu.org On Fri, Jan 20, 2017 at 05:12:46PM +0100, julien lepiller wrote: > How do you make php use gd-2.2.4, then? It needs to be updated too because > the security issues with gd are still present in our current php package. It seems that gd-for-php gets replaced by gd-2.2.4 now: $ ./pre-inst-env guix build -e '(@@ (gnu packages php) gd-for-php)' /gnu/store/xg2r8hk5axfq7xk1aj9ql5ncgkpnh0vk-gd-2.2.4 But, building PHP with --dry-run implies that gd@2.2.3 will be used. I think that we need to set (replacement #f) in gd-for-php, so that PHP is built with gd@2.2.3, which will then be grafted to refer to gd-2.2.4 in the built output of PHP. I'm a little unsure. Does anyone have advice?