Index: head/net/Makefile =================================================================== --- head/net/Makefile +++ head/net/Makefile @@ -1036,6 +1036,7 @@ SUBDIR += py-haproxy-log-analysis SUBDIR += py-haproxyctl SUBDIR += py-httpstat + SUBDIR += py-ifaddr SUBDIR += py-impacket SUBDIR += py-ipaddress SUBDIR += py-iplib Index: head/net/py-ifaddr/Makefile =================================================================== --- head/net/py-ifaddr/Makefile +++ head/net/py-ifaddr/Makefile @@ -0,0 +1,27 @@ +# Created by: John Hixson +# $FreeBSD$ + +PORTNAME= ifaddr +PORTVERSION= 0.1.6 +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jhixson@FreeBSD.org +COMMENT= Python Library to enumerate all network interfaces + +LICENSE= MIT + +USES= python:2.7+ + +USE_PYTHON= autoplist distutils + +USE_GITHUB= yes +GH_ACCOUNT= pydron + +.include + +.if ${PYTHON_MAJOR_VER} < 3 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipaddress>0:net/py-ipaddress +.endif + +.include Index: head/net/py-ifaddr/distinfo =================================================================== --- head/net/py-ifaddr/distinfo +++ head/net/py-ifaddr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1548734875 +SHA256 (pydron-ifaddr-0.1.6_GH0.tar.gz) = fb42188de577aa3acf14b06e9fcd770e755c7ced137db49191411956b75786ec +SIZE (pydron-ifaddr-0.1.6_GH0.tar.gz) = 10157 Index: head/net/py-ifaddr/pkg-descr =================================================================== --- head/net/py-ifaddr/pkg-descr +++ head/net/py-ifaddr/pkg-descr @@ -0,0 +1,4 @@ +ifaddr is a small Python library that allows you to find all the IP +addresses of the computer. + +WWW: https://github.com/pydron/ifaddr