Ticket #29979: Portfile

File Portfile, 1.9 KB (added by marc.schlaich@…, 13 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python27 1.0
6
7name                py27-mercurial
8version             1.8.4
9categories-append   lang python
10license             GPLv2+
11maintainers         gmail.com:marc.schlaich
12description         A fast, lightweight, distributed SCM system written in \
13                    Python.
14long_description    Mercurial is a fast, lightweight Source Control Management \
15                    system designed for efficient handling of very large \
16                    distributed projects. A distributed SCM tool is designed \
17                    to support a model in which each Repository is loosely \
18                    coupled to many others. Each Repository contains a \
19                    complete set of metadata describing one or more projects. \
20                    These repositories may be located almost anywhere. \
21                    Individual developers only need access to their own \
22                    repositories, not to a central one, in order to commit \
23                    changes. Changes can be share via the builtin webserver, \
24                    CGI, SSH or a stream of patch emails. Mercurial supports \
25                    Apples' FileMerge for merges.
26
27platforms           darwin
28
29homepage            http://www.selenic.com/mercurial/
30master_sites        http://mercurial.selenic.com/release/
31
32distname            mercurial-${version}
33
34checksums           sha1    25c4f9b1ad1c5c8ef94ca5b120c9af6bdfd23bdc \
35                    rmd160  c9c21ac48e6c37360f4de5833ddf0ee5e2594620
36
37depends_run         port:curl-ca-bundle
38depends_build-append port:py27-distribute
39
40livecheck.url   http://mercurial.selenic.com/release/
41livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"