Date   

[meta-filesystems][PATCH] btrfsmaintenance: add recipe for btrfsmaintenance scripts

Claudius Heine
 

Btrfs requires regular maintenance in order to self-heal. Other
distributions like OpenSUSE, Debian and Fedora use these scripts to
perform those.

Signed-off-by: Claudius Heine <ch@...>
---
.../btrfsmaintenance/btrfsmaintenance_0.5.bb | 62 +++++++++++++++++++
...change-sysconfig-path-to-etc-default.patch | 47 ++++++++++++++
...ective-to-btrfsmaintenance-refresh.s.patch | 33 ++++++++++
3 files changed, 142 insertions(+)
create mode 100644 meta-filesystems/recipes-utils/btrfsmaintenance/btrfs=
maintenance_0.5.bb
create mode 100644 meta-filesystems/recipes-utils/btrfsmaintenance/files=
/0001-change-sysconfig-path-to-etc-default.patch
create mode 100644 meta-filesystems/recipes-utils/btrfsmaintenance/files=
/0002-add-WantedBy-directive-to-btrfsmaintenance-refresh.s.patch

diff --git a/meta-filesystems/recipes-utils/btrfsmaintenance/btrfsmainten=
ance_0.5.bb b/meta-filesystems/recipes-utils/btrfsmaintenance/btrfsmainte=
nance_0.5.bb
new file mode 100644
index 000000000..a4573cf59
--- /dev/null
+++ b/meta-filesystems/recipes-utils/btrfsmaintenance/btrfsmaintenance_0.=
5.bb
@@ -0,0 +1,62 @@
+
+SUMMARY =3D "Services for periodic btrfs maintenance tasks"
+DESCRIPTION =3D "A set of scripts supplementing the btrfs filesystem and=
aims \
+ to automate a few maintenance tasks. This means the scrub, balance, =
trim \
+ or defragmentation."
+HOMEPAGE =3D "https://github.com/kdave/btrfsmaintenance"
+LICENSE =3D "GPL-2.0-only"
+LIC_FILES_CHKSUM =3D "file://COPYING;md5=3D892f569a555ba9c07a568a7c0c4fa=
63a"
+
+SECTION =3D "base"
+
+DEPENDS =3D "btrfs-tools"
+
+SRC_URI =3D "git://github.com/kdave/${BPN};branch=3Dmaster;protocol=3Dht=
tps \
+ file://0001-change-sysconfig-path-to-etc-default.patch \
+ file://0002-add-WantedBy-directive-to-btrfsmaintenance-refresh.s.pat=
ch \
+"
+SRCREV =3D "be42cb6267055d125994abd6927cf3a26deab74c"
+
+UPSTREAM_CHECK_URI =3D "https://github.com/kdave/${BPN}/tags"
+UPSTREAM_CHECK_REGEX =3D "${BPN}/releases/tag/v(?P<pver>\d+(?:\.\d+)*)"
+
+RDEPENDS:${PN} =3D "bash"
+
+S=3D"${WORKDIR}/git"
+
+inherit allarch
+
+do_configure[noexec] =3D "1"
+do_compile[noexec] =3D "1"
+
+do_install() {
+ install -Dm0644 ${S}/btrfsmaintenance-refresh.path \
+ ${D}${systemd_system_unitdir}/btrfsmaintenance-refresh.path
+ install -Dm0644 ${S}/*.timer \
+ ${D}${systemd_system_unitdir}
+ install -Dm0644 ${S}/*.service \
+ ${D}${systemd_system_unitdir}
+
+ install -Dm0644 ${S}/btrfsmaintenance-functions \
+ ${D}${datadir}/${PN}/btrfsmaintenance-functions
+ install -Dm0755 ${S}/*.sh \
+ ${D}${datadir}/${PN}
+
+ install -Dm0644 ${S}/sysconfig.btrfsmaintenance \
+ ${D}${sysconfdir}/default/btrfsmaintenance
+}
+
+inherit systemd
+SYSTEMD_PACKAGES =3D "${PN}"
+SYSTEMD_SERVICE:${PN} =3D " \
+ btrfs-scrub.timer \
+ btrfs-scrub.service \
+ btrfs-trim.timer \
+ btrfs-trim.service \
+ btrfs-balance.timer \
+ btrfs-balance.service \
+ btrfs-defrag.timer \
+ btrfs-defrag.service \
+ btrfsmaintenance-refresh.service \
+ btrfsmaintenance-refresh.path \
+"
diff --git a/meta-filesystems/recipes-utils/btrfsmaintenance/files/0001-c=
hange-sysconfig-path-to-etc-default.patch b/meta-filesystems/recipes-util=
s/btrfsmaintenance/files/0001-change-sysconfig-path-to-etc-default.patch
new file mode 100644
index 000000000..d425206f0
--- /dev/null
+++ b/meta-filesystems/recipes-utils/btrfsmaintenance/files/0001-change-s=
ysconfig-path-to-etc-default.patch
@@ -0,0 +1,47 @@
+From b49dbe17e0d9ae463e5a34e6991aa2d3c70d2fb1 Mon Sep 17 00:00:00 2001
+From: Claudius Heine <ch@...>
+Date: Wed, 11 May 2022 14:33:13 +0200
+Subject: [PATCH] change sysconfig path to /etc/default
+
+OE uses /etc/default for service configuration, not /etc/sysconfig which
+is used by SUSE and RedHat based distributions.
+
+Change the files accordingly
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Claudius Heine <ch@...>
+---
+ btrfsmaintenance-refresh.path | 4 ++--
+ btrfsmaintenance-refresh.service | 2 +-
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/btrfsmaintenance-refresh.path b/btrfsmaintenance-refresh.pa=
th
+index d56ad11..f0b4132 100644
+--- a/btrfsmaintenance-refresh.path
++++ b/btrfsmaintenance-refresh.path
+@@ -1,8 +1,8 @@
+ [Unit]
+-Description=3DWatch /etc/sysconfig/btrfsmaintenance
++Description=3DWatch /etc/default/btrfsmaintenance
+=20
+ [Path]
+-PathChanged=3D/etc/sysconfig/btrfsmaintenance
++PathChanged=3D/etc/default/btrfsmaintenance
+=20
+ [Install]
+ WantedBy=3Dmulti-user.target
+diff --git a/btrfsmaintenance-refresh.service b/btrfsmaintenance-refresh=
.service
+index 4ed1eb4..d6225a6 100644
+--- a/btrfsmaintenance-refresh.service
++++ b/btrfsmaintenance-refresh.service
+@@ -1,5 +1,5 @@
+ [Unit]
+-Description=3DUpdate cron periods from /etc/sysconfig/btrfsmaintenance
++Description=3DUpdate cron periods from /etc/default/btrfsmaintenance
+=20
+ [Service]
+ ExecStart=3D/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.s=
h systemd-timer
+--=20
+2.33.3
+
diff --git a/meta-filesystems/recipes-utils/btrfsmaintenance/files/0002-a=
dd-WantedBy-directive-to-btrfsmaintenance-refresh.s.patch b/meta-filesyst=
ems/recipes-utils/btrfsmaintenance/files/0002-add-WantedBy-directive-to-b=
trfsmaintenance-refresh.s.patch
new file mode 100644
index 000000000..0da7992a0
--- /dev/null
+++ b/meta-filesystems/recipes-utils/btrfsmaintenance/files/0002-add-Want=
edBy-directive-to-btrfsmaintenance-refresh.s.patch
@@ -0,0 +1,33 @@
+From 420ae0f395838b852ae8b8fe5528056c36dc0919 Mon Sep 17 00:00:00 2001
+From: Claudius Heine <ch@...>
+Date: Wed, 11 May 2022 15:14:22 +0200
+Subject: [PATCH] add WantedBy directive to btrfsmaintenance-refresh.serv=
ice
+
+Just trigger the service on the first boot, to configure services to the
+configuration file deployed in the package, afterwards disable the
+service, so that is only triggered when the configuration file has
+changed.
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Claudius Heine <ch@...>
+---
+ btrfsmaintenance-refresh.service | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/btrfsmaintenance-refresh.service b/btrfsmaintenance-refresh=
.service
+index d6225a6..58d0e09 100644
+--- a/btrfsmaintenance-refresh.service
++++ b/btrfsmaintenance-refresh.service
+@@ -3,4 +3,8 @@ Description=3DUpdate cron periods from /etc/default/btrf=
smaintenance
+=20
+ [Service]
+ ExecStart=3D/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.s=
h systemd-timer
++ExecStart=3Dsystemctl disable btrfsmaintenance-refresh.service
+ Type=3Doneshot
++
++[Install]
++WantedBy=3Dmulti-user.target
+--=20
+2.33.3
+
--=20
2.33.3


[meta-python] [PATCH] python3-flask-login: upgrade 0.6.0 -> 0.6.1

xuhuan.fnst@fujitsu.com
 

From: Xu Huan <xuhuan.fnst@...>

Changelog:
==========
Only preserve subdomain or host view args in unauthorized redirect
The new utility function login_remembered returns True if the current login is remembered across sessions.
Fix side effect potentially executing view twice for same request.
Clarify usage of FlaskLoginClient test client in docs.

Signed-off-by: Xu Huan <xuhuan.fnst@...>
---
...ython3-flask-login_0.6.0.bb => python3-flask-login_0.6.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-flask-login_0.6.0.bb => python3-flask-login_0.6.1.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-login_0.6.0.bb b/meta-python/recipes-devtools/python/python3-flask-login_0.6.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-flask-login_0.6.0.bb
rename to meta-python/recipes-devtools/python/python3-flask-login_0.6.1.bb
index dd295cf2d..d19acd9b6 100644
--- a/meta-python/recipes-devtools/python/python3-flask-login_0.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-login_0.6.1.bb
@@ -6,7 +6,7 @@ HOMEPAGE = " https://github.com/maxcountryman/flask-login"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=8aa87a1cd9fa41d969ad32cfdac2c596"

-SRC_URI[sha256sum] = "aa84fcfb4c3cf09ca58c08e816b7bce73f1349ba1cf13d00d8dffc5872d5fcf6"
+SRC_URI[sha256sum] = "1306d474a270a036d6fd14f45640c4d77355e4f1c67ca4331b372d3448997b8c"

PYPI_PACKAGE = "Flask-Login"

--
2.25.1


[meta-python] [PATCH] python3-click: upgrade 8.1.2 -> 8.1.3

xuhuan.fnst@fujitsu.com
 

From: Xu Huan <xuhuan.fnst@...>

Released 2022-04-28
Use verbose form of typing.Callable for @command and @group.
Show error when attempting to create an option with multiple=True, is_flag=True. Use count instead.

Signed-off-by: Xu Huan <xuhuan.fnst@...>
---
.../python/{python3-click_8.1.2.bb => python3-click_8.1.3.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-click_8.1.2.bb => python3-click_8.1.3.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-click_8.1.2.bb b/meta-python/recipes-devtools/python/python3-click_8.1.3.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-click_8.1.2.bb
rename to meta-python/recipes-devtools/python/python3-click_8.1.3.bb
index a623fe104..006742f15 100644
--- a/meta-python/recipes-devtools/python/python3-click_8.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-click_8.1.3.bb
@@ -8,7 +8,7 @@ HOMEPAGE = "http://click.pocoo.org/"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8"

-SRC_URI[sha256sum] = "479707fe14d9ec9a0757618b7a100a0ae4c4e236fac5b7f80ca68028141a1a72"
+SRC_URI[sha256sum] = "7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"

inherit pypi setuptools3 ptest

--
2.25.1


[meta-python] [PATCH] python3-flask: upgrade 2.1.1 -> 2.1.2

xuhuan.fnst@fujitsu.com
 

From: Xu Huan <xuhuan.fnst@...>

Changelog:
==========
Fix type annotation for json.loads, it accepts str or bytes.
The --cert and --key options on flask run can be given in either order.

Signed-off-by: Xu Huan <xuhuan.fnst@...>
---
.../python/{python3-flask_2.1.1.bb => python3-flask_2.1.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-flask_2.1.1.bb => python3-flask_2.1.2.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-flask_2.1.1.bb b/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-flask_2.1.1.bb
rename to meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
index 24a704770..7d290a4fe 100644
--- a/meta-python/recipes-devtools/python/python3-flask_2.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/mitsuhiko/flask/"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"

-SRC_URI[sha256sum] = "a8c9bd3e558ec99646d177a9739c41df1ded0629480b4c8d2975412f3c9519c8"
+SRC_URI[sha256sum] = "315ded2ddf8a6281567edb27393010fe3406188bafbfe65a3339d5787d89e477"

PYPI_PACKAGE = "Flask"

--
2.25.1


[meta-python] [PATCH] python3-google-api-core: upgrade 2.7.1 -> 2.7.3

xuhuan.fnst@fujitsu.com
 

From: Xu Huan <xuhuan.fnst@...>

Changelog:
==========
allow grpc without grpcio-status
remove dependency on pkg_resources
Avoid AttributeError if grpcio-status is not installed

Signed-off-by: Xu Huan <xuhuan.fnst@...>
---
...oogle-api-core_2.7.1.bb => python3-google-api-core_2.7.3.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-google-api-core_2.7.1.bb => python3-google-api-core_2.7.3.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-google-api-core_2.7.1.bb b/meta-python/recipes-devtools/python/python3-google-api-core_2.7.3.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-google-api-core_2.7.1.bb
rename to meta-python/recipes-devtools/python/python3-google-api-core_2.7.3.bb
index 55884e99c..3422dd711 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-core_2.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-core_2.7.3.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"

inherit pypi setuptools3

-SRC_URI[sha256sum] = "b0fa577e512f0c8e063386b974718b8614586a798c5894ed34bedf256d9dae24"
+SRC_URI[sha256sum] = "17957f0704cbe95bd2ce25019efd2046423978594d181d4263e5dcffd2dbbc79"

RDEPENDS:${PN} += "\
${PYTHON_PN}-asyncio \
--
2.25.1


[meta-python] [PATCH] python3-cbor2: upgrade 5.4.2 -> 5.4.3

xuhuan.fnst@fujitsu.com
 

From: Xu Huan <xuhuan.fnst@...>

Signed-off-by: Xu Huan <xuhuan.fnst@...>
---
.../python/{python3-cbor2_5.4.2.bb => python3-cbor2_5.4.3.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-cbor2_5.4.2.bb => python3-cbor2_5.4.3.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.4.3.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb
rename to meta-python/recipes-devtools/python/python3-cbor2_5.4.3.bb
index cafc32ad1..0890b99c0 100644
--- a/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb
+++ b/meta-python/recipes-devtools/python/python3-cbor2_5.4.3.bb
@@ -4,7 +4,7 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"

-SRC_URI[sha256sum] = "e283e70b55a049ff364cc5e648fde587e4d9b0e87e4b2664c69e639135e6b3b8"
+SRC_URI[sha256sum] = "62b863c5ee6ced4032afe948f3c1484f375550995d3b8498145237fe28e546c2"

inherit pypi python_setuptools_build_meta ptest

--
2.25.1


[meta-python] [PATCH] python3-bitarray: upgrade 2.4.1 -> 2.5.0

zhengruoqin
 

2022-05-04 2.5.0:
-------------------
* add calculating of canonical Huffman codes 'util.canonical_huffman()'
and decoding thereof 'util.canonical_decode()', see #173
* allow creating "Huffman codes" from frequency maps with a single symbol
in 'util.huffman_code()' and 'util.canonical_huffman()', see #172
* allow bytes-like argument in '.frombytes()' and '.pack()' - previously,
the arguments were limited to the 'bytes' object, see #174
* allow bytes-like arguments in 'util.deserialize()'
* add official pyodide support
* add [DEFLATE decompression](../examples/puff/) example
* optimize '.bytereverse()'
* optimize 'delslice()' for cases like 'del a[1:17:2]' when 'a' is large
* fix 'examples/huffman/compress.py' to handle files with 0 or 1 characters,
see also #172
* add 'skipIF' decorator for skipping tests
* add test

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
---
.../{python3-bitarray_2.4.1.bb => python3-bitarray_2.5.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-bitarray_2.4.1.bb => python3-bitarray_2.5.0.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb
index fbb89b8dd..bb80c4a04 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
LICENSE = "PSF-2.0"
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"

-SRC_URI[sha256sum] = "faeca03f979e992cc76f7406af7eb9795cb111b8d8969c891a032bd7497c87da"
+SRC_URI[sha256sum] = "5abed04adcd2031f6e714993d95223bf9ae85354c640c270b2ed6f46b83573ba"

inherit setuptools3 pypi

--
2.25.1


[meta-python] [PATCH] python3-autobahn: upgrade 22.3.2 -> 22.4.2

zhengruoqin
 

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
---
.../{python3-autobahn_22.3.2.bb => python3-autobahn_22.4.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-python/recipes-devtools/python/{python3-autobahn_22.3.2.bb => python3-autobahn_22.4.2.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-autobahn_22.3.2.bb b/meta-python/recipes-devtools/python/python3-autobahn_22.4.2.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-autobahn_22.3.2.bb
rename to meta-python/recipes-devtools/python/python3-autobahn_22.4.2.bb
index 78514a412..3dc308385 100644
--- a/meta-python/recipes-devtools/python/python3-autobahn_22.3.2.bb
+++ b/meta-python/recipes-devtools/python/python3-autobahn_22.4.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://crossbar.io/autobahn"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"

-SRC_URI[sha256sum] = "58a887c7a196bb08d8b6624cb3695f493a9e5c9f00fd350d8d6f829b47ff9036"
+SRC_URI[sha256sum] = "57b7acf228d50d83cf327372b889e2a168a869275b26e17917ed0b4cf4d823a6"

inherit pypi setuptools3

--
2.25.1


[meta-python] [PATCH] python3-pika: upgrade 1.2.0 -> 1.2.1

zhengruoqin
 

License-Update: Copyright year updated to 2021

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
---
.../python/{python3-pika_1.2.0.bb => python3-pika_1.2.1.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta-python/recipes-devtools/python/{python3-pika_1.2.0.bb => python3-pika_1.2.1.bb} (73%)

diff --git a/meta-python/recipes-devtools/python/python3-pika_1.2.0.bb b/meta-python/recipes-devtools/python/python3-pika_1.2.1.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-pika_1.2.0.bb
rename to meta-python/recipes-devtools/python/python3-pika_1.2.1.bb
index aa3179f2a..38f84cf1b 100644
--- a/meta-python/recipes-devtools/python/python3-pika_1.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pika_1.2.1.bb
@@ -6,9 +6,9 @@ including RabbitMQ’s extensions. \
SECTION = "devel/python"
HOMEPAGE = "https://pika.readthedocs.io"
LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=278bdfee5b51616941c1f6b2f1cfcb99"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=678ec81495ba50edf81e84e4f1aa69f3"

-SRC_URI[sha256sum] = "f023d6ac581086b124190cb3dc81dd581a149d216fa4540ac34f9be1e3970b89"
+SRC_URI[sha256sum] = "e5fbf3a0a3599f4e114f6e4a7af096f9413a8f24f975c2657ba2fac3c931434f"

inherit pypi setuptools3

--
2.25.1


[meta-python] [PATCH] python3-booleanpy: upgrade 3.8 -> 4.0

zhengruoqin
 

License-Update: remove year from Copyright

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
---
.../{python3-booleanpy_3.8.bb => python3-booleanpy_4.0.bb} | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
rename meta-python/recipes-devtools/python/{python3-booleanpy_3.8.bb => python3-booleanpy_4.0.bb} (55%)

diff --git a/meta-python/recipes-devtools/python/python3-booleanpy_3.8.bb b/meta-python/recipes-devtools/python/python3-booleanpy_4.0.bb
similarity index 55%
rename from meta-python/recipes-devtools/python/python3-booleanpy_3.8.bb
rename to meta-python/recipes-devtools/python/python3-booleanpy_4.0.bb
index a1ce7eafc..41fd3d960 100644
--- a/meta-python/recipes-devtools/python/python3-booleanpy_3.8.bb
+++ b/meta-python/recipes-devtools/python/python3-booleanpy_4.0.bb
@@ -2,10 +2,9 @@ SUMMARY = "Define boolean algebras, create and parse boolean expressions and cre
HOMEPAGE = "https://github.com/bastikr/boolean.py"

LICENSE = "BSD-2-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9b58494d4f385978ca5a7ef4f6abca53"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=d118b5feceee598ebeca76e13395c2bd"

-SRC_URI[md5sum] = "83ccc145ba74a585637124c8bc648333"
-SRC_URI[sha256sum] = "cc24e20f985d60cd4a3a5a1c0956dd12611159d32a75081dabd0c9ab981acaa4"
+SRC_URI[sha256sum] = "17b9a181630e43dde1851d42bef546d616d5d9b4480357514597e78b203d06e4"

PYPI_PACKAGE = "boolean.py"

--
2.25.1


[meta-python] [PATCH] python3-antlr4-runtime: upgrade 4.9.2 -> 4.10

zhengruoqin
 

License-Update: Version updated to 4.10

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
---
...antlr4-runtime_4.9.2.bb => python3-antlr4-runtime_4.10.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta-python/recipes-devtools/python/{python3-antlr4-runtime_4.9.2.bb => python3-antlr4-runtime_4.10.bb} (53%)

diff --git a/meta-python/recipes-devtools/python/python3-antlr4-runtime_4.9.2.bb b/meta-python/recipes-devtools/python/python3-antlr4-runtime_4.10.bb
similarity index 53%
rename from meta-python/recipes-devtools/python/python3-antlr4-runtime_4.9.2.bb
rename to meta-python/recipes-devtools/python/python3-antlr4-runtime_4.10.bb
index 8a19b6c64..01f17207c 100644
--- a/meta-python/recipes-devtools/python/python3-antlr4-runtime_4.9.2.bb
+++ b/meta-python/recipes-devtools/python/python3-antlr4-runtime_4.10.bb
@@ -1,8 +1,8 @@
SUMMARY = "ANTLR runtime for Python"
LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c96f0ee5f5d08fd4387e5f00507bb13e"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=6e514123aedb5d9fb133d1bc6c598d46"

-SRC_URI[sha256sum] = "31f5abdc7faf16a1a6e9bf2eb31565d004359b821b09944436a34361929ae85a"
+SRC_URI[sha256sum] = "061a49bc72ae05a35d9b61c0ba0ac36c0397708819f02fbfb20a80e47d287a1b"

PYPI_PACKAGE = "antlr4-python3-runtime"

--
2.25.1


[meta-oe][PATCH] jq: Fix typo OE_EXTRACONF -> EXTRA_OECONF

J?rg Vehlow <lkml@...>
 

From: Joerg Vehlow <joerg.vehlow@...>

Signed-off-by: Joerg Vehlow <joerg.vehlow@...>
---
meta-oe/recipes-devtools/jq/jq_git.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/jq/jq_git.bb b/meta-oe/recipes-devt=
ools/jq/jq_git.bb
index d0c70da76..8b0218c83 100644
--- a/meta-oe/recipes-devtools/jq/jq_git.bb
+++ b/meta-oe/recipes-devtools/jq/jq_git.bb
@@ -21,7 +21,7 @@ PACKAGECONFIG[docs] =3D "--enable-docs,--disable-docs,r=
uby-native"
PACKAGECONFIG[maintainer-mode] =3D "--enable-maintainer-mode,--disable-m=
aintainer-mode,flex-native bison-native"
PACKAGECONFIG[oniguruma] =3D "--with-oniguruma,--without-oniguruma,onig"
=20
-OE_EXTRACONF +=3D " \
+EXTRA_OECONF +=3D " \
--disable-valgrind \
"
=20
--=20
2.25.1


[meta-python][PATCH 15/16] python3-lru-dict: new package

Bartosz Golaszewski
 

Add a recipe for lru-dict: a fixed size dict like container.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../recipes-devtools/python/python3-lru-dict_1.1.7.bb | 9 +++++++++
2 files changed, 10 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-lru-dict_1.1.7.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index da83aab48..2bf26fc69 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -223,6 +223,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-lockfile \
python3-lorem \
python3-lrparsing \
+ python3-lru-dict \
python3-luma-core \
python3-luma-oled \
python3-lxml \
diff --git a/meta-python/recipes-devtools/python/python3-lru-dict_1.1.7.bb b/meta-python/recipes-devtools/python/python3-lru-dict_1.1.7.bb
new file mode 100644
index 000000000..0a0682e0c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-lru-dict_1.1.7.bb
@@ -0,0 +1,9 @@
+SUMMARY = "A fixed size dict like container which evicts Least Recently Used (LRU) items once size limit is exceeded."
+HOMEPAGE = "https://github.com/amitdev/lru-dict"
+SECTION = "devel/python"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9d10a486ee04034fdef5162fd791f153"
+
+SRC_URI[sha256sum] = "45b81f67d75341d4433abade799a47e9c42a9e22a118531dcb5e549864032d7c"
+
+inherit pypi setuptools3
--
2.34.1


[meta-python][PATCH 16/16] python3-web3: new package

Bartosz Golaszewski
 

Add a recipe for web3: a library for interacting with Ethereum.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../python/python3-web3_5.29.0.bb | 20 +++++++++++++++++++
2 files changed, 21 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-web3_5.29.0.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 2bf26fc69..d08908939 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -443,6 +443,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-visitor \
python3-waitress \
python3-watchdog \
+ python3-web3 \
python3-webcolors \
python3-webencodings \
python3-websocket-client \
diff --git a/meta-python/recipes-devtools/python/python3-web3_5.29.0.bb b/meta-python/recipes-devtools/python/python3-web3_5.29.0.bb
new file mode 100644
index 000000000..660d4f6f0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-web3_5.29.0.bb
@@ -0,0 +1,20 @@
+SUMMARY = "A Python library for interacting with Ethereum."
+HOMEPAGE = "https://github.com/ethereum/web3.py"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dc2732bdc5e50382737979791cbb3b7"
+
+SRC_URI[sha256sum] = "a78acc0f0150013755398ae185c8c7063d9db0777aa09733de22242a746bd30c"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+ python3-aiohttp \
+ python3-distutils \
+ python3-eth-account \
+ python3-idna \
+ python3-lru-dict \
+ python3-requests \
+ python3-setuptools \
+ python3-websockets \
+"
--
2.34.1


[meta-python][PATCH 14/16] python3-eth-account: new package

Bartosz Golaszewski
 

Add a recipe for python3-eth-account: a tool for signing Ethereum
transactions and messages with local private keys.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../python/python3-eth-account_0.6.1.bb | 18 ++++++++++++++++++
2 files changed, 19 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index db3f8516a..da83aab48 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -111,6 +111,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-engineio \
python3-et-xmlfile \
python3-eth-abi \
+ python3-eth-account \
python3-eth-hash \
python3-eth-keyfile \
python3-eth-keys \
diff --git a/meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb b/meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb
new file mode 100644
index 000000000..9c87d3f5d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb
@@ -0,0 +1,18 @@
+SUMMARY = "Assign Ethereum transactions and messages with local private keys."
+HOMEPAGE = "https://github.com/ethereum/eth-account"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
+
+SRC_URI[sha256sum] = "54b0b7d661e73f4cd12d508c9baa5c9a6e8c194aa7bafc39277cd673683ae50e"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+ python3-bitarray \
+ python3-cytoolz \
+ python3-eth-abi \
+ python3-eth-keyfile \
+ python3-eth-rlp \
+ python3-hexbytes \
+"
--
2.34.1


[meta-python][PATCH 13/16] python3-eth-abi: new package

Bartosz Golaszewski
 

Add a recipe for eth-abi: utilities for working with Ethereum ABI definitions.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../python/python3-eth-abi_3.0.0.bb | 18 ++++++++++++++++++
2 files changed, 19 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-eth-abi_3.0.0.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 41e30fad0..db3f8516a 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -110,6 +110,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-email-validator \
python3-engineio \
python3-et-xmlfile \
+ python3-eth-abi \
python3-eth-hash \
python3-eth-keyfile \
python3-eth-keys \
diff --git a/meta-python/recipes-devtools/python/python3-eth-abi_3.0.0.bb b/meta-python/recipes-devtools/python/python3-eth-abi_3.0.0.bb
new file mode 100644
index 000000000..e1f220af9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-eth-abi_3.0.0.bb
@@ -0,0 +1,18 @@
+SUMMARY = "Python utilities for working with Ethereum ABI definitions, especially encoding and decoding."
+HOMEPAGE = "https://github.com/ethereum/eth-abi"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=bf9691ead96f1163622689e47ce3f366"
+
+SRC_URI[sha256sum] = "31578b179cf9430c21ac32a4e5f401c14b6e2cc1fd64ca3587cd354068217804"
+
+PYPI_PACKAGE = "eth_abi"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+ python3-eth-typing \
+ python3-eth-utils \
+ python3-parsimonious \
+ python3-setuptools \
+"
--
2.34.1


[meta-python][PATCH 12/16] python3-parsimonious: new package

Bartosz Golaszewski
 

Add a recipe for parsimonious: an arbitrary-lookahead parser written in
pure Python.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../python/python3-parsimonious_0.9.0.bb | 11 +++++++++++
2 files changed, 12 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-parsimonious_0.9.0.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 41a98ba05..41e30fad0 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -261,6 +261,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-paramiko \
python3-parse \
python3-parse-type \
+ python3-parsimonious \
python3-parso \
python3-passlib \
python3-pastedeploy \
diff --git a/meta-python/recipes-devtools/python/python3-parsimonious_0.9.0.bb b/meta-python/recipes-devtools/python/python3-parsimonious_0.9.0.bb
new file mode 100644
index 000000000..5a604fa41
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-parsimonious_0.9.0.bb
@@ -0,0 +1,11 @@
+SUMMARY = "Parsimonious aims to be the fastest arbitrary-lookahead parser written in pure Python."
+HOMEPAGE = "https://github.com/erikrose/parsimonious"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
+
+SRC_URI[sha256sum] = "b2ad1ae63a2f65bd78f5e0a8ac510a98f3607a43f1db2a8d46636a5d9e4a30c1"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-regex"
--
2.34.1


[meta-python][PATCH 10/16] python3-rlp: new package

Bartosz Golaszewski
 

Add a recipe for rlp: a Python implementation of Recursive Length
Prefix encoding (RLP).

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
...-setup-don-t-use-setuptools-markdown.patch | 35 +++++++++++++++++++
.../python/python3-rlp_3.0.0.bb | 14 ++++++++
3 files changed, 50 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-rlp/0001-setup-don-t-use-setuptools-markdown.patch
create mode 100644 meta-python/recipes-devtools/python/python3-rlp_3.0.0.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 0a96e4005..d7d119d18 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -372,6 +372,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-rfc3339-validator \
python3-rfc3986-validator \
python3-rfc3987 \
+ python3-rlp \
python3-robotframework \
python3-robotframework-seriallibrary \
python3-rsa \
diff --git a/meta-python/recipes-devtools/python/python3-rlp/0001-setup-don-t-use-setuptools-markdown.patch b/meta-python/recipes-devtools/python/python3-rlp/0001-setup-don-t-use-setuptools-markdown.patch
new file mode 100644
index 000000000..643d29639
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-rlp/0001-setup-don-t-use-setuptools-markdown.patch
@@ -0,0 +1,35 @@
+From 5a2db801c6520be296cee9cba0e0e4ffac68430c Mon Sep 17 00:00:00 2001
+From: Bartosz Golaszewski <brgl@...>
+Date: Wed, 11 May 2022 15:11:19 +0200
+Subject: [PATCH] setup: don't use setuptools-markdown
+
+This project is deprecated and irrelevant for the functionality of
+pyrlp. We don't support it in meta-python so just drop it from the
+dependencies.
+
+Signed-off-by: Bartosz Golaszewski <brgl@...>
+---
+ setup.py | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 1055fb1..55fca24 100755
+--- a/setup.py
++++ b/setup.py
+@@ -46,13 +46,11 @@ setup(
+ # *IMPORTANT*: Don't manually change the version here. See README for more.
+ version='3.0.0',
+ description="A package for Recursive Length Prefix encoding and decoding",
+- long_description_markdown_filename='README.md',
+ author="jnnk",
+ author_email='jnnknnj@...',
+ url='https://github.com/ethereum/pyrlp',
+ packages=find_packages(exclude=["tests", "tests.*"]),
+ include_package_data=True,
+- setup_requires=['setuptools-markdown'],
+ install_requires=[
+ "eth-utils>=2.0.0,<3",
+ ],
+--
+2.34.1
+
diff --git a/meta-python/recipes-devtools/python/python3-rlp_3.0.0.bb b/meta-python/recipes-devtools/python/python3-rlp_3.0.0.bb
new file mode 100644
index 000000000..e747ae33b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-rlp_3.0.0.bb
@@ -0,0 +1,14 @@
+SUMMARY = "A Python implementation of Recursive Length Prefix encoding (RLP)."
+HOMEPAGE = "https://github.com/ethereum/pyrlp"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=00854fa80a84236706b11f47f23e61e7"
+
+SRC_URI[sha256sum] = "63b0465d2948cd9f01de449d7adfb92d207c1aef3982f20310f8009be4a507e8"
+SRC_URI += "file://0001-setup-don-t-use-setuptools-markdown.patch"
+
+inherit pypi setuptools3
+
+DEPENDS += "python3-pip-native"
+
+RDEPENDS:${PN} += "python3-eth-utils"
--
2.34.1


[meta-python][PATCH 11/16] python3-eth-rlp: new package

Bartosz Golaszewski
 

Add a recipe for eth-rlp: RLP definitions for common Ethereum objects.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../python/python3-eth-rlp_0.3.0.bb | 15 +++++++++++++++
2 files changed, 16 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-eth-rlp_0.3.0.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index d7d119d18..41a98ba05 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -113,6 +113,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
python3-eth-hash \
python3-eth-keyfile \
python3-eth-keys \
+ python3-eth-rlp \
python3-eth-typing \
python3-eth-utils \
python3-evdev \
diff --git a/meta-python/recipes-devtools/python/python3-eth-rlp_0.3.0.bb b/meta-python/recipes-devtools/python/python3-eth-rlp_0.3.0.bb
new file mode 100644
index 000000000..d19a65755
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-eth-rlp_0.3.0.bb
@@ -0,0 +1,15 @@
+SUMMARY = "RLP definitions for common Ethereum objects in Python"
+HOMEPAGE = "https://github.com/ethereum/eth-rlp"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
+
+SRC_URI[sha256sum] = "f3263b548df718855d9a8dbd754473f383c0efc82914b0b849572ce3e06e71a6"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} = " \
+ python3-eth-utils \
+ python3-hexbytes \
+ python3-rlp \
+"
--
2.34.1


[meta-python][PATCH 09/16] python3-hexbytes: new package

Bartosz Golaszewski
 

Add a recipe for hexbytes: a Python bytes subclass that decodes hex,
with a readable console output.

Signed-off-by: Bartosz Golaszewski <brgl@...>
---
.../packagegroups/packagegroup-meta-python.bb | 1 +
.../recipes-devtools/python/python3-hexbytes_0.2.2.bb | 9 +++++++++
2 files changed, 10 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 5e41d92c1..0a96e4005 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -474,6 +474,7 @@ RDEPENDS:packagegroup-meta-python3-ptest = "\
python3-dominate-ptest \
python3-geojson-ptest \
python3-gunicorn-ptest \
+ python3-hexbytes \
python3-html2text-ptest \
python3-inflection-ptest \
python3-intervals-ptest \
diff --git a/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb
new file mode 100644
index 000000000..89792d980
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb
@@ -0,0 +1,9 @@
+SUMMARY = "Python bytes subclass that decodes hex, with a readable console output."
+HOMEPAGE = "https://github.com/ethereum/hexbytes"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
+
+SRC_URI[sha256sum] = "a5881304d186e87578fb263a85317c808cf130e1d4b3d37d30142ab0f7898d03"
+
+inherit pypi setuptools3
--
2.34.1