1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

Update to 0.15.5.

This commit is contained in:
Jung-uk Kim 2015-09-04 16:25:43 +00:00
parent ea1f511a60
commit 9ea4af37e4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=396110
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= xpra
PORTVERSION= 0.15.4
PORTVERSION= 0.15.5
CATEGORIES= x11
MASTER_SITES= http://xpra.org/src/

View File

@ -1,2 +1,2 @@
SHA256 (xpra-0.15.4.tar.xz) = 29be80b8987dd131058aab0a1c8d456a7ac67ad56c54d2b5e72472ff003799a2
SIZE (xpra-0.15.4.tar.xz) = 1194484
SHA256 (xpra-0.15.5.tar.xz) = bcd258e8a0af4d074da09c898f0b80b5ea09513782184e06c6003f31365dfb9a
SIZE (xpra-0.15.5.tar.xz) = 1195776

View File

@ -1,4 +1,4 @@
--- xpra/net/compression.py.orig 2015-07-27 14:25:13 UTC
--- xpra/net/compression.py.orig 2015-08-25 09:32:59 UTC
+++ xpra/net/compression.py
@@ -23,7 +23,9 @@ try:
return level | LZ4_FLAG, LZ4_compress(packet)
@ -15,7 +15,7 @@
#we want at least two numbers first:
if len(tmpv)>=2:
#ie: (0, 7, 0)
- lz4_version = ".".join(tmpv)
- lz4_version = ".".join([str(x) for x in tmpv])
- assert lz4_version>="0.7", "versions older than 0.7.0 are vulnerable and should not be used, see CVE-2014-4715"
- if hasattr(lz4, "LZ4_VERSION"):
- lz4_version += "."+str(lz4.LZ4_VERSION)