All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11
@ 2020-10-06  9:05 Leon Anavi
  2020-10-06  9:05 ` [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2020-10-06  9:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.11:

- Fixed issue where quoted redirectors and terminators in aliases
  and macros were not being restored when read from a startup
  script.
- Fixed issue where instantiating more than one cmd2-based class
  which uses the @as_subcommand_to decorator resulted in
  duplicated help text in the base command the subcommands belong
  to.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-cmd2_1.3.10.bb => python3-cmd2_1.3.11.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cmd2_1.3.10.bb => python3-cmd2_1.3.11.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
index 7b74187838..3b2aa5b744 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-SRC_URI[md5sum] = "39258e1af392e0bcefceb1982d7716bd"
-SRC_URI[sha256sum] = "960d8288c8e3a093d04975e3dd8461ce2e43c1d0c70e54873f622f8f0b77d6f5"
+SRC_URI[md5sum] = "7e3dbe0aefa331e80f515d3c41cc3b8c"
+SRC_URI[sha256sum] = "826a288ee6d9c4ec1184e64e9566c09d3b73be8f4283c1898fa4332f1daf8dbf"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2
  2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
@ 2020-10-06  9:05 ` Leon Anavi
  2020-10-07 13:48   ` [oe] " Trevor Gamblin
  2020-10-06  9:05 ` [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-06  9:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.7.2:

- Test: Fixed attempt in test_class_cmds.py to invoke a non-static
  method on a class object.
- Test: Preventive fix for potential issue with virtualenv raising
  AttributeError during installtest on Python 3.4.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-pywbemtools_0.7.1.bb => python3-pywbemtools_0.7.2.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_0.7.1.bb => python3-pywbemtools_0.7.2.bb} (87%)

diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
similarity index 87%
rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb
rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
index 05f77288e7..9121f81079 100644
--- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb
+++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 
-SRC_URI[md5sum] = "a789da735c04ddc08ba828cd8022243e"
-SRC_URI[sha256sum] = "d2fe776c78a740215142f4f033055093f2283fd9327440c59734716e51e19989"
+SRC_URI[md5sum] = "54ebb824d7ab231ef1f1e88d8d69ac69"
+SRC_URI[sha256sum] = "36d70f7d33498cab626e9a2871ea82e434a2c36fe6c240f400615082965f1e4e"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0
  2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
  2020-10-06  9:05 ` [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2 Leon Anavi
@ 2020-10-06  9:05 ` Leon Anavi
  2020-10-07 13:49   ` [oe] " Trevor Gamblin
  2020-10-06  9:05 ` [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-06  9:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Add a dependency on setuptools-scm and upgrade to release 1.0.0:

- Dropped support for EOL Python 2.4-2.6 and 3.0-3.4.
- Added support for Python 3.5-3.9.
- Added del_column(field_name).
- Added get_csv_string with delimiter option (comma or tab) and
  optional header.
- Use wcwidth for better wide char support.
- New paginate method can be used to produce strings suitable for
  piping to lp/lpr.
- from_html now handles HTML tables with colspan, rather than
  choking on them.
- Added min_width, min_table_width and max_table_width
  attribute/options for better control of table sizing.
- Added "title" attribute/option for table titles.
- When slice syntax is used to create a new sub-table out of an
  existing table, the rows are sorted before, not after, the
  slicing. The old behaviour (slice then sort) can be achieved
  by setting oldsortslice=True.
- The from_csv table factory now accepts CSV format parameters as
  keyword arguments (e.g. delimiter, doublequote, escapechar, etc.)
- Added 0x000f to the list of special characters with width 0, to
  fix problems with coloured strings produced by the Blessings
  library.
- Fixed constructor argument float_format to work as intended.
- Removed print_html() from README.
- Added from_json and get_json_string to PrettyTable.
- Fixed PLAIN_COLUMN to PLAIN_COLUMNS in README.
- Added Markdown and Org mode styles.

License-Update: Use wcwidth for better wide char support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...-prettytable_0.7.2.bb => python3-prettytable_1.0.0.bb} | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-prettytable_0.7.2.bb => python3-prettytable_1.0.0.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb b/meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb
rename to meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
index 18f3390619..e5688a3866 100644
--- a/meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
@@ -1,10 +1,10 @@
 SUMMARY = "Python library for displaying tabular data in a ASCII table format"
 HOMEPAGE = "http://code.google.com/p/prettytable"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://COPYING;md5=3e73500ffa52de5071cff65990055282"
