From ea5d1e229898ba719818ccbab8e19010577f9ecc Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 18 Sep 2020 14:58:34 +0300 Subject: python3-cmd2: Upgrade 1.3.9 -> 1.3.10 Upgrade to release 1.3.10: - Added user-settable option called always_show_hint. If True, then tab completion hints will always display even when tab completion suggestions print. Arguments whose help or hint text is suppressed will not display hints even when this setting is True. - argparse tab completion now groups flag names which run the same action. Optional flags are wrapped in brackets like it is done in argparse usage text. - default category decorators are now heritable by default and will propagate the category down the class hierarchy until overridden. There's a new optional flag to set heritable to false. - Added --silent flag to alias/macro create. If used, then no confirmation message will be printed when aliases and macros are created or overwritten. - Added --with_silent flag to alias/macro list. Use this option when saving to a startup script that should silently create aliases and macros. - Fixed issue where flag names weren't always sorted correctly in argparse tab completion Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-cmd2_1.3.10.bb | 20 ++++++++++++++++++++ .../recipes-devtools/python/python3-cmd2_1.3.9.bb | 20 -------------------- 2 files changed, 20 insertions(+), 20 deletions(-) create mode 100644 meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb delete mode 100644 meta-python/recipes-devtools/python/python3-cmd2_1.3.9.bb diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb new file mode 100644 index 0000000000..7b74187838 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb @@ -0,0 +1,20 @@ +SUMMARY = "Extra features for standard library's cmd module" +HOMEPAGE = "https://github.com/python-cmd2/cmd2" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def" + +DEPENDS += "${PYTHON_PN}-setuptools-scm-native" + +SRC_URI[md5sum] = "39258e1af392e0bcefceb1982d7716bd" +SRC_URI[sha256sum] = "960d8288c8e3a093d04975e3dd8461ce2e43c1d0c70e54873f622f8f0b77d6f5" + +inherit pypi setuptools3 + +RDEPENDS_${PN} += "\ + ${PYTHON_PN}-attrs \ + ${PYTHON_PN}-colorama \ + ${PYTHON_PN}-pyperclip \ + ${PYTHON_PN}-wcwidth \ +" + +BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.9.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.3.9.bb deleted file mode 100644 index e677a69620..0000000000 --- a/meta-python/recipes-devtools/python/python3-cmd2_1.3.9.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "Extra features for standard library's cmd module" -HOMEPAGE = "https://github.com/python-cmd2/cmd2" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def" - -DEPENDS += "${PYTHON_PN}-setuptools-scm-native" - -SRC_URI[md5sum] = "f5fbd528e7b5977ad71466947af61f99" -SRC_URI[sha256sum] = "7f8035faafda15d26098bf2ffe16aaba1c78511ce13e0815d2efe58ba392b501" - -inherit pypi setuptools3 - -RDEPENDS_${PN} += "\ - ${PYTHON_PN}-attrs \ - ${PYTHON_PN}-colorama \ - ${PYTHON_PN}-pyperclip \ - ${PYTHON_PN}-wcwidth \ -" - -BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg