>>> py3-gitdb2: Building community/py3-gitdb2 4.0.11-r0 (using abuild 3.12.0-r0) started Mon, 04 Dec 2023 08:50:04 +0000 >>> py3-gitdb2: Checking sanity of /home/buildozer/aports/community/py3-gitdb2/APKBUILD... >>> WARNING: py3-gitdb2: No maintainer >>> py3-gitdb2: Analyzing dependencies... >>> py3-gitdb2: Installing for build: build-base python3 py3-smmap2 py3-gpep517 py3-setuptools py3-wheel (1/27) Installing libbz2 (1.0.8-r6) (2/27) Installing libffi (3.4.4-r3) (3/27) Installing gdbm (1.23-r1) (4/27) Installing xz-libs (5.4.5-r0) (5/27) Installing mpdecimal (2.5.1-r2) (6/27) Installing libpanelw (6.4_p20231125-r0) (7/27) Installing readline (8.2.1-r2) (8/27) Installing sqlite-libs (3.44.2-r0) (9/27) Installing python3 (3.11.6-r1) (10/27) Installing python3-pycache-pyc0 (3.11.6-r1) (11/27) Installing pyc (3.11.6-r1) (12/27) Installing python3-pyc (3.11.6-r1) (13/27) Installing py3-smmap2 (5.0.1-r0) (14/27) Installing py3-smmap2-pyc (5.0.1-r0) (15/27) Installing py3-installer (0.7.0-r1) (16/27) Installing py3-installer-pyc (0.7.0-r1) (17/27) Installing py3-gpep517 (15-r1) (18/27) Installing py3-gpep517-pyc (15-r1) (19/27) Installing py3-parsing (3.1.1-r0) (20/27) Installing py3-parsing-pyc (3.1.1-r0) (21/27) Installing py3-packaging (23.2-r0) (22/27) Installing py3-packaging-pyc (23.2-r0) (23/27) Installing py3-setuptools (68.2.2-r0) (24/27) Installing py3-setuptools-pyc (68.2.2-r0) (25/27) Installing py3-wheel (0.42.0-r0) (26/27) Installing py3-wheel-pyc (0.42.0-r0) (27/27) Installing .makedepends-py3-gitdb2 (20231204.085009) Executing busybox-1.36.1-r15.trigger OK: 278 MiB in 129 packages >>> py3-gitdb2: Cleaning up srcdir >>> py3-gitdb2: Cleaning up pkgdir >>> py3-gitdb2: Cleaning up tmpdir >>> py3-gitdb2: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-gitdb2-4.0.11.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 396k 100 396k 0 0 1138k 0 --:--:-- --:--:-- --:--:-- 1192k >>> py3-gitdb2: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-gitdb2-4.0.11.tar.gz >>> py3-gitdb2: Checking sha512sums... py3-gitdb2-4.0.11.tar.gz: OK >>> py3-gitdb2: Unpacking /var/cache/distfiles/py3-gitdb2-4.0.11.tar.gz... [master (root-commit) 1cbc1e6] tests 68 files changed, 7335 insertions(+) create mode 100644 .coveragerc create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/pythonpackage.yml create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 AUTHORS create mode 100644 LICENSE create mode 100644 MANIFEST.in create mode 100644 Makefile create mode 100644 README.rst create mode 100644 doc/.gitignore create mode 100644 doc/Makefile create mode 100644 doc/source/algorithm.rst create mode 100644 doc/source/api.rst create mode 100644 doc/source/changes.rst create mode 100644 doc/source/conf.py create mode 100644 doc/source/index.rst create mode 100644 doc/source/intro.rst create mode 100644 doc/source/tutorial.rst create mode 100644 gitdb.pro create mode 100644 gitdb.pro.user create mode 100644 gitdb/__init__.py create mode 100644 gitdb/base.py create mode 100644 gitdb/const.py create mode 100644 gitdb/db/__init__.py create mode 100644 gitdb/db/base.py create mode 100644 gitdb/db/git.py create mode 100644 gitdb/db/loose.py create mode 100644 gitdb/db/mem.py create mode 100644 gitdb/db/pack.py create mode 100644 gitdb/db/ref.py create mode 100644 gitdb/exc.py create mode 100644 gitdb/fun.py create mode 100644 gitdb/pack.py create mode 100644 gitdb/stream.py create mode 100644 gitdb/test/__init__.py create mode 100644 gitdb/test/db/__init__.py create mode 100644 gitdb/test/db/lib.py create mode 100644 gitdb/test/db/test_git.py create mode 100644 gitdb/test/db/test_loose.py create mode 100644 gitdb/test/db/test_mem.py create mode 100644 gitdb/test/db/test_pack.py create mode 100644 gitdb/test/db/test_ref.py create mode 100644 gitdb/test/fixtures/objects/7b/b839852ed5e3a069966281bb08d50012fb309b create mode 100644 gitdb/test/fixtures/objects/88/8401851f15db0eed60eb1bc29dec5ddcace911 create mode 100644 gitdb/test/fixtures/packs/pack-11fdfa9e156ab73caae3b6da867192221f2089c2.idx create mode 100644 gitdb/test/fixtures/packs/pack-11fdfa9e156ab73caae3b6da867192221f2089c2.pack create mode 100644 gitdb/test/fixtures/packs/pack-a2bf8e71d8c18879e499335762dd95119d93d9f1.idx create mode 100644 gitdb/test/fixtures/packs/pack-a2bf8e71d8c18879e499335762dd95119d93d9f1.pack create mode 100644 gitdb/test/fixtures/packs/pack-c0438c19fb16422b6bbcce24387b3264416d485b.idx create mode 100644 gitdb/test/fixtures/packs/pack-c0438c19fb16422b6bbcce24387b3264416d485b.pack create mode 100644 gitdb/test/lib.py create mode 100644 gitdb/test/performance/__init__.py create mode 100644 gitdb/test/performance/lib.py create mode 100644 gitdb/test/performance/test_pack.py create mode 100644 gitdb/test/performance/test_pack_streaming.py create mode 100644 gitdb/test/performance/test_stream.py create mode 100644 gitdb/test/test_base.py create mode 100644 gitdb/test/test_example.py create mode 100644 gitdb/test/test_pack.py create mode 100644 gitdb/test/test_stream.py create mode 100644 gitdb/test/test_util.py create mode 100644 gitdb/typ.py create mode 100644 gitdb/util.py create mode 100644 gitdb/utils/__init__.py create mode 100644 gitdb/utils/encoding.py create mode 100644 requirements.txt create mode 100755 setup.py 2023-12-04 08:50:13,542 gpep517 INFO Building wheel via backend setuptools.build_meta:__legacy__ 2023-12-04 08:50:13,720 root INFO running bdist_wheel 2023-12-04 08:50:13,795 root INFO running build 2023-12-04 08:50:13,795 root INFO running build_py 2023-12-04 08:50:13,807 root INFO creating build 2023-12-04 08:50:13,807 root INFO creating build/lib 2023-12-04 08:50:13,808 root INFO creating build/lib/gitdb 2023-12-04 08:50:13,808 root INFO copying gitdb/pack.py -> build/lib/gitdb 2023-12-04 08:50:13,810 root INFO copying gitdb/typ.py -> build/lib/gitdb 2023-12-04 08:50:13,811 root INFO copying gitdb/stream.py -> build/lib/gitdb 2023-12-04 08:50:13,812 root INFO copying gitdb/__init__.py -> build/lib/gitdb 2023-12-04 08:50:13,813 root INFO copying gitdb/base.py -> build/lib/gitdb 2023-12-04 08:50:13,814 root INFO copying gitdb/util.py -> build/lib/gitdb 2023-12-04 08:50:13,815 root INFO copying gitdb/const.py -> build/lib/gitdb 2023-12-04 08:50:13,815 root INFO copying gitdb/exc.py -> build/lib/gitdb 2023-12-04 08:50:13,816 root INFO copying gitdb/fun.py -> build/lib/gitdb 2023-12-04 08:50:13,818 root INFO creating build/lib/gitdb/db 2023-12-04 08:50:13,818 root INFO copying gitdb/db/pack.py -> build/lib/gitdb/db 2023-12-04 08:50:13,819 root INFO copying gitdb/db/__init__.py -> build/lib/gitdb/db 2023-12-04 08:50:13,820 root INFO copying gitdb/db/base.py -> build/lib/gitdb/db 2023-12-04 08:50:13,821 root INFO copying gitdb/db/git.py -> build/lib/gitdb/db 2023-12-04 08:50:13,822 root INFO copying gitdb/db/loose.py -> build/lib/gitdb/db 2023-12-04 08:50:13,822 root INFO copying gitdb/db/ref.py -> build/lib/gitdb/db 2023-12-04 08:50:13,823 root INFO copying gitdb/db/mem.py -> build/lib/gitdb/db 2023-12-04 08:50:13,824 root INFO creating build/lib/gitdb/utils 2023-12-04 08:50:13,825 root INFO copying gitdb/utils/__init__.py -> build/lib/gitdb/utils 2023-12-04 08:50:13,826 root INFO copying gitdb/utils/encoding.py -> build/lib/gitdb/utils 2023-12-04 08:50:13,827 root INFO creating build/lib/gitdb/test 2023-12-04 08:50:13,828 root INFO copying gitdb/test/__init__.py -> build/lib/gitdb/test 2023-12-04 08:50:13,828 root INFO copying gitdb/test/test_util.py -> build/lib/gitdb/test 2023-12-04 08:50:13,829 root INFO copying gitdb/test/lib.py -> build/lib/gitdb/test 2023-12-04 08:50:13,830 root INFO copying gitdb/test/test_stream.py -> build/lib/gitdb/test 2023-12-04 08:50:13,831 root INFO copying gitdb/test/test_example.py -> build/lib/gitdb/test 2023-12-04 08:50:13,831 root INFO copying gitdb/test/test_pack.py -> build/lib/gitdb/test 2023-12-04 08:50:13,832 root INFO copying gitdb/test/test_base.py -> build/lib/gitdb/test 2023-12-04 08:50:13,859 wheel INFO installing to build/bdist.linux-riscv64/wheel 2023-12-04 08:50:13,859 root INFO running install 2023-12-04 08:50:13,922 root INFO running install_lib 2023-12-04 08:50:13,931 root INFO creating build/bdist.linux-riscv64 2023-12-04 08:50:13,931 root INFO creating build/bdist.linux-riscv64/wheel 2023-12-04 08:50:13,932 root INFO creating build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,932 root INFO copying build/lib/gitdb/pack.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,933 root INFO copying build/lib/gitdb/typ.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,934 root INFO copying build/lib/gitdb/stream.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,935 root INFO copying build/lib/gitdb/__init__.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,936 root INFO copying build/lib/gitdb/base.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,936 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,937 root INFO copying build/lib/gitdb/db/pack.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,938 root INFO copying build/lib/gitdb/db/__init__.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,938 root INFO copying build/lib/gitdb/db/base.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,939 root INFO copying build/lib/gitdb/db/git.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,940 root INFO copying build/lib/gitdb/db/loose.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,941 root INFO copying build/lib/gitdb/db/ref.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,941 root INFO copying build/lib/gitdb/db/mem.py -> build/bdist.linux-riscv64/wheel/gitdb/db 2023-12-04 08:50:13,942 root INFO copying build/lib/gitdb/util.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,943 root INFO copying build/lib/gitdb/const.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,944 root INFO copying build/lib/gitdb/exc.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,944 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,945 root INFO copying build/lib/gitdb/test/__init__.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,946 root INFO copying build/lib/gitdb/test/test_util.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,946 root INFO copying build/lib/gitdb/test/lib.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,947 root INFO copying build/lib/gitdb/test/test_stream.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,948 root INFO copying build/lib/gitdb/test/test_example.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,949 root INFO copying build/lib/gitdb/test/test_pack.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,949 root INFO copying build/lib/gitdb/test/test_base.py -> build/bdist.linux-riscv64/wheel/gitdb/test 2023-12-04 08:50:13,950 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/utils 2023-12-04 08:50:13,951 root INFO copying build/lib/gitdb/utils/__init__.py -> build/bdist.linux-riscv64/wheel/gitdb/utils 2023-12-04 08:50:13,951 root INFO copying build/lib/gitdb/utils/encoding.py -> build/bdist.linux-riscv64/wheel/gitdb/utils 2023-12-04 08:50:13,952 root INFO copying build/lib/gitdb/fun.py -> build/bdist.linux-riscv64/wheel/gitdb 2023-12-04 08:50:13,953 root INFO running install_egg_info 2023-12-04 08:50:13,969 root INFO running egg_info 2023-12-04 08:50:13,970 root INFO creating gitdb.egg-info 2023-12-04 08:50:13,976 root INFO writing gitdb.egg-info/PKG-INFO 2023-12-04 08:50:13,979 root INFO writing dependency_links to gitdb.egg-info/dependency_links.txt 2023-12-04 08:50:13,980 root INFO writing requirements to gitdb.egg-info/requires.txt 2023-12-04 08:50:13,981 root INFO writing top-level names to gitdb.egg-info/top_level.txt 2023-12-04 08:50:13,982 root INFO writing manifest file 'gitdb.egg-info/SOURCES.txt' 2023-12-04 08:50:13,993 root INFO reading manifest file 'gitdb.egg-info/SOURCES.txt' 2023-12-04 08:50:13,995 root INFO reading manifest template 'MANIFEST.in' 2023-12-04 08:50:13,996 root WARNING warning: no files found matching 'VERSION' 2023-12-04 08:50:13,996 root WARNING warning: no files found matching 'CHANGES' 2023-12-04 08:50:13,997 root WARNING warning: no files found matching 'README' 2023-12-04 08:50:13,998 root WARNING warning: no files found matching 'gitdb/_fun.c' 2023-12-04 08:50:13,998 root WARNING warning: no files found matching 'gitdb/_delta_apply.c' 2023-12-04 08:50:13,998 root WARNING warning: no files found matching 'gitdb/_delta_apply.h' 2023-12-04 08:50:14,002 root WARNING warning: no previously-included files matching '.git*' found anywhere in distribution 2023-12-04 08:50:14,004 root WARNING warning: no previously-included files matching '*.pyc' found anywhere in distribution 2023-12-04 08:50:14,005 root WARNING warning: no previously-included files matching '*.so' found anywhere in distribution 2023-12-04 08:50:14,006 root WARNING warning: no previously-included files matching '*.dll' found anywhere in distribution 2023-12-04 08:50:14,007 root WARNING warning: no previously-included files matching '*.o' found anywhere in distribution 2023-12-04 08:50:14,008 root INFO adding license file 'LICENSE' 2023-12-04 08:50:14,008 root INFO adding license file 'AUTHORS' 2023-12-04 08:50:14,014 root INFO writing manifest file 'gitdb.egg-info/SOURCES.txt' 2023-12-04 08:50:14,014 root INFO Copying gitdb.egg-info to build/bdist.linux-riscv64/wheel/gitdb-4.0.11-py3.11.egg-info 2023-12-04 08:50:14,019 root INFO running install_scripts 2023-12-04 08:50:14,029 wheel INFO creating build/bdist.linux-riscv64/wheel/gitdb-4.0.11.dist-info/WHEEL 2023-12-04 08:50:14,031 wheel INFO creating '/home/buildozer/aports/community/py3-gitdb2/src/gitdb-4.0.11/.dist/.tmp-e5xk1bo4/gitdb-4.0.11-py3-none-any.whl' and adding 'build/bdist.linux-riscv64/wheel' to it 2023-12-04 08:50:14,034 wheel INFO adding 'gitdb/__init__.py' 2023-12-04 08:50:14,038 wheel INFO adding 'gitdb/base.py' 2023-12-04 08:50:14,039 wheel INFO adding 'gitdb/const.py' 2023-12-04 08:50:14,040 wheel INFO adding 'gitdb/exc.py' 2023-12-04 08:50:14,041 wheel INFO adding 'gitdb/fun.py' 2023-12-04 08:50:14,042 wheel INFO adding 'gitdb/pack.py' 2023-12-04 08:50:14,044 wheel INFO adding 'gitdb/stream.py' 2023-12-04 08:50:14,046 wheel INFO adding 'gitdb/typ.py' 2023-12-04 08:50:14,047 wheel INFO adding 'gitdb/util.py' 2023-12-04 08:50:14,048 wheel INFO adding 'gitdb/db/__init__.py' 2023-12-04 08:50:14,049 wheel INFO adding 'gitdb/db/base.py' 2023-12-04 08:50:14,050 wheel INFO adding 'gitdb/db/git.py' 2023-12-04 08:50:14,051 wheel INFO adding 'gitdb/db/loose.py' 2023-12-04 08:50:14,052 wheel INFO adding 'gitdb/db/mem.py' 2023-12-04 08:50:14,053 wheel INFO adding 'gitdb/db/pack.py' 2023-12-04 08:50:14,054 wheel INFO adding 'gitdb/db/ref.py' 2023-12-04 08:50:14,055 wheel INFO adding 'gitdb/test/__init__.py' 2023-12-04 08:50:14,056 wheel INFO adding 'gitdb/test/lib.py' 2023-12-04 08:50:14,057 wheel INFO adding 'gitdb/test/test_base.py' 2023-12-04 08:50:14,058 wheel INFO adding 'gitdb/test/test_example.py' 2023-12-04 08:50:14,059 wheel INFO adding 'gitdb/test/test_pack.py' 2023-12-04 08:50:14,060 wheel INFO adding 'gitdb/test/test_stream.py' 2023-12-04 08:50:14,061 wheel INFO adding 'gitdb/test/test_util.py' 2023-12-04 08:50:14,062 wheel INFO adding 'gitdb/utils/__init__.py' 2023-12-04 08:50:14,063 wheel INFO adding 'gitdb/utils/encoding.py' 2023-12-04 08:50:14,064 wheel INFO adding 'gitdb-4.0.11.dist-info/AUTHORS' 2023-12-04 08:50:14,065 wheel INFO adding 'gitdb-4.0.11.dist-info/LICENSE' 2023-12-04 08:50:14,066 wheel INFO adding 'gitdb-4.0.11.dist-info/METADATA' 2023-12-04 08:50:14,066 wheel INFO adding 'gitdb-4.0.11.dist-info/WHEEL' 2023-12-04 08:50:14,067 wheel INFO adding 'gitdb-4.0.11.dist-info/top_level.txt' 2023-12-04 08:50:14,069 wheel INFO adding 'gitdb-4.0.11.dist-info/RECORD' 2023-12-04 08:50:14,071 wheel INFO removing build/bdist.linux-riscv64/wheel 2023-12-04 08:50:14,074 gpep517 INFO The backend produced .dist/gitdb-4.0.11-py3-none-any.whl gitdb-4.0.11-py3-none-any.whl >>> py3-gitdb2: Entering fakeroot... >>> py3-gitdb2-pyc*: Running split function pyc... '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2/usr/lib/python3.11/site-packages/gitdb/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.11/site-packages/gitdb/__pycache__' '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2/usr/lib/python3.11/site-packages/gitdb/db/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.11/site-packages/gitdb/db/__pycache__' '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2/usr/lib/python3.11/site-packages/gitdb/test/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.11/site-packages/gitdb/test/__pycache__' '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2/usr/lib/python3.11/site-packages/gitdb/utils/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.11/site-packages/gitdb/utils/__pycache__' >>> py3-gitdb2-pyc*: Preparing subpackage py3-gitdb2-pyc... >>> py3-gitdb2-pyc*: Running postcheck for py3-gitdb2-pyc >>> py3-gitdb2*: Running postcheck for py3-gitdb2 >>> py3-gitdb2*: Preparing package py3-gitdb2... >>> py3-gitdb2-pyc*: Tracing dependencies... python3 py3-smmap2 python3~3.11 >>> py3-gitdb2-pyc*: Package size: 332.0 KB >>> py3-gitdb2-pyc*: Compressing data... >>> py3-gitdb2-pyc*: Create checksum... >>> py3-gitdb2-pyc*: Create py3-gitdb2-pyc-4.0.11-r0.apk >>> py3-gitdb2*: Tracing dependencies... python3 py3-smmap2 python3~3.11 >>> py3-gitdb2*: Package size: 288.0 KB >>> py3-gitdb2*: Compressing data... >>> py3-gitdb2*: Create checksum... >>> py3-gitdb2*: Create py3-gitdb2-4.0.11-r0.apk >>> py3-gitdb2: Build complete at Mon, 04 Dec 2023 08:50:18 +0000 elapsed time 0h 0m 14s >>> py3-gitdb2: Cleaning up srcdir >>> py3-gitdb2: Cleaning up pkgdir >>> py3-gitdb2: Uninstalling dependencies... (1/27) Purging .makedepends-py3-gitdb2 (20231204.085009) (2/27) Purging py3-smmap2-pyc (5.0.1-r0) (3/27) Purging py3-smmap2 (5.0.1-r0) (4/27) Purging py3-gpep517-pyc (15-r1) (5/27) Purging py3-gpep517 (15-r1) (6/27) Purging py3-installer-pyc (0.7.0-r1) (7/27) Purging py3-installer (0.7.0-r1) (8/27) Purging py3-setuptools-pyc (68.2.2-r0) (9/27) Purging py3-setuptools (68.2.2-r0) (10/27) Purging py3-wheel-pyc (0.42.0-r0) (11/27) Purging py3-wheel (0.42.0-r0) (12/27) Purging py3-packaging-pyc (23.2-r0) (13/27) Purging py3-packaging (23.2-r0) (14/27) Purging py3-parsing-pyc (3.1.1-r0) (15/27) Purging py3-parsing (3.1.1-r0) (16/27) Purging python3-pyc (3.11.6-r1) (17/27) Purging python3-pycache-pyc0 (3.11.6-r1) (18/27) Purging pyc (3.11.6-r1) (19/27) Purging python3 (3.11.6-r1) (20/27) Purging gdbm (1.23-r1) (21/27) Purging libbz2 (1.0.8-r6) (22/27) Purging libffi (3.4.4-r3) (23/27) Purging libpanelw (6.4_p20231125-r0) (24/27) Purging mpdecimal (2.5.1-r2) (25/27) Purging readline (8.2.1-r2) (26/27) Purging sqlite-libs (3.44.2-r0) (27/27) Purging xz-libs (5.4.5-r0) Executing busybox-1.36.1-r15.trigger OK: 227 MiB in 102 packages >>> py3-gitdb2: Updating the community/riscv64 repository index... >>> py3-gitdb2: Signing the index...