- Update to 3.1.0
Changes: https://github.com/rfinnie/2ping/blob/master/ChangeLog
This commit is contained in:
parent
76086685a1
commit
337ec4d172
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401999
@ -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
|
||||
|
@ -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
|
||||
|
@ -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())
|
Loading…
Reference in New Issue
Block a user