From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH 0/6] emacs: Add "M-x guix-system-generations". Date: Sun, 10 Jan 2016 12:53:44 +0300 Message-ID: <1452419630-4399-1-git-send-email-alezost@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIChX-0002Oa-US for guix-devel@gnu.org; Sun, 10 Jan 2016 04:54:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aIChU-00026U-Oc for guix-devel@gnu.org; Sun, 10 Jan 2016 04:54:19 -0500 Received: from mail-lf0-x241.google.com ([2a00:1450:4010:c07::241]:33330) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIChU-00026C-Gv for guix-devel@gnu.org; Sun, 10 Jan 2016 04:54:16 -0500 Received: by mail-lf0-x241.google.com with SMTP id z62so2659346lfd.0 for ; Sun, 10 Jan 2016 01:54:16 -0800 (PST) Received: from localhost.localdomain ([217.107.192.146]) by smtp.gmail.com with ESMTPSA id h9sm19893746lbj.42.2016.01.10.01.54.14 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 10 Jan 2016 01:54:14 -0800 (PST) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org This patchset adds commands for displaying system generations — an emacs analog of 'guix system list-generations' shell command. The interface is the same as for "M-x guix-generations", i.e. you can look at installed "system" packages (by pressing RET on a generation), or compare 2 generations by pressing "=". Patches: [PATCH 1/6] guix system: Export accessors. I just exported this stuff, but perhaps it would be better to move it from (guix scripts system) to another module. [PATCH 2/6] emacs: profiles: Add 'guix-system-profile'. [PATCH 3/6] emacs: Find packages in system profiles. [PATCH 4/6] emacs: Replace 'generation-diff' search with 'profile-diff'. [PATCH 5/6] emacs: Remove 'generation' search type. These 3 patches are for some internal changes, related to the fact that system packages are installed in "system-NN-link/profile", while user packages are installed in "guix-profile-NN-link". [PATCH 6/6] emacs: Add interface for system generations. Is it OK to update 'NEWS' file in this patch?