[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Add Mercurial to version-control.scm
From: |
Arne Babenhauserheide |
Subject: |
Add Mercurial to version-control.scm |
Date: |
Fri, 06 Sep 2013 11:32:32 +0200 |
User-agent: |
Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.8 Emacs/24.3 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) |
Hi,
Here’s a patch to add Mercurial as package:
--- /usr/local/share/guile/site/2.0/gnu/packages/version-control.scm
2013-09-04 16:27:21.495618474 +0200
+++ /home/arne/version-control.scm 2013-09-06 11:13:57.080871243 +0200
@@ -64,6 +64,26 @@
from a command line or use a GUI application.")
(license gpl2+)))
+(define-public mercurial
+ (package
+ (name "mercurial")
+ (version "2.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://mercurial.selenic.com/release/mercurial-"
version ".tar.gz"))
+ (sha256
+ (base32
+ "121m8f7vmipmdg00cnzdz2rjkgydh28mwfirqkrbs5fv089vywl4"))))
+ (build-system python-build-system)
+ (home-page "http://mercurial.selenic.com")
+ (synopsis "Decentralized version control system")
+ (description
+ "Mercurial is a free, distributed source control management tool.
+It efficiently handles projects of any size and offers an easy and intuitive
interface.")
+ (license gpl2+)))
+
+
(define-public subversion
(package
(name "subversion")
I put Mercurial between bazaar and subversion to keep alphabetic
ordering. Later items might not be ordered alphabetically, but that’s
out of my responsibility :)
Best wishes,
Arne
- Add Mercurial to version-control.scm,
Arne Babenhauserheide <=