From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Baines Subject: [PATCH 3/3] gnu: Add vcsh Date: Sat, 13 Feb 2016 16:07:55 +0000 Message-ID: <1455379675-27516-4-git-send-email-mail@cbaines.net> References: <1455379675-27516-1-git-send-email-mail@cbaines.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUck5-0007vn-6V for guix-devel@gnu.org; Sat, 13 Feb 2016 11:08:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aUck4-0001WZ-3z for guix-devel@gnu.org; Sat, 13 Feb 2016 11:08:17 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:55703 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUck3-0001WR-QU for guix-devel@gnu.org; Sat, 13 Feb 2016 11:08:16 -0500 In-Reply-To: <1455379675-27516-1-git-send-email-mail@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: guix-devel@gnu.org * gnu/packages/version-control.scm (vcsh): New variable. --- gnu/packages/version-control.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 721a284..fd2056d 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1058,3 +1058,41 @@ Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.") "This package allows you to use your hubic account as a \"special repository\" with git-annex.") (license gpl3+))) + +(define-public vcsh + (package + (name "vcsh") + (version "1.20151229") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/RichiH/vcsh/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ym3swkh738c3vciffvlr96vqzhwmzkb8ajqzap8f0j9n039a1mf")))) + (build-system gnu-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'check) + (delete 'build)) + #:make-flags (list (string-append "PREFIX=" %output)))) + (native-inputs + `(("which" ,which))) + (inputs + `(("perl-shell-command" ,perl-shell-command) + ("perl-test-most" ,perl-test-most))) + (propagated-inputs + `(("git" ,git))) + (home-page "https://github.com/RichiH/vcsh") + (synopsis "Version control system for $HOME") + (description + "vcsh provides the @code{vcsh} command, which 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 in to different repositories, for example you +may keep your bash configuration in a separate Git repository from your +emacs configuration.") + (license gpl2+))) -- 2.7.0