Ticket #18980: Portfile

File Portfile, 1.6 KB (added by arthur@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python25 1.0
5
6# Paver doesn't support --no-user-cfg
7build.cmd           ${python.bin} setup.py
8destroot.cmd        ${python.bin} setup.py
9
10name                py25-paver
11version             1.0
12platforms           darwin
13categories-append   devel
14maintainers         arthurkoziel.com:arthur openmaintainer
15
16description         Easy build, distribution and deployment scripting
17long_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
23homepage            http://www.blueskyonmars.com/projects/paver/
24master_sites        http://pypi.python.org/packages/source/P/Paver/
25distname            Paver-${version}
26
27checksums           md5 3f1a8346e7cadf9ae362e28360541117 \
28                    sha1 108677ec5604add38d213fa4b8c38f18c3d8cab0 \
29                    rmd160 6037bb0eb3a0178b5c40f25578aaecfed4104e3b
30
31depends_lib-append  port:py25-setuptools
32
33post-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
43livecheck.check     regex
44livecheck.url       http://pypi.python.org/pypi/Paver/
45livecheck.regex     Paver (1\.\[0-9\]+)