+LIC_FILES_CHKSUM = "file://COPYING;md5=c9a6829fcd174d9535b46211917c7671"
 
-SRC_URI[md5sum] = "a6b80afeef286ce66733d54a0296b13b"
-SRC_URI[sha256sum] = "2d5460dc9db74a32bcc8f9f67de68b2c4f4d2f01fa3bd518764c69156d9cacd9"
+SRC_URI[md5sum] = "fb31d4c94fef42f2caf9784c44d8ea82"
+SRC_URI[sha256sum] = "98a3b74b1980e6a9392498e3a2a5406f6bd836f412843c2be23d9c88671747ac"
 
 do_install_append() {
     perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "*.txt" -o -name "PKG-INFO"`
@@ -23,6 +23,8 @@ SRC_URI += " \
 	file://run-ptest \
 "
 
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+
 RDEPENDS_${PN} += " \
 	${PYTHON_PN}-math \
 	${PYTHON_PN}-html \
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3
  2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
  2020-10-06  9:05 ` [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2 Leon Anavi
  2020-10-06  9:05 ` [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0 Leon Anavi
@ 2020-10-06  9:05 ` Leon Anavi
  2020-10-07 13:49   ` [oe] " Trevor Gamblin
  2020-10-06  9:05 ` [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3 Leon Anavi
  2020-10-07 13:48 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-06  9:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.3:

- Test: Fixed issue with virtualenv raising AttributeError during
  installtest on Python 3.4.
- Added checking for no expected warning. Adjusted a testcase to
  accomodate the new check.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-nocaselist_1.0.2.bb => python3-nocaselist_1.0.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-nocaselist_1.0.2.bb => python3-nocaselist_1.0.3.bb} (61%)

diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
similarity index 61%
rename from meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
rename to meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
index 8509cd0c94..1119c7f38e 100644
--- a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[md5sum] = "10e58542c1225aff3f057e89e9ae4394"
-SRC_URI[sha256sum] = "3cfe964c436991cd6bd9f2cf23375c484ec7cf0c7488471381eff13a4fdac902"
+SRC_URI[md5sum] = "42ba878fd70611cf345c61edd83f5fb0"
+SRC_URI[sha256sum] = "7e6decb7d85563b9044913c9087ef4b691bc3da4d7ad1d88968cdea409553326"
 
 inherit pypi setuptools3
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3
  2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-10-06  9:05 ` [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3 Leon Anavi
@ 2020-10-06  9:05 ` Leon Anavi
  2020-10-07 13:49   ` [oe] " Trevor Gamblin
  2020-10-07 13:48 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-06  9:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.1.3. This is a minor bug-fix release. It
includes some regression fixes and bug fixes. Details are
available at:
https://github.com/pandas-dev/pandas/releases/tag/v1.1.3

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pandas_1.1.2.bb => python3-pandas_1.1.3.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pandas_1.1.2.bb => python3-pandas_1.1.3.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
index 1eade9884d..da1ffd0b6d 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
@@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774"
 
-SRC_URI[md5sum] = "b4ce7c64f549ed48b47877fc64281031"
-SRC_URI[sha256sum] = "b64ffd87a2cfd31b40acd4b92cb72ea9a52a48165aec4c140e78fd69c45d1444"
+SRC_URI[md5sum] = "f10372d83a1c55cae217e8c05bf9bc5d"
+SRC_URI[sha256sum] = "babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11
  2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-10-06  9:05 ` [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3 Leon Anavi
@ 2020-10-07 13:48 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-07 13:48 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1746 bytes --]


On 10/6/20 5:05 AM, Leon Anavi wrote:
> - Fixed issue where quoted redirectors and terminators in aliases
>    and macros were not being restored when read from a startup
>    script.
> - Fixed issue where instantiating more than one cmd2-based class
>    which uses the @as_subcommand_to decorator resulted in
>    duplicated help text in the base command the subcommands belong
>    to.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cmd2_1.3.10.bb => python3-cmd2_1.3.11.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cmd2_1.3.10.bb => python3-cmd2_1.3.11.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb
> rename to meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
> index 7b74187838..3b2aa5b744 100644
> --- a/meta-python/recipes-devtools/python/python3-cmd2_1.3.10.bb
> +++ b/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
>   
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   
> -SRC_URI[md5sum] = "39258e1af392e0bcefceb1982d7716bd"
> -SRC_URI[sha256sum] = "960d8288c8e3a093d04975e3dd8461ce2e43c1d0c70e54873f622f8f0b77d6f5"
> +SRC_URI[md5sum] = "7e3dbe0aefa331e80f515d3c41cc3b8c"
> +SRC_URI[sha256sum] = "826a288ee6d9c4ec1184e64e9566c09d3b73be8f4283c1898fa4332f1daf8dbf"
>   
>   inherit pypi setuptools3
>   
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2624 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2
  2020-10-06  9:05 ` [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2 Leon Anavi
@ 2020-10-07 13:48   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-07 13:48 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]


On 10/6/20 5:05 AM, Leon Anavi wrote:
> - Test: Fixed attempt in test_class_cmds.py to invoke a non-static
>    method on a class object.
> - Test: Preventive fix for potential issue with virtualenv raising
>    AttributeError during installtest on Python 3.4.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-pywbemtools_0.7.1.bb => python3-pywbemtools_0.7.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_0.7.1.bb => python3-pywbemtools_0.7.2.bb} (87%)
>
> diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
> similarity index 87%
> rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb
> rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
> index 05f77288e7..9121f81079 100644
> --- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.1.bb
> +++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.2.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
>   
> -SRC_URI[md5sum] = "a789da735c04ddc08ba828cd8022243e"
> -SRC_URI[sha256sum] = "d2fe776c78a740215142f4f033055093f2283fd9327440c59734716e51e19989"
> +SRC_URI[md5sum] = "54ebb824d7ab231ef1f1e88d8d69ac69"
> +SRC_URI[sha256sum] = "36d70f7d33498cab626e9a2871ea82e434a2c36fe6c240f400615082965f1e4e"
>   
>   inherit pypi setuptools3
>   
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2726 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0
  2020-10-06  9:05 ` [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0 Leon Anavi
@ 2020-10-07 13:49   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-07 13:49 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3391 bytes --]


On 10/6/20 5:05 AM, Leon Anavi wrote:
> - Dropped support for EOL Python 2.4-2.6 and 3.0-3.4.
> - Added support for Python 3.5-3.9.
> - Added del_column(field_name).
> - Added get_csv_string with delimiter option (comma or tab) and
>    optional header.
> - Use wcwidth for better wide char support.
> - New paginate method can be used to produce strings suitable for
>    piping to lp/lpr.
> - from_html now handles HTML tables with colspan, rather than
>    choking on them.
> - Added min_width, min_table_width and max_table_width
>    attribute/options for better control of table sizing.
> - Added "title" attribute/option for table titles.
> - When slice syntax is used to create a new sub-table out of an
>    existing table, the rows are sorted before, not after, the
>    slicing. The old behaviour (slice then sort) can be achieved
>    by setting oldsortslice=True.
> - The from_csv table factory now accepts CSV format parameters as
>    keyword arguments (e.g. delimiter, doublequote, escapechar, etc.)
> - Added 0x000f to the list of special characters with width 0, to
>    fix problems with coloured strings produced by the Blessings
>    library.
> - Fixed constructor argument float_format to work as intended.
> - Removed print_html() from README.
> - Added from_json and get_json_string to PrettyTable.
> - Fixed PLAIN_COLUMN to PLAIN_COLUMNS in README.
> - Added Markdown and Org mode styles.
>
> License-Update: Use wcwidth for better wide char support
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-prettytable_0.7.2.bb => python3-prettytable_1.0.0.bb} | 8 +++++---
>   1 file changed, 5 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-prettytable_0.7.2.bb => python3-prettytable_1.0.0.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb b/meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb
> rename to meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
> index 18f3390619..e5688a3866 100644
> --- a/meta-python/recipes-devtools/python/python3-prettytable_0.7.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-prettytable_1.0.0.bb
> @@ -1,10 +1,10 @@
>   SUMMARY = "Python library for displaying tabular data in a ASCII table format"
>   HOMEPAGE = "http://code.google.com/p/prettytable"
>   LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=3e73500ffa52de5071cff65990055282"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=c9a6829fcd174d9535b46211917c7671"
>   
> -SRC_URI[md5sum] = "a6b80afeef286ce66733d54a0296b13b"
> -SRC_URI[sha256sum] = "2d5460dc9db74a32bcc8f9f67de68b2c4f4d2f01fa3bd518764c69156d9cacd9"
> +SRC_URI[md5sum] = "fb31d4c94fef42f2caf9784c44d8ea82"
> +SRC_URI[sha256sum] = "98a3b74b1980e6a9392498e3a2a5406f6bd836f412843c2be23d9c88671747ac"
>   
>   do_install_append() {
>       perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "*.txt" -o -name "PKG-INFO"`
> @@ -23,6 +23,8 @@ SRC_URI += " \
>   	file://run-ptest \
>   "
>   
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> +
>   RDEPENDS_${PN} += " \
>   	${PYTHON_PN}-math \
>   	${PYTHON_PN}-html \
>
> 
>

[-- Attachment #2: Type: text/html, Size: 4523 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3
  2020-10-06  9:05 ` [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3 Leon Anavi
@ 2020-10-07 13:49   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-07 13:49 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1656 bytes --]


On 10/6/20 5:05 AM, Leon Anavi wrote:
> - Test: Fixed issue with virtualenv raising AttributeError during
>    installtest on Python 3.4.
> - Added checking for no expected warning. Adjusted a testcase to
>    accomodate the new check.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-nocaselist_1.0.2.bb => python3-nocaselist_1.0.3.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-nocaselist_1.0.2.bb => python3-nocaselist_1.0.3.bb} (61%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
> similarity index 61%
> rename from meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
> rename to meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
> index 8509cd0c94..1119c7f38e 100644
> --- a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.3.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
>   
> -SRC_URI[md5sum] = "10e58542c1225aff3f057e89e9ae4394"
> -SRC_URI[sha256sum] = "3cfe964c436991cd6bd9f2cf23375c484ec7cf0c7488471381eff13a4fdac902"
> +SRC_URI[md5sum] = "42ba878fd70611cf345c61edd83f5fb0"
> +SRC_URI[sha256sum] = "7e6decb7d85563b9044913c9087ef4b691bc3da4d7ad1d88968cdea409553326"
>   
>   inherit pypi setuptools3
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2645 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3
  2020-10-06  9:05 ` [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3 Leon Anavi
@ 2020-10-07 13:49   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-07 13:49 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1408 bytes --]


On 10/6/20 5:05 AM, Leon Anavi wrote:
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pandas_1.1.2.bb => python3-pandas_1.1.3.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pandas_1.1.2.bb => python3-pandas_1.1.3.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb
> rename to meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
> index 1eade9884d..da1ffd0b6d 100644
> --- a/meta-python/recipes-devtools/python/python3-pandas_1.1.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
> @@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774"
>   
> -SRC_URI[md5sum] = "b4ce7c64f549ed48b47877fc64281031"
> -SRC_URI[sha256sum] = "b64ffd87a2cfd31b40acd4b92cb72ea9a52a48165aec4c140e78fd69c45d1444"
> +SRC_URI[md5sum] = "f10372d83a1c55cae217e8c05bf9bc5d"
> +SRC_URI[sha256sum] = "babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613"
>   
>   inherit pypi setuptools3
>   
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2386 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-10-07 13:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-06  9:05 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Leon Anavi
2020-10-06  9:05 ` [meta-python][PATCH 2/5] python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2 Leon Anavi
2020-10-07 13:48   ` [oe] " Trevor Gamblin
2020-10-06  9:05 ` [meta-python][PATCH 3/5] python3-prettytable: Upgrade 0.7.2 -> 1.0.0 Leon Anavi
2020-10-07 13:49   ` [oe] " Trevor Gamblin
2020-10-06  9:05 ` [meta-python][PATCH 4/5] python3-nocaselist: Upgrade 1.0.2 -> 1.0.3 Leon Anavi
2020-10-07 13:49   ` [oe] " Trevor Gamblin
2020-10-06  9:05 ` [meta-python][PATCH 5/5] python3-pandas: Upgrade 1.1.2 -> 1.1.3 Leon Anavi
2020-10-07 13:49   ` [oe] " Trevor Gamblin
2020-10-07 13:48 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.10 -> 1.3.11 Trevor Gamblin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.