|
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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup python25 1.0 |
|---|
| 5 | |
|---|
| 6 | name bzr |
|---|
| 7 | version 1.10 |
|---|
| 8 | revision 1 |
|---|
| 9 | set branch [join [lrange [split ${version} .] 0 1] .] |
|---|
| 10 | categories devel python |
|---|
| 11 | platforms darwin |
|---|
| 12 | maintainers ram openmaintainer |
|---|
| 13 | |
|---|
| 14 | description The next-generation distributed version control system |
|---|
| 15 | long_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 | |
|---|
| 23 | homepage http://bazaar-vcs.org/ |
|---|
| 24 | master_sites https://launchpad.net/${name}/${branch}/${version}/+download/ |
|---|
| 25 | |
|---|
| 26 | checksums md5 1b31db46601efa8812c4d545a7069f82 \ |
|---|
| 27 | sha1 27bc0ceabe6271f960e5a93eb058640004078152 \ |
|---|
| 28 | rmd160 ed62ad7203b2e8f5a9d438533509f91872a455ca |
|---|
| 29 | |
|---|
| 30 | patchfiles patch-setup.py.diff |
|---|
| 31 | |
|---|
| 32 | depends_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 | |
|---|
| 43 | test.run yes |
|---|
| 44 | test.cmd make |
|---|
| 45 | test.target check |
|---|
| 46 | |
|---|
| 47 | post-destroot { |
|---|
| 48 | xinstall -m 644 -W ${worksrcpath} INSTALL NEWS README TODO \ |
|---|
| 49 | ${destroot}${prefix}/share/doc/${name} |
|---|
| 50 | } |
|---|
| 51 | |
|---|
| 52 | universal_variant no |
|---|
| 53 | |
|---|
| 54 | livecheck.check regex |
|---|
| 55 | livecheck.url ${homepage} |
|---|
| 56 | livecheck.regex {Bazaar (\d+(?:\.\d+)*) was released} |
|---|