svn commit: r467167 - in head/net: . py-zeroconf
William Grzybowski
wg at FreeBSD.org
Thu Apr 12 17:20:20 UTC 2018
Author: wg
Date: Thu Apr 12 17:20:18 2018
New Revision: 467167
URL: https://svnweb.freebsd.org/changeset/ports/467167
Log:
net/py-zeroconf: Pure python implementation of multicast DNS service discovery
WWW: https://github.com/jstasiak/python-zeroconf
Submitted by: John Hixson
Added:
head/net/py-zeroconf/
head/net/py-zeroconf/Makefile (contents, props changed)
head/net/py-zeroconf/distinfo (contents, props changed)
head/net/py-zeroconf/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Thu Apr 12 16:53:11 2018 (r467166)
+++ head/net/Makefile Thu Apr 12 17:20:18 2018 (r467167)
@@ -1136,6 +1136,7 @@
SUBDIR += py-wmi-query
SUBDIR += py-wolframalpha
SUBDIR += py-xmlrpc
+ SUBDIR += py-zeroconf
SUBDIR += py-zope.proxy
SUBDIR += py-zsi
SUBDIR += pygopherd
Added: head/net/py-zeroconf/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-zeroconf/Makefile Thu Apr 12 17:20:18 2018 (r467167)
@@ -0,0 +1,25 @@
+# Created by: John Hixson <jhixson at gmail.com>
+# $FreeBSD$
+
+PORTNAME= zeroconf
+PORTVERSION= 0.19.1
+CATEGORIES= net python
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= jhixson at gmail.com
+COMMENT= Pure python implementation of multicast DNS service discovery
+
+LICENSE= LGPL21+
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.4:devel/py-six@${FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}netifaces>=0.10.6:net/py-netifaces@${FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+USE_GITHUB= yes
+GH_ACCOUNT= jstasiak
+GH_PROJECT= python-zeroconf
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/net/py-zeroconf/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-zeroconf/distinfo Thu Apr 12 17:20:18 2018 (r467167)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1498007189
+SHA256 (jstasiak-python-zeroconf-0.19.1_GH0.tar.gz) = ca8952a3eb04818dcb566e1344f2f15b5dd6d487770384651cdfae777d5eb848
+SIZE (jstasiak-python-zeroconf-0.19.1_GH0.tar.gz) = 35655
Added: head/net/py-zeroconf/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-zeroconf/pkg-descr Thu Apr 12 17:20:18 2018 (r467167)
@@ -0,0 +1,3 @@
+A pure python implementation of multicast DNS service discovery
+
+WWW: https://github.com/jstasiak/python-zeroconf
More information about the svn-ports-all
mailing list