python3-robotframework-seriallibrary: upgrade 0.3.1 -> 0.4.3

e31d5fdf2ea00ac6349e64580a20816783064dd4.patch
removed since it's not available in 0.4.3

License-Update:
 version updated to 0.4.3
 The content location of the description of the license has changed

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
wangmy 2022-06-23 15:14:44 +08:00 committed by Khem Raj
parent 9ed9bd46fa
commit 520790c435
2 changed files with 2 additions and 50 deletions

View File

@ -1,45 +0,0 @@
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;

View File

@ -1,17 +1,14 @@
SUMMARY = "Robot Framework test library for serial connection" SUMMARY = "Robot Framework test library for serial connection"
HOMEPAGE = "https://github.com/whosaysni/robotframework-seriallibrary" HOMEPAGE = "https://github.com/whosaysni/robotframework-seriallibrary"
LICENSE = "Apache-2.0" LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=7145f7cdd263359b62d342a02f005515" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=1af2e051b493d9552af443cf2f99d480"
SRC_URI[md5sum] = "b7c9565d54c30df7cd3f3c0e29adffa3" SRC_URI[sha256sum] = "f20befe5c1106dd8ddca9f60a2f18bf5ec7d5f06f6f09a03fa66bae54777e6bb"
SRC_URI[sha256sum] = "256ad60fc0b7df4be44d82c302f5ed8fad4935cda99e4b45942e3c88179d1e19"
PYPI_PACKAGE = "robotframework-seriallibrary" PYPI_PACKAGE = "robotframework-seriallibrary"
inherit pypi setuptools3 inherit pypi setuptools3
SRC_URI += "file://e31d5fdf2ea00ac6349e64580a20816783064dd4.patch"
RDEPENDS:${PN} += " \ RDEPENDS:${PN} += " \
${PYTHON_PN}-pyserial \ ${PYTHON_PN}-pyserial \
${PYTHON_PN}-robotframework \ ${PYTHON_PN}-robotframework \