From 301a67da6a5e9f046b429ebb6ded263617dfabb2 Mon Sep 17 00:00:00 2001 From: alperak Date: Fri, 26 Jan 2024 08:51:47 +0300 Subject: python3-netaddr: upgrade 0.10.0 -> 0.10.1 Changelog: Fixed: Get rid of some warnings Deprecated: Deprecate the flag shorthands: N, P and Z. Use NOHOST, INET_PTON and ZEROFILL instead. Deprecate importing objects from netaddr subpackages. Only importing things from the top-level netaddr namespace is supported, everything else is considered private. This has already been the case but we can use a reminder. Deprecate permissive-by-default IPv4 parsing in valid_ipv4(). The inet_pton() semantics (with leading zeros always disallowed) will become the default. Use INET_ATON and/or ZEROFILL flags if you need the legacy behavior. Signed-off-by: alperak Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-netaddr_0.10.0.bb | 13 ------------- .../recipes-devtools/python/python3-netaddr_0.10.1.bb | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-netaddr_0.10.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-netaddr_0.10.0.bb b/meta-python/recipes-devtools/python/python3-netaddr_0.10.0.bb deleted file mode 100644 index 15350e9426..0000000000 --- a/meta-python/recipes-devtools/python/python3-netaddr_0.10.0.bb +++ /dev/null @@ -1,13 +0,0 @@ -SUMMARY = "A network address manipulation library for Python." -LICENSE = "BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=e6345d695ffe3776f68a56fe7962db44" - -SRC_URI[sha256sum] = "4c30c54adf4ea4318b3c055ea3d8c7f6554a50aa2cd8aea4605a23caa0b0229e" - -inherit pypi setuptools3 - -RDEPENDS:${PN} += " \ - python3-io \ - python3-pprint \ - python3-xml \ -" diff --git a/meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb b/meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb new file mode 100644 index 0000000000..ce16cc1787 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb @@ -0,0 +1,13 @@ +SUMMARY = "A network address manipulation library for Python." +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=e6345d695ffe3776f68a56fe7962db44" + +SRC_URI[sha256sum] = "f4da4222ca8c3f43c8e18a8263e5426c750a3a837fdfeccf74c68d0408eaa3bf" + +inherit pypi setuptools3 + +RDEPENDS:${PN} += " \ + python3-io \ + python3-pprint \ + python3-xml \ +" -- cgit v1.2.3-54-g00ecf