Ticket #33196: Portfile

File Portfile, 1.5 KB (added by gorticus (Jason Mitchell), 12 years ago)

updated py-ftputil Portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-off set: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem        1.0
5PortGroup python  1.0
6
7name              py-ftputil
8version           2.6
9categories        python network
10license           BSD
11platforms         darwin
12supported_archs   noarch
13
14maintainers       maiar.org:jason-macports openmaintainer
15
16description       High level Python interface to the ftplib module
17long_description  The module ftputil is a high-level interface to the \
18                  ftplib module. The FTPHost objects generated from it \
19                  allow many operations similar to those of os and \
20                  os.path.
21
22distname          ftputil-${version}
23extract.suffix    .tar.gz
24homepage          http://ftputil.sschwarzer.net/trac/
25master_sites      ${homepage}raw-attachment/wiki/Download/${distfiles}?format=raw?dummy=
26checksums         md5    df1880064485be39b3e6eeefbd812b03 \
27                  sha1   5fe61f7165b309e021011de66bd80f990c0cff3c \
28                  rmd160 cd7bd7bfcb40c82b13f5d9daa1ba15a0a26c4b51
29
30
31python.versions     24 25 26 27
32
33if {$subport != $name} {
34  depends_build   port:py${python.version}-distribute
35}
36
37post-destroot  {
38  xinstall -d ${destroot}${prefix}/share/doc/${name}
39  xinstall -m 644 -W ${worksrcpath} README.html README.txt ftputil.html \
40    ftputil.txt VERSION PKG-INFO ${destroot}${prefix}/share/doc/${name}
41}
42
43livecheck.type  regex
44livecheck.url   ${homepage}raw-attachment/wiki/Download/
45livecheck.regex {>ftputil-([0-9.]+).tar.gz<}