aboutsummaryrefslogtreecommitdiff
path: root/lang/python31
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2012-04-11 12:52:17 +0000
committerMartin Wilke <miwi@FreeBSD.org>2012-04-11 12:52:17 +0000
commit19425757a8e3a76d2ae6c145867d1e970ffba860 (patch)
treea450e84c87cac977f45b0e9b0e732685bb0d9ce0 /lang/python31
parentb1791a5113acfe8c8336d8f91f761289865ef562 (diff)
Notes
Diffstat (limited to 'lang/python31')
-rw-r--r--lang/python31/Makefile3
-rw-r--r--lang/python31/distinfo4
-rw-r--r--lang/python31/files/patch-CVE-2012-084515
3 files changed, 3 insertions, 19 deletions
diff --git a/lang/python31/Makefile b/lang/python31/Makefile
index 22935d91857c..a8c4e054d3bf 100644
--- a/lang/python31/Makefile
+++ b/lang/python31/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= python31
-PORTVERSION= 3.1.4
-PORTREVISION= 3
+PORTVERSION= 3.1.5
CATEGORIES= lang python ipv6
MASTER_SITES= ${PYTHON_MASTER_SITES}
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
diff --git a/lang/python31/distinfo b/lang/python31/distinfo
index dcad946de55d..50c26d2f7310 100644
--- a/lang/python31/distinfo
+++ b/lang/python31/distinfo
@@ -1,2 +1,2 @@
-SHA256 (python/Python-3.1.4.tgz) = fadc05ea6d05360cff189944a85ecd2180bbc308784d168b350450e70bbdd846
-SIZE (python/Python-3.1.4.tgz) = 11795512
+SHA256 (python/Python-3.1.5.tgz) = d12dae6d06f52ef6bf1271db4d5b4d14b5dd39813e324314e72b648ef1bc0103
+SIZE (python/Python-3.1.5.tgz) = 11798798
diff --git a/lang/python31/files/patch-CVE-2012-0845 b/lang/python31/files/patch-CVE-2012-0845
deleted file mode 100644
index 9a381c22e345..000000000000
--- a/lang/python31/files/patch-CVE-2012-0845
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py
---- Lib/xmlrpc/server.py
-+++ Lib/xmlrpc/server.py
-@@ -476,7 +476,10 @@
- L = []
- while size_remaining:
- chunk_size = min(size_remaining, max_chunk_size)
-- L.append(self.rfile.read(chunk_size))
-+ chunk = self.rfile.read(chunk_size)
-+ if not chunk:
-+ break
-+ L.append(chunk)
- size_remaining -= len(L[-1])
- data = b''.join(L)
-