aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-11-20 17:12:44 +0800
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-11-20 17:12:44 +0800
commit337ec4d172b85133d9404051aa4de8dd2c159a5f (patch)
tree805220fa3bced0bb66a23a97a3b2c662eb53226a /net-mgmt
parent76086685a1e2173f66804def0b2606574c7d9a8a (diff)
downloadfreebsd-ports-gnome-337ec4d172b85133d9404051aa4de8dd2c159a5f.tar.gz
freebsd-ports-gnome-337ec4d172b85133d9404051aa4de8dd2c159a5f.tar.zst
freebsd-ports-gnome-337ec4d172b85133d9404051aa4de8dd2c159a5f.zip
- Update to 3.1.0
Changes: https://github.com/rfinnie/2ping/blob/master/ChangeLog
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/2ping/Makefile2
-rw-r--r--net-mgmt/2ping/distinfo4
-rw-r--r--net-mgmt/2ping/files/patch-twoping_crc32.py20
3 files changed, 3 insertions, 23 deletions
diff --git a/net-mgmt/2ping/Makefile b/net-mgmt/2ping/Makefile
index b52c1efda51b..8f75ded686e0 100644
--- a/net-mgmt/2ping/Makefile
+++ b/net-mgmt/2ping/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= 2ping
-PORTVERSION= 3.0.1
+PORTVERSION= 3.1.0
CATEGORIES= net-mgmt perl5
MASTER_SITES= http://www.finnie.org/software/2ping/ \
LOCAL/sunpoet
diff --git a/net-mgmt/2ping/distinfo b/net-mgmt/2ping/distinfo
index a9fe9301bc82..d932db171481 100644
--- a/net-mgmt/2ping/distinfo
+++ b/net-mgmt/2ping/distinfo
@@ -1,2 +1,2 @@
-SHA256 (2ping-3.0.1.tar.gz) = d6997cd1680151e6f7d5e60137d45cd41bf385d26029878afdaaf5dc4f63dcc4
-SIZE (2ping-3.0.1.tar.gz) = 39752
+SHA256 (2ping-3.1.0.tar.gz) = 0f5b4e10f89dd99ef04e2cc0564d6673ceae897ed0bf59b636553ec6aa1c7a92
+SIZE (2ping-3.1.0.tar.gz) = 42581
diff --git a/net-mgmt/2ping/files/patch-twoping_crc32.py b/net-mgmt/2ping/files/patch-twoping_crc32.py
deleted file mode 100644
index 02d4ad50f6c3..000000000000
--- a/net-mgmt/2ping/files/patch-twoping_crc32.py
+++ /dev/null
@@ -1,20 +0,0 @@
---- twoping/crc32.py.orig 2015-10-25 05:57:43 UTC
-+++ twoping/crc32.py
-@@ -69,7 +69,7 @@ if __name__ == '__main__':
- c = new()
- for line in sys.stdin.readlines():
- c.update(line)
-- print c.hexdigest()
-+ print(c.hexdigest())
- else:
- for file in files:
- with open(file) as f:
-@@ -77,6 +77,6 @@ if __name__ == '__main__':
- for line in f.readlines():
- c.update(line)
- if len(files) > 1:
-- print '%s\t%s' % (c.hexdigest(), file)
-+ print('%s\t%s' % (c.hexdigest(), file))
- else:
-- print c.hexdigest()
-+ print(c.hexdigest())