From mboxrd@z Thu Jan 1 00:00:00 1970 From: Divan Santana Subject: Updating a package Date: Mon, 23 Sep 2019 12:51:42 +0200 Message-ID: <87impji8uk.fsf@fnb.co.za> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:38164) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iCM26-0006Us-QF for guix-devel@gnu.org; Mon, 23 Sep 2019 06:57:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iCM24-0006lN-2m for guix-devel@gnu.org; Mon, 23 Sep 2019 06:57:29 -0400 Received: from [156.0.193.126] (port=46485 helo=mail.santanas.co.za) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iCM23-0006f1-9U for guix-devel@gnu.org; Mon, 23 Sep 2019 06:57:28 -0400 Received: from authenticated-user (mail.santanas.co.za [156.0.193.126]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by mail.santanas.co.za (Postfix) with ESMTPSA id 435E85F4F0 for ; Mon, 23 Sep 2019 12:51:44 +0200 (SAST) 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: Guix-devel Hi Guix, I'm trying to go about updating a package and submitting a patch. A good learning process for me. I managed to update the package, emacs-exwm and to build it successfully via: ./pre-inst-env guix build emacs-exwm Few Qs: Should I do this after updating a package? make check to check all tests pass? Or rather the CI does that? Secondly, how do I go about testing this package on my system (laptop running guix) to see if the updated package actually works? I've done this in channels.scm (list (channel (name 'guix) (url "https://gitlab.com/divansantana/guix/") (branch "master"))) And then updated to my fork, though not sure if that is the best way. I suppose it may be better to test these things in a vm via guix vm. Thanks!