summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb
diff options
context:
space:
mode:
authoralperak <alperyasinak1@gmail.com>2024-01-26 08:51:47 +0300
committerKhem Raj <raj.khem@gmail.com>2024-01-27 09:48:32 -0800
commit301a67da6a5e9f046b429ebb6ded263617dfabb2 (patch)
treee4e86c06cde362c933840bce65e49a593a8c29cb /meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb
parent542c2a23d6ef3cfbff9031383686c788702eafac (diff)
downloadmeta-openembedded-301a67da6a5e9f046b429ebb6ded263617dfabb2.tar.gz
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 <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-netaddr_0.10.1.bb13
1 files changed, 13 insertions, 0 deletions
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 @@
1SUMMARY = "A network address manipulation library for Python."
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=e6345d695ffe3776f68a56fe7962db44"
4
5SRC_URI[sha256sum] = "f4da4222ca8c3f43c8e18a8263e5426c750a3a837fdfeccf74c68d0408eaa3bf"
6
7inherit pypi setuptools3
8
9RDEPENDS:${PN} += " \
10 python3-io \
11 python3-pprint \
12 python3-xml \
13"