diff options
| author | Max Krummenacher <max.oss.09@gmail.com> | 2020-02-15 16:59:34 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-02-16 12:52:19 -0800 |
| commit | c24a06107d739d2496779951eeaca54f2ba9fe68 (patch) | |
| tree | abdbcf8123489b3b3ceb61151209c22e213e7994 | |
| parent | 546b7900f6694a7df4d6d33c798da91d621ef393 (diff) | |
| download | meta-openembedded-c24a06107d739d2496779951eeaca54f2ba9fe68.tar.gz | |
openconnect: build with python3
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 files changed, 76 insertions, 7 deletions
diff --git a/meta-networking/recipes-connectivity/openconnect/openconnect/0001-trojans-tncc-wrapper.py-convert-to-python3.patch b/meta-networking/recipes-connectivity/openconnect/openconnect/0001-trojans-tncc-wrapper.py-convert-to-python3.patch new file mode 100644 index 0000000000..623ec101d3 --- /dev/null +++ b/meta-networking/recipes-connectivity/openconnect/openconnect/0001-trojans-tncc-wrapper.py-convert-to-python3.patch | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | From de78bcac5e1fd13de0371c8e14b062b8786ade56 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Max Krummenacher <max.krummenacher@toradex.com> | ||
| 3 | Date: Sun, 2 Feb 2020 15:53:05 +0000 | ||
| 4 | Subject: [PATCH] trojans/tncc-wrapper.py: convert to python3 | ||
| 5 | |||
| 6 | Use 2to3 to convert the script to python3. | ||
| 7 | |||
| 8 | Upstream-Status: Pending | ||
| 9 | |||
| 10 | Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> | ||
| 11 | --- | ||
| 12 | trojans/tncc-wrapper.py | 14 +++++++------- | ||
| 13 | 1 file changed, 7 insertions(+), 7 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/trojans/tncc-wrapper.py b/trojans/tncc-wrapper.py | ||
| 16 | index 0d4587bf..1a9a1f4d 100755 | ||
| 17 | --- a/trojans/tncc-wrapper.py | ||
| 18 | +++ b/trojans/tncc-wrapper.py | ||
| 19 | @@ -1,4 +1,4 @@ | ||
| 20 | -#!/usr/bin/python2 | ||
| 21 | +#!/usr/bin/python3 | ||
| 22 | |||
| 23 | # Lifted from Russ Dill's juniper-vpn-wrap.py, thus: | ||
| 24 | # | ||
| 25 | @@ -18,19 +18,19 @@ | ||
| 26 | |||
| 27 | import subprocess | ||
| 28 | import mechanize | ||
| 29 | -import cookielib | ||
| 30 | +import http.cookiejar | ||
| 31 | import getpass | ||
| 32 | import sys | ||
| 33 | import os | ||
| 34 | import zipfile | ||
| 35 | -import urllib | ||
| 36 | +import urllib.request, urllib.parse, urllib.error | ||
| 37 | import socket | ||
| 38 | import ssl | ||
| 39 | import errno | ||
| 40 | import argparse | ||
| 41 | import atexit | ||
| 42 | import signal | ||
| 43 | -import ConfigParser | ||
| 44 | +import configparser | ||
| 45 | import time | ||
| 46 | import binascii | ||
| 47 | import hmac | ||
| 48 | @@ -39,7 +39,7 @@ import hashlib | ||
| 49 | def mkdir_p(path): | ||
| 50 | try: | ||
| 51 | os.mkdir(path) | ||
| 52 | - except OSError, exc: | ||
| 53 | + except OSError as exc: | ||
| 54 | if exc.errno == errno.EEXIST and os.path.isdir(path): | ||
| 55 | pass | ||
| 56 | else: | ||
| 57 | @@ -64,9 +64,9 @@ class Tncc: | ||
| 58 | if zipfile.ZipFile(self.tncc_jar, 'r').testzip() is not None: | ||
| 59 | raise Exception() | ||
| 60 | except: | ||
| 61 | - print 'Downloading tncc.jar...' | ||
| 62 | + print('Downloading tncc.jar...') | ||
| 63 | mkdir_p(os.path.expanduser('~/.juniper_networks')) | ||
| 64 | - urllib.urlretrieve('https://' + self.vpn_host | ||
| 65 | + urllib.request.urlretrieve('https://' + self.vpn_host | ||
| 66 | + '/dana-cached/hc/tncc.jar', self.tncc_jar) | ||
| 67 | |||
| 68 | with zipfile.ZipFile(self.tncc_jar, 'r') as jar: | ||
| 69 | -- | ||
| 70 | 2.20.1 | ||
| 71 | |||
diff --git a/meta-networking/recipes-connectivity/openconnect/openconnect_8.03.bb b/meta-networking/recipes-connectivity/openconnect/openconnect_8.03.bb index ec36a375a4..974ff45477 100644 --- a/meta-networking/recipes-connectivity/openconnect/openconnect_8.03.bb +++ b/meta-networking/recipes-connectivity/openconnect/openconnect_8.03.bb | |||
| @@ -2,11 +2,14 @@ SUMMARY = "Open client for Cisco AnyConnect VPN" | |||
| 2 | LICENSE = "LGPLv2.1" | 2 | LICENSE = "LGPLv2.1" |
| 3 | LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad" | 3 | LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad" |
| 4 | 4 | ||
| 5 | SRC_URI = "git://git.infradead.org/users/dwmw2/openconnect.git" | 5 | SRC_URI = " \ |
| 6 | git://git.infradead.org/users/dwmw2/openconnect.git \ | ||
| 7 | file://0001-trojans-tncc-wrapper.py-convert-to-python3.patch \ | ||
| 8 | " | ||
| 6 | SRCREV = "ea73851969ae7a6ea54fdd2d2b8c94776af24b2a" | 9 | SRCREV = "ea73851969ae7a6ea54fdd2d2b8c94776af24b2a" |
| 7 | 10 | ||
| 8 | DEPENDS = "vpnc libxml2 krb5 gettext-native" | 11 | DEPENDS = "vpnc libxml2 krb5 gettext-native" |
| 9 | RDEPENDS_${PN} = "bash python" | 12 | RDEPENDS_${PN} = "bash python3-core" |
| 10 | 13 | ||
| 11 | PACKAGECONFIG ??= "gnutls lz4 libproxy" | 14 | PACKAGECONFIG ??= "gnutls lz4 libproxy" |
| 12 | 15 | ||
| @@ -24,8 +27,3 @@ inherit autotools pkgconfig | |||
| 24 | 27 | ||
| 25 | EXTRA_OECONF += "--with-vpnc-script=${SYSROOT_DESTDIR}${sysconfdir}/vpnc/vpnc-script \ | 28 | EXTRA_OECONF += "--with-vpnc-script=${SYSROOT_DESTDIR}${sysconfdir}/vpnc/vpnc-script \ |
| 26 | --disable-static" | 29 | --disable-static" |
| 27 | |||
| 28 | do_configure_append() { | ||
| 29 | # script has /usr/bin/python2 path hardcoded | ||
| 30 | sed -i -e 's=python2\.*=python=g' ${S}/trojans/tncc-wrapper.py | ||
| 31 | } | ||
