Date: Sat, 2 May 2020 17:56:59 +0000 (UTC) From: Matthias Andree <mandree@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533700 - in head/net: . py-wsdd Message-ID: <202005021756.042Huxjn064153@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mandree Date: Sat May 2 17:56:59 2020 New Revision: 533700 URL: https://svnweb.freebsd.org/changeset/ports/533700 Log: new port: net/py-wsdd, web service discovery host daemon wsdd implements a Web Service Discovery host daemon. This enables (Samba) hosts, like your local NAS device, to be found by Web Service Discovery Clients like Windows. WWW: https://github.com/christgau/wsdd PR: 246042 Submitted by: Hiroo Ono <hiroo.ono+freebsd@gmail.com> (maintainer) Added: head/net/py-wsdd/ head/net/py-wsdd/Makefile (contents, props changed) head/net/py-wsdd/distinfo (contents, props changed) head/net/py-wsdd/pkg-descr (contents, props changed) head/net/py-wsdd/pkg-message (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat May 2 17:54:54 2020 (r533699) +++ head/net/Makefile Sat May 2 17:56:59 2020 (r533700) @@ -1139,6 +1139,7 @@ SUBDIR += py-urllib3 SUBDIR += py-wmi-query SUBDIR += py-wolframalpha + SUBDIR += py-wsdd SUBDIR += py-wsproto SUBDIR += py-zeep SUBDIR += py-zeroconf Added: head/net/py-wsdd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsdd/Makefile Sat May 2 17:56:59 2020 (r533700) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= wsdd +DISTVERSIONPREFIX= v +DISTVERSION= 0.5 +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= hiroo.ono+freebsd@gmail.com +COMMENT= Web Service Discovery (WSD) host daemon for Samba + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENCE + +USES= python:3.5+,run shebangfix +USE_GITHUB= yes +GH_ACCOUNT= christgau +SHEBANG_FILES= src/${PORTNAME}.py +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} \ + etc/rc.d/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME}.py \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKSRC}/etc/rc.d/${PORTNAME} \ + ${STAGEDIR}${PREFIX}/etc/rc.d/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1/ + +.include <bsd.port.mk> Added: head/net/py-wsdd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsdd/distinfo Sat May 2 17:56:59 2020 (r533700) @@ -0,0 +1,3 @@ +TIMESTAMP = 1588200228 +SHA256 (christgau-wsdd-v0.5_GH0.tar.gz) = c04852b053b78fd9d5b3e28b49a06f8ee707ccdaf82cc1e449ece031ad494bea +SIZE (christgau-wsdd-v0.5_GH0.tar.gz) = 16820 Added: head/net/py-wsdd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsdd/pkg-descr Sat May 2 17:56:59 2020 (r533700) @@ -0,0 +1,5 @@ +wsdd implements a Web Service Discovery host daemon. This enables (Samba) +hosts, like your local NAS device, to be found by Web Service Discovery Clients +like Windows. + +WWW: https://github.com/christgau/wsdd Added: head/net/py-wsdd/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsdd/pkg-message Sat May 2 17:56:59 2020 (r533700) @@ -0,0 +1,8 @@ +[ +{ type: install + message: <<EOM +To run wsdd at startup, you need to add the following to /etc/rc.conf: + + wsdd_enable="YES" +EOM +]
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005021756.042Huxjn064153>