From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 3/3] gnu: Add vcsh Date: Wed, 17 Feb 2016 19:11:44 -0500 Message-ID: <20160218001144.GA26345@jasmine> References: <1455379675-27516-1-git-send-email-mail@cbaines.net> <1455379675-27516-4-git-send-email-mail@cbaines.net> <20160213224108.GC1176@jasmine> <56C0E530.9010604@cbaines.net> <20160217181107.GA31074@solar> <56C4C2FC.7070107@cbaines.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41490) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWCCG-00065T-TH for guix-devel@gnu.org; Wed, 17 Feb 2016 19:11:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWCCA-0003CE-VM for guix-devel@gnu.org; Wed, 17 Feb 2016 19:11:52 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:42062) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWCCA-0003CA-OI for guix-devel@gnu.org; Wed, 17 Feb 2016 19:11:46 -0500 Content-Disposition: inline In-Reply-To: <56C4C2FC.7070107@cbaines.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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Christopher Baines Cc: guix-devel@gnu.org On Wed, Feb 17, 2016 at 06:59:08PM +0000, Christopher Baines wrote: > From a4d10c0c98b4b9b3df05951b9a38d37b8b1da6d3 Mon Sep 17 00:00:00 2001 > From: Christopher Baines > Date: Sat, 13 Feb 2016 23:49:25 +0000 > Subject: [PATCH] gnu: Add vcsh > > * gnu/packages/version-control.scm (vcsh): New variable. [...] > + (propagated-inputs > + `(("git" ,git))) I missed this earlier. We don't usually propagate this sort of "end-user program" dependencies. For example rsync does not propagate ssh; the user must install ssh. [0] One problem is that the user may want to update git but not vcsh, or vice versa. Multiple profiles would be required for the user to use their desired version of git and vcsh. Since vcsh's test suite requires git, I think it should be a native input. Your thoughts? [0] I know that ssh is not strictly required to use rsync, whereas it seems that vcsh cannot work without git, but bear with me. > + (home-page "https://github.com/RichiH/vcsh") > + (synopsis "Version control system for $HOME") > + (description > + "vcsh allows you to maintain several Git repositories in one single > +directory. This can be useful when using version control for files in your > +home directory, as it allows for the separation of the files into different > +repositories, for example you may keep your bash configuration in a separate > +Git repository from your emacs configuration.") > + (license gpl2+))) > -- > 2.7.0 >