Ticket #35263: Portfile

File Portfile, 1.7 KB (added by lbschenkel (Leonardo Brondani Schenkel), 12 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id: Portfile 88422 2012-01-02 01:18:04Z ryandesign@macports.org $
3
4PortSystem              1.0
5PortGroup               python 1.0
6
7name                    py27-hggit
8version                 0.3.2
9revision                0
10epoch                   20110928
11categories              python devel
12platforms               darwin
13maintainers             easieste openmaintainer
14supported_archs         noarch
15
16homepage                http://hg-git.github.com/
17description             Push to and pull from a Git server repository from Mercurial.
18long_description        This is the Hg-Git plugin for Mercurial, adding the ability \
19                        to push to and pull from a Git server repository from Mercurial.\
20                        This means you can collaborate on Git based projects from Mercurial, \
21                        or use a Git server as a collaboration point for a team with \
22                        developers using both Git and Mercurial.
23
24homepage                http://hg-git.github.com/
25master_sites            http://pypi.python.org/packages/source/h/hg-git
26distname                hg-git-${version}
27
28checksums               rmd160  bbde5969a323cfd8894b92bf731363238a0a9475 \
29                        sha256  fc5517e4af09478835d97e3c3b37cc95b9783ff5b585ef893f891057f8b52f43
30
31depends_lib             port:mercurial \
32                        port:py27-dulwich
33
34python.default_version 27
35
36notes "
37To use this extension, add the following to your ~/.hgrc:
38
39\[extensions\]   
40hggit=${python.prefix}/lib/python2.7/site-packages/hggit
41"