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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup secynic ipwhois 0.9.0 v |
---|
9 | |
---|
10 | name py-${name} |
---|
11 | categories-append net devel |
---|
12 | license BSD |
---|
13 | platforms darwin |
---|
14 | supported_archs noarch |
---|
15 | maintainers maiar.org:jason-macports openmaintainer |
---|
16 | |
---|
17 | description ${name} is a simple package for retrieving and parsing \ |
---|
18 | whois data for IPv4 and IPv6 addresses. |
---|
19 | long_description ${description} |
---|
20 | |
---|
21 | checksums rmd160 06f14990dfc2ba792fef02c36d7b909a7cc46fac \ |
---|
22 | sha256 258c6925aa5b85428db5b4f8c6af3e1f61f2e4f04a51552b4e59aacbe9203e06 |
---|
23 | |
---|
24 | python.versions 27 34 |
---|
25 | |
---|
26 | if {${name} ne ${subport}} { |
---|
27 | depends_build-append port:py${python.version}-setuptools |
---|
28 | depends_lib-append port:py${python.version}-dnspython |
---|
29 | |
---|
30 | if {${python.version} < 30} { |
---|
31 | depends_lib-append port:py${python.version}-ipaddr |
---|
32 | } |
---|
33 | |
---|
34 | livecheck.type none |
---|
35 | } |
---|