mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-18 03:30:40 +00:00
python3-robotframework-seriallibrary: Backport a patch to fix py3 build
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
From e31d5fdf2ea00ac6349e64580a20816783064dd4 Mon Sep 17 00:00:00 2001
|
||||
From: Hideki Takeoka <hideki.takeoka@smartfrog.com>
|
||||
Date: Sun, 25 Aug 2019 19:25:00 +0200
|
||||
Subject: [PATCH] Update setup.py for python3.7+ support
|
||||
|
||||
---
|
||||
setup.py | 9 +++++----
|
||||
src/SerialLibrary/version.py | 3 +++
|
||||
2 files changed, 8 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 4c34705..70bb1af 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -1,6 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
-from imp import load_source
|
||||
from os.path import abspath, dirname, join
|
||||
from sys import platform
|
||||
|
||||
@@ -18,9 +17,11 @@
|
||||
|
||||
|
||||
CURDIR = dirname(abspath(__file__))
|
||||
-VERSION = load_source(
|
||||
- 'version', 'version',
|
||||
- open(join(CURDIR, 'src', 'SerialLibrary', 'version.py'))).VERSION
|
||||
+
|
||||
+with open(join(CURDIR, 'src', 'SerialLibrary', 'version.py')) as f:
|
||||
+ exec(f.read())
|
||||
+ VERSION = get_version()
|
||||
+
|
||||
README = open(join(CURDIR, 'README.rst')).read()
|
||||
CLASSIFIERS = '\n'.join(
|
||||
map(' :: '.join, [
|
||||
diff --git a/src/SerialLibrary/version.py b/src/SerialLibrary/version.py
|
||||
index 6ce65c4..19831bc 100644
|
||||
--- a/src/SerialLibrary/version.py
|
||||
+++ b/src/SerialLibrary/version.py
|
||||
@@ -1 +1,4 @@
|
||||
VERSION = (0, 3, 1)
|
||||
+
|
||||
+def get_version():
|
||||
+ return VERSION;
|
||||
@@ -1,2 +1,20 @@
|
||||
SUMMARY = "Robot Framework test library for serial connection"
|
||||
HOMEPAGE = "https://github.com/whosaysni/robotframework-seriallibrary"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=7145f7cdd263359b62d342a02f005515"
|
||||
|
||||
SRC_URI[md5sum] = "b7c9565d54c30df7cd3f3c0e29adffa3"
|
||||
SRC_URI[sha256sum] = "256ad60fc0b7df4be44d82c302f5ed8fad4935cda99e4b45942e3c88179d1e19"
|
||||
|
||||
PYPI_PACKAGE = "robotframework-seriallibrary"
|
||||
|
||||
inherit pypi setuptools3
|
||||
require python-robotframework-seriallibrary.inc
|
||||
|
||||
SRC_URI += "file://e31d5fdf2ea00ac6349e64580a20816783064dd4.patch"
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
${PYTHON_PN}-pyserial \
|
||||
${PYTHON_PN}-robotframework \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
Reference in New Issue
Block a user