aboutsummaryrefslogtreecommitdiff
path: root/net/py-wsdd
diff options
context:
space:
mode:
authorFernando ApesteguĂ­a <fernape@FreeBSD.org>2020-06-09 05:40:02 +0000
committerFernando ApesteguĂ­a <fernape@FreeBSD.org>2020-06-09 05:40:02 +0000
commit92e26cf2e55e09b9b27b31fc3725e6c1ca13fdee (patch)
treeb7bdbd65a64eb72ee8c2d4b92aae4fd2dbef3fc6 /net/py-wsdd
parentb2e97e27b4497d385d0576fd93425fe9d13ec92c (diff)
downloadports-92e26cf2e55e09b9b27b31fc3725e6c1ca13fdee.tar.gz
ports-92e26cf2e55e09b9b27b31fc3725e6c1ca13fdee.zip
net/py-wsdd: Update to 0.6
PR: 247076 Submitted by: hiroo.ono+freebsd@gmail.com (maintainer)
Notes
Notes: svn path=/head/; revision=538280
Diffstat (limited to 'net/py-wsdd')
-rw-r--r--net/py-wsdd/Makefile5
-rw-r--r--net/py-wsdd/distinfo6
-rw-r--r--net/py-wsdd/files/patch-etc_rc.d_wsdd19
3 files changed, 5 insertions, 25 deletions
diff --git a/net/py-wsdd/Makefile b/net/py-wsdd/Makefile
index 5beb1c7242fa..c89bf4e1fd5a 100644
--- a/net/py-wsdd/Makefile
+++ b/net/py-wsdd/Makefile
@@ -2,8 +2,7 @@
PORTNAME= wsdd
DISTVERSIONPREFIX= v
-DISTVERSION= 0.5
-PORTREVISION= 1
+DISTVERSION= 0.6
CATEGORIES= net python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -11,7 +10,7 @@ MAINTAINER= hiroo.ono+freebsd@gmail.com
COMMENT= Web Service Discovery (WSD) host daemon for Samba
LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENCE
+LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:3.5+,run shebangfix
USE_GITHUB= yes
diff --git a/net/py-wsdd/distinfo b/net/py-wsdd/distinfo
index 33312c84f8f8..b8f37d0e5cec 100644
--- a/net/py-wsdd/distinfo
+++ b/net/py-wsdd/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1588200228
-SHA256 (christgau-wsdd-v0.5_GH0.tar.gz) = c04852b053b78fd9d5b3e28b49a06f8ee707ccdaf82cc1e449ece031ad494bea
-SIZE (christgau-wsdd-v0.5_GH0.tar.gz) = 16820
+TIMESTAMP = 1591589990
+SHA256 (christgau-wsdd-v0.6_GH0.tar.gz) = 9e6caedfa92bc73b3bca2ff22fbb793254160197466a03bc1660fa2bd0bc0b15
+SIZE (christgau-wsdd-v0.6_GH0.tar.gz) = 27067
diff --git a/net/py-wsdd/files/patch-etc_rc.d_wsdd b/net/py-wsdd/files/patch-etc_rc.d_wsdd
deleted file mode 100644
index df0f6bc6a8a4..000000000000
--- a/net/py-wsdd/files/patch-etc_rc.d_wsdd
+++ /dev/null
@@ -1,19 +0,0 @@
---- etc/rc.d/wsdd.orig 2019-12-16 13:40:38 UTC
-+++ etc/rc.d/wsdd
-@@ -9,14 +9,11 @@
-
- name=wsdd
- rcvar=wsdd_enable
--wsdd_group=""
-+wsdd_group=$(/usr/local/bin/testparm -s --parameter-name workgroup 2>/dev/null)
-
--if which testparm >/dev/null 2>/dev/null; then
-- wsdd_group=$(testparm -s --parameter-name workgroup 2>/dev/null)
--fi
-+: ${wsdd_smb_config_file="/usr/local/etc/smb4.conf"}
-
- # try to manually extract workgroup from samba configuration if testparm failed
--wsdd_smb_config_file="/usr/local/etc/smb.conf"
- if [ -z "$wsdd_group" ] && [ -r $wsdd_smb_config_file ]; then
- wsdd_group="$(grep -i '^[[:space:]]*workgroup[[:space:]]*=' $wsdd_smb_config_file | cut -f2 -d= | tr -d '[:blank:]')"
- fi