Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/bzr/Portfile

Revision 43315, 1.8 KB (checked in by ram@…, 4 weeks ago)

devel/bzr: add missing dependency on py25-curses, closes #17585

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem    1.0
4PortGroup     python25 1.0
5
6name          bzr
7version       1.10
8revision      1
9set branch    [join [lrange [split ${version} .] 0 1] .]
10categories    devel python
11platforms     darwin
12maintainers   ram openmaintainer
13
14description   The next-generation distributed version control system
15long_description  Bazaar is an open source distributed version control \
16    system that is powerful, friendly, and scalable. It manages trees of \
17    files and subdirectories, In particular, it records revisions of trees, \
18    representing their state at a particular point in time, and information \
19    about those revisions and their relationships. Recording and retrieving \
20    tree revisions is useful in several ways if you are writing software or \
21    documents or doing similar creative work.
22
23homepage      http://bazaar-vcs.org/
24master_sites  https://launchpad.net/${name}/${branch}/${version}/+download/
25
26checksums     md5 1b31db46601efa8812c4d545a7069f82 \
27              sha1 27bc0ceabe6271f960e5a93eb058640004078152 \
28              rmd160 ed62ad7203b2e8f5a9d438533509f91872a455ca
29
30patchfiles    patch-setup.py.diff
31
32depends_lib-append  port:py25-paramiko \
33                    port:py25-crypto \
34                    port:py25-hashlib \
35                    port:py25-zlib \
36                    port:py25-bz2 \
37                    port:py25-socket-ssl \
38                    port:py25-curl \
39                    port:py25-docutils \
40                    port:py25-pyrex \
41                    port:py25-curses
42
43test.run      yes
44test.cmd      make
45test.target   check
46
47post-destroot {
48  xinstall -m 644 -W ${worksrcpath} INSTALL NEWS README TODO \
49    ${destroot}${prefix}/share/doc/${name}
50}
51
52universal_variant no
53
54livecheck.check     regex
55livecheck.url       ${homepage}
56livecheck.regex     {Bazaar (\d+(?:\.\d+)*) was released}
Note: See TracBrowser for help on using the browser.