summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch2
-rw-r--r--meta-oe/recipes-devtools/python/python-tornado_git.bb7
2 files changed, 4 insertions, 5 deletions
diff --git a/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch b/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
index a3efbcaac8..3c3ec7c853 100644
--- a/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
+++ b/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
@@ -24,7 +24,7 @@ index cfff0ba..c181f24 100644
24- # exist on some platforms (specifically WinXP, although 24- # exist on some platforms (specifically WinXP, although
25- # newer versions of windows have it) 25- # newer versions of windows have it)
26- flags |= socket.AI_ADDRCONFIG 26- flags |= socket.AI_ADDRCONFIG
27 for res in socket.getaddrinfo(address, port, family, socket.SOCK_STREAM, 27 for res in set(socket.getaddrinfo(address, port, family, socket.SOCK_STREAM,
28 0, flags): 28 0, flags):
29 af, socktype, proto, canonname, sockaddr = res 29 af, socktype, proto, canonname, sockaddr = res
30-- 30--
diff --git a/meta-oe/recipes-devtools/python/python-tornado_git.bb b/meta-oe/recipes-devtools/python/python-tornado_git.bb
index 22078bc0f4..693b4544be 100644
--- a/meta-oe/recipes-devtools/python/python-tornado_git.bb
+++ b/meta-oe/recipes-devtools/python/python-tornado_git.bb
@@ -2,10 +2,9 @@ DESCRIPTION = "Tornado is an open source version of the scalable, non-blocking w
2LICENSE = "Apache" 2LICENSE = "Apache"
3LIC_FILES_CHKSUM = "file://README;md5=e7fb9954003d7cd93322ccf282210d1c" 3LIC_FILES_CHKSUM = "file://README;md5=e7fb9954003d7cd93322ccf282210d1c"
4 4
5PV = "2.1.1" 5PV = "2.2"
6PR = "r4" 6SRCREV = "02bc76155de5bf4dca243e4d0c019c0ac4c8b3be"
7SRCREV = "112fdb48b06b754d1f94335ea9e2fd62a07a5fe3" 7SRC_URI = "git://github.com/facebook/tornado.git;branch=branch2.2 \
8SRC_URI = "git://github.com/facebook/tornado.git \
9 file://0001-disable-AI_ADDRCONFIG-flag.patch \ 8 file://0001-disable-AI_ADDRCONFIG-flag.patch \
10 " 9 "
11 10