Ticket #42679: Portfile

File Portfile, 1.2 KB (added by jul_bsd@…, 10 years ago)
Line 
1# $Id: Portfile 114324 2013-12-05 08:44:51Z ryandesign@macports.org $
2
3PortSystem 1.0
4PortGroup python 1.0
5
6name                py-tagcloud
7version             0.3.5
8platforms           darwin
9supported_archs     noarch
10maintainers         nomaintainer
11description         create simple tag clouds inspired by http://www.wordle.net/
12long_description    ${description}
13license             BSD
14
15homepage            https://pypi.python.org/pypi/pytagcloud
16distname            pytagcloud-${version}
17master_sites        https://pypi.python.org/packages/source/p/pytagcloud/
18
19checksums           rmd160  bfddcc17caed92400bb9e8f704ce86cfc384dba6 \
20                    sha256  4d56539f0c80ed96f0d320fa0667db3f2d0cc3d2925f84522b82f48f6c0973e9
21
22python.versions     24 25 26 27
23
24subport py24-tagcloud {
25    depends_run-append  port:py24-game port:py24-simplejson
26}
27
28subport py25-tagcloud {
29    depends_run-append  port:py25-game port:py25-simplejson
30}
31
32subport py26-tagcloud {
33    depends_run-append  port:py26-game port:py26-simplejson
34}
35
36subport py27-tagcloud {
37    depends_run-append  port:py27-game port:py27-simplejson
38}
39
40livecheck.type     regex
41livecheck.url       ${homepage}
42livecheck.regex     "<a href=\"/pypi/pytagcloud/.*?\">(\\d+(?:\\.\\d+)*)</a>"