All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0
@ 2020-07-24 10:35 Leon Anavi
  2020-07-24 10:35 ` [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.10.0:

- Compatible with pytest-xdist 1.22.3+, now including 2.0+

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...est-metadata_1.9.0.bb => python3-pytest-metadata_1.10.0.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-metadata_1.9.0.bb => python3-pytest-metadata_1.10.0.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb
rename to meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
index 4a77af3cf..70cc98f29 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
@@ -4,7 +4,8 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
 
-SRC_URI[sha256sum] = "168d203abba8cabb65cf1b5fa675b0ba60dccbf1825d147960876a7e6f7c219c"
+SRC_URI[sha256sum] = "b7e6e0a45adacb17a03a97bf7a2ef60cc1f4e172bcce9732ce5e814191932315"
+SRC_URI[md5sum] = "4fcf9764e6210c4555411fce8109e7cd"
 
 PYPI_PACKAGE = "pytest-metadata"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-28 13:32   ` [oe] " Trevor Gamblin
  2020-07-24 10:35 ` [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.2.1:

- Switched to getting version using importlib.metadata instead
  of using pkg_resources
- Fixed typing module compatibility issue with Python 3.5 prior
  to 3.5.4
- Relax minimum version of importlib-metadata to >= 1.6.0 when
  using Python < 3.8

Update the HOMEPAGE to match the home page link from pypi.org.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-cmd2_1.1.0.bb => python3-cmd2_1.2.1.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cmd2_1.1.0.bb => python3-cmd2_1.2.1.bb} (67%)

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
index bc74b5ab5..cb52ecfbb 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
@@ -1,12 +1,12 @@
 SUMMARY = "Extra features for standard library's cmd module"
-HOMEPAGE = "http://packages.python.org/cmd2/"
+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] = "2b4a3b15ac52d239664c40c2d661b0c7"
-SRC_URI[sha256sum] = "d233b5ad4b9ee264a43fb14668f287d25f998f4b443a81b4efdfd292f1a77108"
+SRC_URI[md5sum] = "0ab5f4d8ad6a9099202ed887358102f2"
+SRC_URI[sha256sum] = "5a5d3361fadada16cae0c99b65eba5d49d587fc2e02b3afb058da1872871e7a9"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
  2020-07-24 10:35 ` [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-28 13:32   ` [oe] " Trevor Gamblin
  2020-07-24 10:35 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2 Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.2.4:

- add support to Constant to retrieve members by value
- add pickle/deepcopy support to Constant
- add support for Constant to use other Constant values
- AutoNumber and auto() now work together
- Enum members are now added to the class as enum_property, which
  supports unshadowing of parent class attributes when called on
  an Enum member

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

diff --git a/meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb b/meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
similarity index 63%
rename from meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb
rename to meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
index 16d2a881f..da77a5c75 100644
--- a/meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://pypi.org/project/aenum/"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://aenum/LICENSE;md5=c6a85477543f8b8591b9c1f82abebbe9"
 
-SRC_URI[md5sum] = "026786dbb37c15c2c8dc91fbf5828e97"
-SRC_URI[sha256sum] = "a4334cabf47c167d44ab5a6198837b80deec5d5bad1b5cf70c966c3a330260e8"
+SRC_URI[md5sum] = "8983562361efe5be865617341dadbb9b"
+SRC_URI[sha256sum] = "81828d1fbe20b6b188d75b21a0fa936d7d929d839ef843ef385d9c2a97082864"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
  2020-07-24 10:35 ` [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
  2020-07-24 10:35 ` [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-28 13:32   ` [oe] " Trevor Gamblin
  2020-07-24 10:35 ` [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to 1.4.2:

* add more tests
* C-level:
    - simplify pack/unpack code
    - fix memory leak in `~` operation (bitarray_cpinvert)

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
index 4866e8464..925bdc8d9 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[md5sum] = "dfb3fe66ae989e4724747fcb0f704f56"
-SRC_URI[sha256sum] = "9e26d3dc7fad932fed66e08da3fcf93dd15e8402aa84e764e1e2a9e1b6ae2b7f"
+SRC_URI[md5sum] = "2bc9489e9048db6a8705a7b9493e3015"
+SRC_URI[sha256sum] = "16f9908c9388af616f2b298febbefa8315d648f522d195a7706d8ba1895c5680"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-07-24 10:35 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-24 13:27   ` [oe] " Tim Orling
  2020-07-24 10:35 ` [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1 Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgarde to release 1.25.10:

* Added support for ``SSLKEYLOGFILE`` environment variable for
  logging TLS session keys with use with programs like
  Wireshark for decrypting captured web traffic
* Fixed loading of SecureTransport libraries on macOS Big Sur
  due to the new dynamic linker cache
* Collapse chunked request bodies data and framing into one
  call to ``send()`` to reduce the number of TCP packets by 2-4x
* Don't insert ``None`` into ``ConnectionPool`` if the pool
  was empty when requesting a connection
* Avoid ``hasattr`` call in ``BrotliDecoder.decompress()``

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

diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb
rename to meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
index 8cbc1f9f9..db985a2ff 100644
--- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb
+++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/shazow/urllib3"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
 
-SRC_URI[md5sum] = "dbf9b868b90880b24b1ac278094e912e"
-SRC_URI[sha256sum] = "3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527"
+SRC_URI[md5sum] = "94e3d4d472a14e788d4bd1a903fd102b"
+SRC_URI[sha256sum] = "91056c15fa70756691db97756772bb1eb9678fa585d9184f24534b100dc60f4a"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-07-24 10:35 ` [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-28 13:33   ` [oe] " Trevor Gamblin
  2020-07-24 10:35 ` [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0 Leon Anavi
  2020-07-28 13:32 ` [oe] [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Trevor Gamblin
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.2.1:

- Fix: product description on pypi is not formatted. For details:
  https://github.com/borntyping/python-colorlog/issues/67

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

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb b/meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb
rename to meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
index ea4c575eb..a4aaa3cb6 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
@@ -7,5 +7,5 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "colorlog"
 
-SRC_URI[md5sum] = "25f79b76421132e2a9e08da15e4e0a73"
-SRC_URI[sha256sum] = "30aaef5ab2a1873dec5da38fd6ba568fa761c9fa10b40241027fa3edea47f3d2"
+SRC_URI[md5sum] = "a01336efc6f54e58e3ed4f331d76c2f0"
+SRC_URI[sha256sum] = "75e55822c3a3387d721579241e776de2cf089c9ef9528b1f09e8b04d403ad118"
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-07-24 10:35 ` [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1 Leon Anavi
@ 2020-07-24 10:35 ` Leon Anavi
  2020-07-24 13:31   ` [oe] " Tim Orling
  2020-07-28 13:32 ` [oe] [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Trevor Gamblin
  6 siblings, 1 reply; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 10:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.3.0:

- Provisional API for composing semantic axes layouts from text
  or nested lists
- New Axes.sharex, Axes.sharey methods
- Turbo colormap
- colors.BoundaryNorm supports extend keyword argument
- Text color for legend labels
- Pcolor and Pcolormesh now accept shading='nearest' and 'auto'
- Allow tick formatters to be set with str or function inputs
- New Axes.axline method
- Dates use a modern epoch
- Improved font weight detection
- Axes3D no longer distorts the 3D plot to match the 2D aspect
  ratio
- More consistent toolbar behavior across backends
- Toolbar icons are now styled for dark themes
- Cursor text now uses a number of significant digits matching
  pointing precision
- Functions to compute a Path's size
- savefig() gained a backend keyword argument
- Saving SVG now supports adding metadata
- Saving PDF metadata via PGF now consistent with PDF backend
- NbAgg and WebAgg no longer use jQuery & jQuery UI

Create setup.cfg with configuration to use the copy of FreeType
installed on the system.

The line and the checksum of the license in setup.py has changed
but the license remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...atplotlib_3.2.2.bb => python3-matplotlib_3.3.0.bb} | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-matplotlib_3.2.2.bb => python3-matplotlib_3.3.0.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
rename to meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
index b32177d9b..2e88efb56 100644
--- a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
 SECTION = "devel/python"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "\
-    file://setup.py;beginline=253;endline=253;md5=2a114620e4e6843aa7568d5902501753 \
+    file://setup.py;beginline=251;endline=251;md5=e0ef37de7122ce842bcd1fb54482b353 \
     file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
 "
 DEPENDS = "\
@@ -18,8 +18,8 @@ DEPENDS = "\
     python3-pytz-native \
 "
 
-SRC_URI[md5sum] = "b60cd68f792a30173d825e16482aedd8"
-SRC_URI[sha256sum] = "3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d"
+SRC_URI[md5sum] = "b1de7185687c6f5c092689e3431a69b3"
+SRC_URI[sha256sum] = "24e8db94948019d531ce0bcd637ac24b1c8f6744ac86d2aa0eb6dbaeb1386f82"
 
 inherit pypi setuptools3 pkgconfig
 
@@ -34,4 +34,9 @@ RDEPENDS_${PN} = "\
     python3-pytz \
 "
 
+do_compile_prepend() {
+    echo [libs] > ${S}/setup.cfg
+    echo system_freetype = true >> ${S}/setup.cfg
+}
+
 BBCLASSEXTEND = "native"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10
  2020-07-24 10:35 ` [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10 Leon Anavi
@ 2020-07-24 13:27   ` Tim Orling
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Orling @ 2020-07-24 13:27 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembedded-devel

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

On Fri, Jul 24, 2020 at 3:35 AM Leon Anavi <leon.anavi@konsulko.com> wrote:

> Upgarde to release 1.25.10:

Typo: Upgarde -> Upgrade


>
> * Added support for ``SSLKEYLOGFILE`` environment variable for
>   logging TLS session keys with use with programs like
>   Wireshark for decrypting captured web traffic
> * Fixed loading of SecureTransport libraries on macOS Big Sur
>   due to the new dynamic linker cache
> * Collapse chunked request bodies data and framing into one
>   call to ``send()`` to reduce the number of TCP packets by 2-4x
> * Don't insert ``None`` into ``ConnectionPool`` if the pool
>   was empty when requesting a connection
> * Avoid ``hasattr`` call in ``BrotliDecoder.decompress()``
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  .../{python3-urllib3_1.25.9.bb => python3-urllib3_1.25.10.bb} | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python3-urllib3_1.25.9.bb =>
> python3-urllib3_1.25.10.bb} (79%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb
> b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
> similarity index 79%
> rename from meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb
> rename to meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
> index 8cbc1f9f9..db985a2ff 100644
> --- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb
> +++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/shazow/urllib3"
>  LICENSE = "MIT"
>  LIC_FILES_CHKSUM =
> "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
>
> -SRC_URI[md5sum] = "dbf9b868b90880b24b1ac278094e912e"
> -SRC_URI[sha256sum] =
> "3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527"
> +SRC_URI[md5sum] = "94e3d4d472a14e788d4bd1a903fd102b"
> +SRC_URI[sha256sum] =
> "91056c15fa70756691db97756772bb1eb9678fa585d9184f24534b100dc60f4a"
>
>  inherit pypi setuptools3
>
> --
> 2.17.1
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0
  2020-07-24 10:35 ` [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0 Leon Anavi
@ 2020-07-24 13:31   ` Tim Orling
  2020-07-24 16:34     ` Leon Anavi
  0 siblings, 1 reply; 15+ messages in thread
From: Tim Orling @ 2020-07-24 13:31 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembedded-devel

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

On Fri, Jul 24, 2020 at 3:35 AM Leon Anavi <leon.anavi@konsulko.com> wrote:

> Upgrade to release 3.3.0:
>
> - Provisional API for composing semantic axes layouts from text
>   or nested lists
> - New Axes.sharex, Axes.sharey methods
> - Turbo colormap
> - colors.BoundaryNorm supports extend keyword argument
> - Text color for legend labels
> - Pcolor and Pcolormesh now accept shading='nearest' and 'auto'
> - Allow tick formatters to be set with str or function inputs
> - New Axes.axline method
> - Dates use a modern epoch
> - Improved font weight detection
> - Axes3D no longer distorts the 3D plot to match the 2D aspect
>   ratio
> - More consistent toolbar behavior across backends
> - Toolbar icons are now styled for dark themes
> - Cursor text now uses a number of significant digits matching
>   pointing precision
> - Functions to compute a Path's size
> - savefig() gained a backend keyword argument
> - Saving SVG now supports adding metadata
> - Saving PDF metadata via PGF now consistent with PDF backend
> - NbAgg and WebAgg no longer use jQuery & jQuery UI
>
> Create setup.cfg with configuration to use the copy of FreeType
> installed on the system.
>
> Please use the tag
License-Update:
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines

The line and the checksum of the license in setup.py has changed
> but the license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  ...atplotlib_3.2.2.bb => python3-matplotlib_3.3.0.bb} | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
>  rename meta-python/recipes-devtools/python/{python3-matplotlib_3.2.2.bb
> => python3-matplotlib_3.3.0.bb} (70%)
>
> diff --git a/meta-python/recipes-devtools/python/
> python3-matplotlib_3.2.2.bb b/meta-python/recipes-devtools/python/
> python3-matplotlib_3.3.0.bb
> similarity index 70%
> rename from meta-python/recipes-devtools/python/
> python3-matplotlib_3.2.2.bb
> rename to meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
> index b32177d9b..2e88efb56 100644
> --- a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
> @@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
>  SECTION = "devel/python"
>  LICENSE = "PSF"
>  LIC_FILES_CHKSUM = "\
> -
> file://setup.py;beginline=253;endline=253;md5=2a114620e4e6843aa7568d5902501753
> \
> +
> file://setup.py;beginline=251;endline=251;md5=e0ef37de7122ce842bcd1fb54482b353
> \
>      file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
>  "
>  DEPENDS = "\
> @@ -18,8 +18,8 @@ DEPENDS = "\
>      python3-pytz-native \
>  "
>
> -SRC_URI[md5sum] = "b60cd68f792a30173d825e16482aedd8"
> -SRC_URI[sha256sum] =
> "3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d"
> +SRC_URI[md5sum] = "b1de7185687c6f5c092689e3431a69b3"
> +SRC_URI[sha256sum] =
> "24e8db94948019d531ce0bcd637ac24b1c8f6744ac86d2aa0eb6dbaeb1386f82"
>
>  inherit pypi setuptools3 pkgconfig
>
> @@ -34,4 +34,9 @@ RDEPENDS_${PN} = "\
>      python3-pytz \
>  "
>
> +do_compile_prepend() {
> +    echo [libs] > ${S}/setup.cfg
> +    echo system_freetype = true >> ${S}/setup.cfg
> +}
> +
>  BBCLASSEXTEND = "native"
> --
> 2.17.1
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0
  2020-07-24 13:31   ` [oe] " Tim Orling
@ 2020-07-24 16:34     ` Leon Anavi
  0 siblings, 0 replies; 15+ messages in thread
From: Leon Anavi @ 2020-07-24 16:34 UTC (permalink / raw)
  To: Tim Orling; +Cc: openembedded-devel

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

Hi Tim,

On 24.07.20 г. 16:31 ч., Tim Orling wrote:
>
>
> On Fri, Jul 24, 2020 at 3:35 AM Leon Anavi <leon.anavi@konsulko.com 
> <mailto:leon.anavi@konsulko.com>> wrote:
>
>     Upgrade to release 3.3.0:
>
>     - Provisional API for composing semantic axes layouts from text
>       or nested lists
>     - New Axes.sharex, Axes.sharey methods
>     - Turbo colormap
>     - colors.BoundaryNorm supports extend keyword argument
>     - Text color for legend labels
>     - Pcolor and Pcolormesh now accept shading='nearest' and 'auto'
>     - Allow tick formatters to be set with str or function inputs
>     - New Axes.axline method
>     - Dates use a modern epoch
>     - Improved font weight detection
>     - Axes3D no longer distorts the 3D plot to match the 2D aspect
>       ratio
>     - More consistent toolbar behavior across backends
>     - Toolbar icons are now styled for dark themes
>     - Cursor text now uses a number of significant digits matching
>       pointing precision
>     - Functions to compute a Path's size
>     - savefig() gained a backend keyword argument
>     - Saving SVG now supports adding metadata
>     - Saving PDF metadata via PGF now consistent with PDF backend
>     - NbAgg and WebAgg no longer use jQuery & jQuery UI
>
>     Create setup.cfg with configuration to use the copy of FreeType
>     installed on the system.
>
> Please use the tag
> License-Update:
> https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines


Thank you for the code review. I didn't know about this tag. I have sent 
v2 of the patch and I will use it future.

Thanks,
Leon


>
>     The line and the checksum of the license in setup.py has changed
>     but the license remains the same.
>
>     Signed-off-by: Leon Anavi <leon.anavi@konsulko.com
>     <mailto:leon.anavi@konsulko.com>>
>     ---
>      ...atplotlib_3.2.2.bb <http://atplotlib_3.2.2.bb> =>
>     python3-matplotlib_3.3.0.bb <http://python3-matplotlib_3.3.0.bb>}
>     | 11 ++++++++---
>      1 file changed, 8 insertions(+), 3 deletions(-)
>      rename
>     meta-python/recipes-devtools/python/{python3-matplotlib_3.2.2.bb
>     <http://python3-matplotlib_3.2.2.bb> =>
>     python3-matplotlib_3.3.0.bb <http://python3-matplotlib_3.3.0.bb>}
>     (70%)
>
>     diff --git
>     a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
>     <http://python3-matplotlib_3.2.2.bb>
>     b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
>     <http://python3-matplotlib_3.3.0.bb>
>     similarity index 70%
>     rename from
>     meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
>     <http://python3-matplotlib_3.2.2.bb>
>     rename to
>     meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
>     <http://python3-matplotlib_3.3.0.bb>
>     index b32177d9b..2e88efb56 100644
>     ---
>     a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
>     <http://python3-matplotlib_3.2.2.bb>
>     +++
>     b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.0.bb
>     <http://python3-matplotlib_3.3.0.bb>
>     @@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
>      SECTION = "devel/python"
>      LICENSE = "PSF"
>      LIC_FILES_CHKSUM = "\
>     -
>     file://setup.py;beginline=253;endline=253;md5=2a114620e4e6843aa7568d5902501753
>     \
>     +
>     file://setup.py;beginline=251;endline=251;md5=e0ef37de7122ce842bcd1fb54482b353
>     \
>      file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
>      "
>      DEPENDS = "\
>     @@ -18,8 +18,8 @@ DEPENDS = "\
>          python3-pytz-native \
>      "
>
>     -SRC_URI[md5sum] = "b60cd68f792a30173d825e16482aedd8"
>     -SRC_URI[sha256sum] =
>     "3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d"
>     +SRC_URI[md5sum] = "b1de7185687c6f5c092689e3431a69b3"
>     +SRC_URI[sha256sum] =
>     "24e8db94948019d531ce0bcd637ac24b1c8f6744ac86d2aa0eb6dbaeb1386f82"
>
>      inherit pypi setuptools3 pkgconfig
>
>     @@ -34,4 +34,9 @@ RDEPENDS_${PN} = "\
>          python3-pytz \
>      "
>
>     +do_compile_prepend() {
>     +    echo [libs] > ${S}/setup.cfg
>     +    echo system_freetype = true >> ${S}/setup.cfg
>     +}
>     +
>      BBCLASSEXTEND = "native"
>     -- 
>     2.17.1
>
>     
>
-- 
Leon Anavi
Software Engineer
konsulko.com


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

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

* Re: [oe] [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0
  2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-07-24 10:35 ` [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0 Leon Anavi
@ 2020-07-28 13:32 ` Trevor Gamblin
  6 siblings, 0 replies; 15+ messages in thread
From: Trevor Gamblin @ 2020-07-28 13:32 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/24/20 6:35 AM, Leon Anavi wrote:
> Upgrade to release 1.10.0:
>
> - Compatible with pytest-xdist 1.22.3+, now including 2.0+
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...est-metadata_1.9.0.bb => python3-pytest-metadata_1.10.0.bb} | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pytest-metadata_1.9.0.bb => python3-pytest-metadata_1.10.0.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb
> rename to meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
> index 4a77af3cf..70cc98f29 100644
> --- a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.9.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
> @@ -4,7 +4,8 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   LICENSE = "MPL-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
>   
> -SRC_URI[sha256sum] = "168d203abba8cabb65cf1b5fa675b0ba60dccbf1825d147960876a7e6f7c219c"
> +SRC_URI[sha256sum] = "b7e6e0a45adacb17a03a97bf7a2ef60cc1f4e172bcce9732ce5e814191932315"
> +SRC_URI[md5sum] = "4fcf9764e6210c4555411fce8109e7cd"
>   
>   PYPI_PACKAGE = "pytest-metadata"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1
  2020-07-24 10:35 ` [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
@ 2020-07-28 13:32   ` Trevor Gamblin
  0 siblings, 0 replies; 15+ messages in thread
From: Trevor Gamblin @ 2020-07-28 13:32 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/24/20 6:35 AM, Leon Anavi wrote:
> Upgrade to release 1.2.1:
>
> - Switched to getting version using importlib.metadata instead
>    of using pkg_resources
> - Fixed typing module compatibility issue with Python 3.5 prior
>    to 3.5.4
> - Relax minimum version of importlib-metadata to >= 1.6.0 when
>    using Python < 3.8
>
> Update the HOMEPAGE to match the home page link from pypi.org.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cmd2_1.1.0.bb => python3-cmd2_1.2.1.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cmd2_1.1.0.bb => python3-cmd2_1.2.1.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
> index bc74b5ab5..cb52ecfbb 100644
> --- a/meta-python/recipes-devtools/python/python3-cmd2_1.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-cmd2_1.2.1.bb
> @@ -1,12 +1,12 @@
>   SUMMARY = "Extra features for standard library's cmd module"
> -HOMEPAGE = "http://packages.python.org/cmd2/"
> +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] = "2b4a3b15ac52d239664c40c2d661b0c7"
> -SRC_URI[sha256sum] = "d233b5ad4b9ee264a43fb14668f287d25f998f4b443a81b4efdfd292f1a77108"
> +SRC_URI[md5sum] = "0ab5f4d8ad6a9099202ed887358102f2"
> +SRC_URI[sha256sum] = "5a5d3361fadada16cae0c99b65eba5d49d587fc2e02b3afb058da1872871e7a9"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4
  2020-07-24 10:35 ` [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4 Leon Anavi
@ 2020-07-28 13:32   ` Trevor Gamblin
  0 siblings, 0 replies; 15+ messages in thread
From: Trevor Gamblin @ 2020-07-28 13:32 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/24/20 6:35 AM, Leon Anavi wrote:
> Upgrade to release 2.2.4:
>
> - add support to Constant to retrieve members by value
> - add pickle/deepcopy support to Constant
> - add support for Constant to use other Constant values
> - AutoNumber and auto() now work together
> - Enum members are now added to the class as enum_property, which
>    supports unshadowing of parent class attributes when called on
>    an Enum member
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-aenum_2.2.3.bb => python3-aenum_2.2.4.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-aenum_2.2.3.bb => python3-aenum_2.2.4.bb} (63%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb b/meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
> similarity index 63%
> rename from meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb
> rename to meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
> index 16d2a881f..da77a5c75 100644
> --- a/meta-python/recipes-devtools/python/python3-aenum_2.2.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-aenum_2.2.4.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://pypi.org/project/aenum/"
>   LICENSE = "BSD"
>   LIC_FILES_CHKSUM = "file://aenum/LICENSE;md5=c6a85477543f8b8591b9c1f82abebbe9"
>   
> -SRC_URI[md5sum] = "026786dbb37c15c2c8dc91fbf5828e97"
> -SRC_URI[sha256sum] = "a4334cabf47c167d44ab5a6198837b80deec5d5bad1b5cf70c966c3a330260e8"
> +SRC_URI[md5sum] = "8983562361efe5be865617341dadbb9b"
> +SRC_URI[sha256sum] = "81828d1fbe20b6b188d75b21a0fa936d7d929d839ef843ef385d9c2a97082864"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2
  2020-07-24 10:35 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2 Leon Anavi
@ 2020-07-28 13:32   ` Trevor Gamblin
  0 siblings, 0 replies; 15+ messages in thread
From: Trevor Gamblin @ 2020-07-28 13:32 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/24/20 6:35 AM, Leon Anavi wrote:
> Upgrade to 1.4.2:
>
> * add more tests
> * C-level:
>      - simplify pack/unpack code
>      - fix memory leak in `~` operation (bitarray_cpinvert)
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-bitarray_1.4.1.bb => python3-bitarray_1.4.2.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-bitarray_1.4.1.bb => python3-bitarray_1.4.2.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
> rename to meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
> index 4866e8464..925bdc8d9 100644
> --- a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.4.2.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
>   LICENSE = "PSF"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
>   
> -SRC_URI[md5sum] = "dfb3fe66ae989e4724747fcb0f704f56"
> -SRC_URI[sha256sum] = "9e26d3dc7fad932fed66e08da3fcf93dd15e8402aa84e764e1e2a9e1b6ae2b7f"
> +SRC_URI[md5sum] = "2bc9489e9048db6a8705a7b9493e3015"
> +SRC_URI[sha256sum] = "16f9908c9388af616f2b298febbefa8315d648f522d195a7706d8ba1895c5680"
>   
>   inherit setuptools3 pypi
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1
  2020-07-24 10:35 ` [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1 Leon Anavi
@ 2020-07-28 13:33   ` Trevor Gamblin
  0 siblings, 0 replies; 15+ messages in thread
From: Trevor Gamblin @ 2020-07-28 13:33 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/24/20 6:35 AM, Leon Anavi wrote:
> Upgrade to release 4.2.1:
>
> - Fix: product description on pypi is not formatted. For details:
>    https://github.com/borntyping/python-colorlog/issues/67
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-colorlog_4.1.0.bb => python3-colorlog_4.2.1.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-colorlog_4.1.0.bb => python3-colorlog_4.2.1.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb b/meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
> index ea4c575eb..a4aaa3cb6 100644
> --- a/meta-python/recipes-devtools/python/python3-colorlog_4.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-colorlog_4.2.1.bb
> @@ -7,5 +7,5 @@ inherit pypi setuptools3
>   
>   PYPI_PACKAGE = "colorlog"
>   
> -SRC_URI[md5sum] = "25f79b76421132e2a9e08da15e4e0a73"
> -SRC_URI[sha256sum] = "30aaef5ab2a1873dec5da38fd6ba568fa761c9fa10b40241027fa3edea47f3d2"
> +SRC_URI[md5sum] = "a01336efc6f54e58e3ed4f331d76c2f0"
> +SRC_URI[sha256sum] = "75e55822c3a3387d721579241e776de2cf089c9ef9528b1f09e8b04d403ad118"
>
> 

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

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

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

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-24 10:35 [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 Leon Anavi
2020-07-24 10:35 ` [meta-python][PATCH 2/7] python3-cmd2: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
2020-07-28 13:32   ` [oe] " Trevor Gamblin
2020-07-24 10:35 ` [meta-python][PATCH 3/7] python3-aenum: Upgrade 2.2.3 -> 2.2.4 Leon Anavi
2020-07-28 13:32   ` [oe] " Trevor Gamblin
2020-07-24 10:35 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.4.1 -> 1.4.2 Leon Anavi
2020-07-28 13:32   ` [oe] " Trevor Gamblin
2020-07-24 10:35 ` [meta-python][PATCH 5/7] python3-urllib3: Upgrade 1.25.9 -> 1.25.10 Leon Anavi
2020-07-24 13:27   ` [oe] " Tim Orling
2020-07-24 10:35 ` [meta-python][PATCH 6/7] python3-colorlog: Upgrade 4.1.0 -> 4.2.1 Leon Anavi
2020-07-28 13:33   ` [oe] " Trevor Gamblin
2020-07-24 10:35 ` [meta-python][PATCH 7/7] python3-matplotlib: Upgrade 3.2.2 -> 3.3.0 Leon Anavi
2020-07-24 13:31   ` [oe] " Tim Orling
2020-07-24 16:34     ` Leon Anavi
2020-07-28 13:32 ` [oe] [meta-python][PATCH 1/7] python3-pytest-metadata: Upgrade 1.9.0 -> 1.10.0 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.