From mboxrd@z Thu Jan 1 00:00:00 1970 From: zimoun Subject: =?UTF-8?Q?Re=3A_the_upcoming_Great_Python2_Purge=E2=84=A2?= Date: Mon, 18 Feb 2019 15:42:35 +0100 Message-ID: References: <20181226093812.GR2581@macbook41> <20190218095619.GC7206@macbook41> <87o979wftc.fsf@elephly.net> <87h8d1we1v.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:42575) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvk8J-0007IC-O8 for guix-devel@gnu.org; Mon, 18 Feb 2019 09:43:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvk8H-00010q-QK for guix-devel@gnu.org; Mon, 18 Feb 2019 09:42:59 -0500 Received: from mail-qk1-x72b.google.com ([2607:f8b0:4864:20::72b]:37541) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvk8F-0000uz-2l for guix-devel@gnu.org; Mon, 18 Feb 2019 09:42:56 -0500 Received: by mail-qk1-x72b.google.com with SMTP id m9so10082640qkl.4 for ; Mon, 18 Feb 2019 06:42:47 -0800 (PST) In-Reply-To: <87h8d1we1v.fsf@elephly.net> 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: Ricardo Wurmus Cc: Guix Devel Dear, Maybe I am wrong and I miss one point. If you have local packages that depends on Guix packages, then it is not a big issue when the Guix packages are removed. Because you just have to `guix pull --commit=' where points to a Guix commit owning the required packages. And if I have correct, you can put that in a manifest and then instantiate an environment for your local packages. Instead of splitting off all of Python 2 into a separate channel, why not just put the python2 packages which need to be removed. Then nothing breaks and it provides a picture of how many python2 packages necessary to Guix are still there. Speaking about channel, instead of GUIX_PACKAGE_PATH=~/work/guix/bimbs you create the file ~/.config/guix/channels.scm containing: (cons* (channel (name 'bimsb) (url "file:///home/simon/work/guix/bimsb") (branch "master")) %default-channels) Then: guix pull guix package -i Here the url file:///home/simon/work/guix/bimsb is a clone of https://github.com/BIMSBbioinfo/guix-bimsb But you can directly specify Git repo online etc. Hope that helps All the best, simon