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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name git-flow |
---|
7 | version 0.4 |
---|
8 | description Git extensions for Vincent Driessen branching. |
---|
9 | long_description A collection of Git extensions to provide high-level \ |
---|
10 | repository operations for Vincent Driessen branching. |
---|
11 | maintainers maiar.org:jason-macports |
---|
12 | categories devel |
---|
13 | platforms darwin |
---|
14 | license BSD |
---|
15 | supported_archs noarch |
---|
16 | |
---|
17 | homepage http://github.com/nvie/gitflow |
---|
18 | master_sites github |
---|
19 | fetch.type git |
---|
20 | git.url git://github.com/nvie/gitflow.git |
---|
21 | git.branch dc5d08dfad1ae4cc6a7d |
---|
22 | |
---|
23 | depends_build-append port:git-core |
---|
24 | depends_run-append port:getopt |
---|
25 | use_configure no |
---|
26 | worksrcdir ${distname} |
---|
27 | |
---|
28 | post-fetch { |
---|
29 | # this will removed once the python re-write is complete |
---|
30 | system "cd ${worksrcpath} && git submodule init && git submodule update" |
---|
31 | } |
---|
32 | |
---|
33 | build { } |
---|
34 | |
---|
35 | destroot.destdir prefix=${destroot}${prefix} |
---|
36 | |
---|
37 | livecheck.type regex |
---|
38 | livecheck.url ${homepage} |
---|
39 | livecheck.regex {\/tree\/(\d+(?:\.\d+)*)">\1<} |
---|