diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-04 10:13:25 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-04 10:27:16 +0100 |
commit | bbbdd3acbc438cf652ee0cde8061189e52b0ae04 (patch) | |
tree | 6498efb01c72c75bae89d49c2ae7761f8626a061 /meta-oe/recipes-devtools | |
parent | fdff8697ea2db6254d26510adb7d11e6352d950f (diff) | |
download | meta-openembedded-bbbdd3acbc438cf652ee0cde8061189e52b0ae04.tar.gz |
python-tornado: update to the 2.2 release
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch | 2 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/python/python-tornado_git.bb | 7 |
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 a3efbcaac..3c3ec7c85 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 22078bc0f..693b4544b 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 | |||
2 | LICENSE = "Apache" | 2 | LICENSE = "Apache" |
3 | LIC_FILES_CHKSUM = "file://README;md5=e7fb9954003d7cd93322ccf282210d1c" | 3 | LIC_FILES_CHKSUM = "file://README;md5=e7fb9954003d7cd93322ccf282210d1c" |
4 | 4 | ||
5 | PV = "2.1.1" | 5 | PV = "2.2" |
6 | PR = "r4" | 6 | SRCREV = "02bc76155de5bf4dca243e4d0c019c0ac4c8b3be" |
7 | SRCREV = "112fdb48b06b754d1f94335ea9e2fd62a07a5fe3" | 7 | SRC_URI = "git://github.com/facebook/tornado.git;branch=branch2.2 \ |
8 | SRC_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 | ||