Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Apr 2018 17:20:19 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r467167 - in head/net: . py-zeroconf
Message-ID:  <201804121720.w3CHKJVt034889@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	zeroconf
+PORTVERSION=	0.19.1
+CATEGORIES=	net python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	jhixson@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804121720.w3CHKJVt034889>