Gevent fixes

Adds two gevent patches:
 1 - add ppc64le to libev compilers
 2 - fix broken ssl module detection

Change-Id: If3839b80b2cbf829818f7462c252352e72afa73f
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/common/recipes-devtools/python/python-gevent/libev-config-guess.patch b/common/recipes-devtools/python/python-gevent/libev-config-guess.patch
new file mode 100644
index 0000000..2380528
--- /dev/null
+++ b/common/recipes-devtools/python/python-gevent/libev-config-guess.patch
@@ -0,0 +1,12 @@
+--- a/libev/config.guess	2016-06-09 00:16:50.616787488 -0400
++++ b/libev/config.guess	2016-06-09 00:18:30.441578080 -0400
+@@ -921,6 +921,9 @@ EOF
+     ppc64:Linux:*:*)
+ 	echo powerpc64-unknown-linux-gnu
+ 	exit ;;
++    ppc64le:Linux:*:*)
++	echo powerpc64le-unknown-linux-gnu
++	exit ;;
+     alpha:Linux:*:*)
+ 	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
+ 	  EV5)   UNAME_MACHINE=alphaev5 ;;