From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Replace python-pep8 by python-pycodestyle. Date: Mon, 7 Nov 2016 17:30:29 -0500 Message-ID: <20161107223029.GA25544@jasmine> References: <20161105194832.GA31483@macbook42.flashner.co.il> <20161107213950.24461-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3sR0-0002nL-PT for guix-devel@gnu.org; Mon, 07 Nov 2016 17:30:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3sQx-0003dr-Ly for guix-devel@gnu.org; Mon, 07 Nov 2016 17:30:34 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:38208) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c3sQx-0003dc-6M for guix-devel@gnu.org; Mon, 07 Nov 2016 17:30:31 -0500 Content-Disposition: inline In-Reply-To: <20161107213950.24461-1-dannym@scratchpost.org> 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: Danny Milosavljevic Cc: guix-devel@gnu.org On Mon, Nov 07, 2016 at 10:39:50PM +0100, Danny Milosavljevic wrote: > * gnu/packages/python.scm (python-pep8, python2-pep8): > Add replacement. > --- > gnu/packages/python.scm | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 5b5287e..c6ec6d3 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -5645,6 +5645,7 @@ applications.") > (define-public python-pep8 > (package > (name "python-pep8") > + (replacement python-pycodestyle) The grafted replacement system is for packages that have the same binary interface, and should be used when we must change a package *now* but it would otherwise require a huge number of rebuilds. That is, for security updates to core packages. There aren't very many packages using python-pep8 and python2-pep8, so we should just make them all use this new package that supersedes python-pep8.