1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | # Paver doesn't support --no-user-cfg |
---|
7 | build.cmd ${python.bin} setup.py |
---|
8 | destroot.cmd ${python.bin} setup.py |
---|
9 | |
---|
10 | name py25-paver |
---|
11 | version 1.0 |
---|
12 | platforms darwin |
---|
13 | categories-append devel |
---|
14 | maintainers arthurkoziel.com:arthur openmaintainer |
---|
15 | |
---|
16 | description Easy build, distribution and deployment scripting |
---|
17 | long_description Paver is a Python-based build/distribution/deployment \ |
---|
18 | scripting tool along the lines of Make or Rake. What makes Paver unique \ |
---|
19 | is its integration with commonly used Python libraries. Common tasks that \ |
---|
20 | were easy before remain easy. More importantly, dealing with your \ |
---|
21 | applications specific needs and requirements is also easy. |
---|
22 | |
---|
23 | homepage http://www.blueskyonmars.com/projects/paver/ |
---|
24 | master_sites http://pypi.python.org/packages/source/P/Paver/ |
---|
25 | distname Paver-${version} |
---|
26 | |
---|
27 | checksums md5 3f1a8346e7cadf9ae362e28360541117 \ |
---|
28 | sha1 108677ec5604add38d213fa4b8c38f18c3d8cab0 \ |
---|
29 | rmd160 6037bb0eb3a0178b5c40f25578aaecfed4104e3b |
---|
30 | |
---|
31 | depends_lib-append port:py25-setuptools |
---|
32 | |
---|
33 | post-destroot { |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
35 | xinstall -m 644 -W ${worksrcpath} LICENSE.txt README.txt \ |
---|
36 | ${destroot}${prefix}/share/doc/${name} |
---|
37 | |
---|
38 | # To avoid conflict between py/py25/py26-paver |
---|
39 | move ${destroot}${prefix}/bin/paver ${destroot}${prefix}/bin/paver-2.5 |
---|
40 | } |
---|
41 | |
---|
42 | |
---|
43 | livecheck.check regex |
---|
44 | livecheck.url http://pypi.python.org/pypi/Paver/ |
---|
45 | livecheck.regex Paver (1\.\[0-9\]+) |
---|