From 909fd91182e55a6e5147ab8bf3e6d56e77b9fef0 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Sun, 19 Jan 2020 19:51:19 -0800 Subject: python-cmd2: downgrade to 0.8.9 * 0.8.9 was the last version with Python 2.7 support * add missing RDEPENDS: - python-argparse FIXME: missing dependency on python-enum, which is not currently packaged by python_2.7 Signed-off-by: Tim Orling --- recipes-devtools/python/python-cmd2_0.8.9.bb | 33 +++++++++++++++++++++++++++ recipes-devtools/python/python-cmd2_0.9.21.bb | 32 -------------------------- 2 files changed, 33 insertions(+), 32 deletions(-) create mode 100644 recipes-devtools/python/python-cmd2_0.8.9.bb delete mode 100644 recipes-devtools/python/python-cmd2_0.9.21.bb diff --git a/recipes-devtools/python/python-cmd2_0.8.9.bb b/recipes-devtools/python/python-cmd2_0.8.9.bb new file mode 100644 index 0000000..74cc5d6 --- /dev/null +++ b/recipes-devtools/python/python-cmd2_0.8.9.bb @@ -0,0 +1,33 @@ +SUMMARY = "Extra features for standard library's cmd module" +DESCRIPTION = "cmd2 is a tool for building interactive command line \ +applications in Python. Its goal is to make it quick and easy for developers \ +to build feature-rich and user-friendly interactive command line applications. \ +It provides a simple API which is an extension of Python's built-in cmd module.\ + cmd2 provides a wealth of features on top of cmd to make your life easier and \ +eliminates much of the boilerplate code which would be necessary when using cmd." +HOMEPAGE = "http://packages.python.org/cmd2/" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=60bc6842001870a418935bd84570b676" + +SRC_URI[md5sum] = "878976772c305486dfbca3aff4b4e779" +SRC_URI[sha256sum] = "145cb677ebd0e3cae546ab81c30f6c25e0b08ba0f1071df854d53707ea792633" + +DEPENDS += "${PYTHON_PN}-setuptools-scm-native" + +inherit pypi setuptools + +RDEPENDS_${PN} += "\ + ${PYTHON_PN}-argparse \ + ${PYTHON_PN}-doctest \ + ${PYTHON_PN}-pyparsing \ + ${PYTHON_PN}-pyperclip \ + ${PYTHON_PN}-shell \ + ${PYTHON_PN}-six \ + ${PYTHON_PN}-stringold \ + ${PYTHON_PN}-subprocess \ + ${PYTHON_PN}-threading \ + ${PYTHON_PN}-textutils \ + " + +BBCLASSEXTEND = "native nativesdk" diff --git a/recipes-devtools/python/python-cmd2_0.9.21.bb b/recipes-devtools/python/python-cmd2_0.9.21.bb deleted file mode 100644 index 992b95e..0000000 --- a/recipes-devtools/python/python-cmd2_0.9.21.bb +++ /dev/null @@ -1,32 +0,0 @@ -SUMMARY = "Extra features for standard library's cmd module" -DESCRIPTION = "cmd2 is a tool for building interactive command line \ -applications in Python. Its goal is to make it quick and easy for developers \ -to build feature-rich and user-friendly interactive command line applications. \ -It provides a simple API which is an extension of Python's built-in cmd module.\ - cmd2 provides a wealth of features on top of cmd to make your life easier and \ -eliminates much of the boilerplate code which would be necessary when using cmd." -HOMEPAGE = "http://packages.python.org/cmd2/" - -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=01aeabea7ae1529a8e4b674b7107d6bc" - -SRC_URI[md5sum] = "0e1ce6a2fd8846c2a9e0de2ceb1fa461" -SRC_URI[sha256sum] = "8880fea501bb45a42e8ddde18023d336ccf72f187c4b03e9ee9f13d719ecbd5f" - -DEPENDS += "${PYTHON_PN}-setuptools-scm-native" - -inherit pypi setuptools - -RDEPENDS_${PN} += "\ - ${PYTHON_PN}-doctest \ - ${PYTHON_PN}-pyparsing \ - ${PYTHON_PN}-pyperclip \ - ${PYTHON_PN}-shell \ - ${PYTHON_PN}-six \ - ${PYTHON_PN}-stringold \ - ${PYTHON_PN}-subprocess \ - ${PYTHON_PN}-threading \ - ${PYTHON_PN}-textutils \ - " - -BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg