>>> py3-gitdb2: Building community/py3-gitdb2 4.0.12-r1 (using abuild 3.17.0_rc1-r2) started Sun, 26 Apr 2026 03:51:12 +0000 >>> py3-gitdb2: Validating /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 py3-pytest ( 1/37) Installing libbz2 (1.0.8-r6) ( 2/37) Installing libffi (3.5.2-r1) ( 3/37) Installing gdbm (1.26-r0) ( 4/37) Installing xz-libs (5.8.3-r0) ( 5/37) Installing mpdecimal (4.0.1-r0) ( 6/37) Installing libpanelw (6.6_p20260404-r0) ( 7/37) Installing readline (8.3.3-r1) ( 8/37) Installing sqlite-libs (3.53.0-r0) ( 9/37) Installing python3 (3.14.3-r0) (10/37) Installing python3-pycache-pyc0 (3.14.3-r0) (11/37) Installing pyc (3.14.3-r0) (12/37) Installing python3-pyc (3.14.3-r0) (13/37) Installing py3-smmap2 (5.0.1-r2) (14/37) Installing py3-smmap2-pyc (5.0.1-r2) (15/37) Installing py3-installer (1.0.0-r0) (16/37) Installing py3-installer-pyc (1.0.0-r0) (17/37) Installing py3-gpep517 (19-r2) (18/37) Installing py3-gpep517-pyc (19-r2) (19/37) Installing py3-parsing (3.3.2-r1) (20/37) Installing py3-parsing-pyc (3.3.2-r1) (21/37) Installing py3-packaging (26.2-r0) (22/37) Installing py3-packaging-pyc (26.2-r0) (23/37) Installing py3-setuptools (82.0.1-r1) (24/37) Installing py3-setuptools-pyc (82.0.1-r1) (25/37) Installing py3-wheel (0.47.0-r0) (26/37) Installing py3-wheel-pyc (0.47.0-r0) (27/37) Installing py3-iniconfig (2.3.0-r1) (28/37) Installing py3-iniconfig-pyc (2.3.0-r1) (29/37) Installing py3-pluggy (1.6.0-r1) (30/37) Installing py3-pluggy-pyc (1.6.0-r1) (31/37) Installing py3-py (1.11.0-r5) (32/37) Installing py3-py-pyc (1.11.0-r5) (33/37) Installing py3-pygments (2.20.0-r0) (34/37) Installing py3-pygments-pyc (2.20.0-r0) (35/37) Installing py3-pytest (9.0.3-r0) (36/37) Installing py3-pytest-pyc (9.0.3-r0) (37/37) Installing .makedepends-py3-gitdb2 (20260426.035127) Executing busybox-1.37.0-r31.trigger OK: 882.1 MiB in 141 packages >>> py3-gitdb2: Cleaning up srcdir >>> py3-gitdb2: Cleaning up pkgdir >>> py3-gitdb2: Cleaning up tmpdir >>> py3-gitdb2: Fetching https://distfiles.alpinelinux.org/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz Connecting to distfiles.alpinelinux.org (172.105.82.32:443) saving to '/var/cache/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz.part' py3-gitdb2-4.0.12.ta 100% |********************************| 397k 0:00:00 ETA '/var/cache/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz.part' saved /var/cache/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz: OK >>> py3-gitdb2: Fetching https://distfiles.alpinelinux.org/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz /var/cache/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz: OK >>> py3-gitdb2: Unpacking /var/cache/distfiles/v3.24/py3-gitdb2-4.0.12.tar.gz... [master (root-commit) de0f74d] tests 68 files changed, 7343 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 2026-04-26 03:51:30,579 gpep517 INFO Building wheel via backend setuptools.build_meta:__legacy__ /usr/lib/python3.14/site-packages/setuptools/dist.py:765: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: BSD License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() 2026-04-26 03:51:30,678 root INFO running bdist_wheel 2026-04-26 03:51:30,745 root INFO running build 2026-04-26 03:51:30,746 root INFO running build_py 2026-04-26 03:51:30,762 root INFO creating build/lib/gitdb 2026-04-26 03:51:30,763 root INFO copying gitdb/pack.py -> build/lib/gitdb 2026-04-26 03:51:30,766 root INFO copying gitdb/__init__.py -> build/lib/gitdb 2026-04-26 03:51:30,767 root INFO copying gitdb/typ.py -> build/lib/gitdb 2026-04-26 03:51:30,769 root INFO copying gitdb/util.py -> build/lib/gitdb 2026-04-26 03:51:30,770 root INFO copying gitdb/const.py -> build/lib/gitdb 2026-04-26 03:51:30,772 root INFO copying gitdb/exc.py -> build/lib/gitdb 2026-04-26 03:51:30,773 root INFO copying gitdb/stream.py -> build/lib/gitdb 2026-04-26 03:51:30,775 root INFO copying gitdb/base.py -> build/lib/gitdb 2026-04-26 03:51:30,776 root INFO copying gitdb/fun.py -> build/lib/gitdb 2026-04-26 03:51:30,779 root INFO creating build/lib/gitdb/db 2026-04-26 03:51:30,780 root INFO copying gitdb/db/pack.py -> build/lib/gitdb/db 2026-04-26 03:51:30,781 root INFO copying gitdb/db/__init__.py -> build/lib/gitdb/db 2026-04-26 03:51:30,783 root INFO copying gitdb/db/git.py -> build/lib/gitdb/db 2026-04-26 03:51:30,784 root INFO copying gitdb/db/mem.py -> build/lib/gitdb/db 2026-04-26 03:51:30,785 root INFO copying gitdb/db/loose.py -> build/lib/gitdb/db 2026-04-26 03:51:30,787 root INFO copying gitdb/db/ref.py -> build/lib/gitdb/db 2026-04-26 03:51:30,788 root INFO copying gitdb/db/base.py -> build/lib/gitdb/db 2026-04-26 03:51:30,790 root INFO creating build/lib/gitdb/utils 2026-04-26 03:51:30,791 root INFO copying gitdb/utils/__init__.py -> build/lib/gitdb/utils 2026-04-26 03:51:30,792 root INFO copying gitdb/utils/encoding.py -> build/lib/gitdb/utils 2026-04-26 03:51:30,794 root INFO creating build/lib/gitdb/test 2026-04-26 03:51:30,795 root INFO copying gitdb/test/test_stream.py -> build/lib/gitdb/test 2026-04-26 03:51:30,796 root INFO copying gitdb/test/__init__.py -> build/lib/gitdb/test 2026-04-26 03:51:30,797 root INFO copying gitdb/test/lib.py -> build/lib/gitdb/test 2026-04-26 03:51:30,799 root INFO copying gitdb/test/test_base.py -> build/lib/gitdb/test 2026-04-26 03:51:30,800 root INFO copying gitdb/test/test_pack.py -> build/lib/gitdb/test 2026-04-26 03:51:30,802 root INFO copying gitdb/test/test_example.py -> build/lib/gitdb/test 2026-04-26 03:51:30,803 root INFO copying gitdb/test/test_util.py -> build/lib/gitdb/test 2026-04-26 03:51:30,835 root INFO installing to build/bdist.linux-riscv64/wheel 2026-04-26 03:51:30,836 root INFO running install 2026-04-26 03:51:30,872 root INFO running install_lib 2026-04-26 03:51:30,886 root INFO creating build/bdist.linux-riscv64/wheel 2026-04-26 03:51:30,887 root INFO creating build/bdist.linux-riscv64/wheel/gitdb 2026-04-26 03:51:30,888 root INFO copying build/lib/gitdb/pack.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,890 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/test 2026-04-26 03:51:30,890 root INFO copying build/lib/gitdb/test/test_stream.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,892 root INFO copying build/lib/gitdb/test/__init__.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,893 root INFO copying build/lib/gitdb/test/lib.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,894 root INFO copying build/lib/gitdb/test/test_base.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,895 root INFO copying build/lib/gitdb/test/test_pack.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,896 root INFO copying build/lib/gitdb/test/test_example.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,897 root INFO copying build/lib/gitdb/test/test_util.py -> build/bdist.linux-riscv64/wheel/./gitdb/test 2026-04-26 03:51:30,898 root INFO copying build/lib/gitdb/__init__.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,899 root INFO copying build/lib/gitdb/typ.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,900 root INFO copying build/lib/gitdb/util.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,901 root INFO copying build/lib/gitdb/const.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,903 root INFO copying build/lib/gitdb/exc.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,904 root INFO copying build/lib/gitdb/stream.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,905 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/utils 2026-04-26 03:51:30,906 root INFO copying build/lib/gitdb/utils/__init__.py -> build/bdist.linux-riscv64/wheel/./gitdb/utils 2026-04-26 03:51:30,907 root INFO copying build/lib/gitdb/utils/encoding.py -> build/bdist.linux-riscv64/wheel/./gitdb/utils 2026-04-26 03:51:30,908 root INFO creating build/bdist.linux-riscv64/wheel/gitdb/db 2026-04-26 03:51:30,909 root INFO copying build/lib/gitdb/db/pack.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,910 root INFO copying build/lib/gitdb/db/__init__.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,911 root INFO copying build/lib/gitdb/db/git.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,912 root INFO copying build/lib/gitdb/db/mem.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,913 root INFO copying build/lib/gitdb/db/loose.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,915 root INFO copying build/lib/gitdb/db/ref.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,916 root INFO copying build/lib/gitdb/db/base.py -> build/bdist.linux-riscv64/wheel/./gitdb/db 2026-04-26 03:51:30,917 root INFO copying build/lib/gitdb/base.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,918 root INFO copying build/lib/gitdb/fun.py -> build/bdist.linux-riscv64/wheel/./gitdb 2026-04-26 03:51:30,919 root INFO running install_egg_info 2026-04-26 03:51:30,934 root INFO running egg_info 2026-04-26 03:51:30,945 root INFO creating gitdb.egg-info 2026-04-26 03:51:30,945 root INFO writing gitdb.egg-info/PKG-INFO 2026-04-26 03:51:30,948 root INFO writing dependency_links to gitdb.egg-info/dependency_links.txt 2026-04-26 03:51:30,949 root INFO writing requirements to gitdb.egg-info/requires.txt 2026-04-26 03:51:30,950 root INFO writing top-level names to gitdb.egg-info/top_level.txt 2026-04-26 03:51:30,951 root INFO writing manifest file 'gitdb.egg-info/SOURCES.txt' 2026-04-26 03:51:30,967 root INFO reading manifest file 'gitdb.egg-info/SOURCES.txt' 2026-04-26 03:51:30,969 root INFO reading manifest template 'MANIFEST.in' 2026-04-26 03:51:30,969 root WARNING warning: no files found matching 'VERSION' 2026-04-26 03:51:30,970 root WARNING warning: no files found matching 'CHANGES' 2026-04-26 03:51:30,970 root WARNING warning: no files found matching 'README' 2026-04-26 03:51:30,971 root WARNING warning: no files found matching 'gitdb/_fun.c' 2026-04-26 03:51:30,971 root WARNING warning: no files found matching 'gitdb/_delta_apply.c' 2026-04-26 03:51:30,972 root WARNING warning: no files found matching 'gitdb/_delta_apply.h' 2026-04-26 03:51:30,975 root WARNING warning: no previously-included files matching '.git*' found anywhere in distribution 2026-04-26 03:51:30,976 root WARNING warning: no previously-included files matching '*.pyc' found anywhere in distribution 2026-04-26 03:51:30,976 root WARNING warning: no previously-included files matching '*.so' found anywhere in distribution 2026-04-26 03:51:30,977 root WARNING warning: no previously-included files matching '*.dll' found anywhere in distribution 2026-04-26 03:51:30,978 root WARNING warning: no previously-included files matching '*.o' found anywhere in distribution 2026-04-26 03:51:30,978 root INFO adding license file 'LICENSE' 2026-04-26 03:51:30,978 root INFO adding license file 'AUTHORS' 2026-04-26 03:51:30,983 root INFO writing manifest file 'gitdb.egg-info/SOURCES.txt' 2026-04-26 03:51:30,984 root INFO Copying gitdb.egg-info to build/bdist.linux-riscv64/wheel/./gitdb-4.0.12-py3.14.egg-info 2026-04-26 03:51:30,993 root INFO running install_scripts 2026-04-26 03:51:31,002 root INFO creating build/bdist.linux-riscv64/wheel/gitdb-4.0.12.dist-info/WHEEL 2026-04-26 03:51:31,004 wheel INFO creating '/home/buildozer/aports/community/py3-gitdb2/src/gitdb-4.0.12/.dist/.tmp-1vqr1slv/gitdb-4.0.12-py3-none-any.whl' and adding 'build/bdist.linux-riscv64/wheel' to it 2026-04-26 03:51:31,006 wheel INFO adding 'gitdb/__init__.py' 2026-04-26 03:51:31,007 wheel INFO adding 'gitdb/base.py' 2026-04-26 03:51:31,008 wheel INFO adding 'gitdb/const.py' 2026-04-26 03:51:31,009 wheel INFO adding 'gitdb/exc.py' 2026-04-26 03:51:31,011 wheel INFO adding 'gitdb/fun.py' 2026-04-26 03:51:31,013 wheel INFO adding 'gitdb/pack.py' 2026-04-26 03:51:31,015 wheel INFO adding 'gitdb/stream.py' 2026-04-26 03:51:31,016 wheel INFO adding 'gitdb/typ.py' 2026-04-26 03:51:31,017 wheel INFO adding 'gitdb/util.py' 2026-04-26 03:51:31,019 wheel INFO adding 'gitdb/db/__init__.py' 2026-04-26 03:51:31,020 wheel INFO adding 'gitdb/db/base.py' 2026-04-26 03:51:31,021 wheel INFO adding 'gitdb/db/git.py' 2026-04-26 03:51:31,022 wheel INFO adding 'gitdb/db/loose.py' 2026-04-26 03:51:31,023 wheel INFO adding 'gitdb/db/mem.py' 2026-04-26 03:51:31,024 wheel INFO adding 'gitdb/db/pack.py' 2026-04-26 03:51:31,026 wheel INFO adding 'gitdb/db/ref.py' 2026-04-26 03:51:31,027 wheel INFO adding 'gitdb/test/__init__.py' 2026-04-26 03:51:31,028 wheel INFO adding 'gitdb/test/lib.py' 2026-04-26 03:51:31,029 wheel INFO adding 'gitdb/test/test_base.py' 2026-04-26 03:51:31,030 wheel INFO adding 'gitdb/test/test_example.py' 2026-04-26 03:51:31,031 wheel INFO adding 'gitdb/test/test_pack.py' 2026-04-26 03:51:31,032 wheel INFO adding 'gitdb/test/test_stream.py' 2026-04-26 03:51:31,033 wheel INFO adding 'gitdb/test/test_util.py' 2026-04-26 03:51:31,035 wheel INFO adding 'gitdb/utils/__init__.py' 2026-04-26 03:51:31,036 wheel INFO adding 'gitdb/utils/encoding.py' 2026-04-26 03:51:31,037 wheel INFO adding 'gitdb-4.0.12.dist-info/licenses/AUTHORS' 2026-04-26 03:51:31,038 wheel INFO adding 'gitdb-4.0.12.dist-info/licenses/LICENSE' 2026-04-26 03:51:31,039 wheel INFO adding 'gitdb-4.0.12.dist-info/METADATA' 2026-04-26 03:51:31,040 wheel INFO adding 'gitdb-4.0.12.dist-info/WHEEL' 2026-04-26 03:51:31,041 wheel INFO adding 'gitdb-4.0.12.dist-info/top_level.txt' 2026-04-26 03:51:31,042 wheel INFO adding 'gitdb-4.0.12.dist-info/RECORD' 2026-04-26 03:51:31,043 root INFO removing build/bdist.linux-riscv64/wheel 2026-04-26 03:51:31,048 gpep517 INFO The backend produced .dist/gitdb-4.0.12-py3-none-any.whl gitdb-4.0.12-py3-none-any.whl ============================= test session starts ============================== platform linux -- Python 3.14.3, pytest-9.0.3, pluggy-1.6.0 rootdir: /home/buildozer/aports/community/py3-gitdb2/src/gitdb-4.0.12 collected 24 items / 1 deselected / 23 selected gitdb/test/db/test_git.py .. [ 8%] gitdb/test/db/test_loose.py . [ 13%] gitdb/test/db/test_mem.py . [ 17%] gitdb/test/db/test_pack.py . [ 21%] gitdb/test/db/test_ref.py . [ 26%] gitdb/test/performance/test_pack.py ... [ 39%] gitdb/test/performance/test_pack_streaming.py . [ 43%] gitdb/test/performance/test_stream.py . [ 47%] gitdb/test/test_base.py . [ 52%] gitdb/test/test_example.py . [ 56%] gitdb/test/test_pack.py .s.. [ 73%] gitdb/test/test_stream.py .... [ 91%] gitdb/test/test_util.py .. [100%] =============================== warnings summary =============================== gitdb/test/db/test_ref.py::TestReferenceDB::test_writing gitdb/test/db/test_ref.py::TestReferenceDB::test_writing gitdb/test/db/test_ref.py::TestReferenceDB::test_writing gitdb/test/db/test_ref.py::TestReferenceDB::test_writing /home/buildozer/aports/community/py3-gitdb2/src/gitdb-4.0.12/gitdb/db/ref.py:45: DeprecationWarning: codecs.open() is deprecated. Use open() instead. with codecs.open(self._ref_file, 'r', encoding="utf-8") as f: -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html =========== 22 passed, 1 skipped, 1 deselected, 4 warnings in 57.49s =========== >>> py3-gitdb2: Entering fakeroot... >>> py3-gitdb2-pyc*: Running split function pyc... 'usr/lib/python3.14/site-packages/gitdb/test/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.14/site-packages/gitdb/test/__pycache__' 'usr/lib/python3.14/site-packages/gitdb/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.14/site-packages/gitdb/__pycache__' 'usr/lib/python3.14/site-packages/gitdb/utils/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.14/site-packages/gitdb/utils/__pycache__' 'usr/lib/python3.14/site-packages/gitdb/db/__pycache__' -> '/home/buildozer/aports/community/py3-gitdb2/pkg/py3-gitdb2-pyc/usr/lib/python3.14/site-packages/gitdb/db/__pycache__' >>> py3-gitdb2-pyc*: Preparing subpackage py3-gitdb2-pyc... Please specify at least one package name on the command line. >>> py3-gitdb2-pyc*: Running postcheck for py3-gitdb2-pyc >>> py3-gitdb2*: Running postcheck for py3-gitdb2 >>> py3-gitdb2*: Preparing package py3-gitdb2... Please specify at least one package name on the command line. >>> py3-gitdb2-pyc*: Tracing dependencies... python3~3.14 >>> py3-gitdb2-pyc*: Package size: 206.1 KB >>> py3-gitdb2-pyc*: Compressing data... >>> py3-gitdb2-pyc*: Create checksum... >>> py3-gitdb2-pyc*: Create py3-gitdb2-pyc-4.0.12-r1.apk >>> py3-gitdb2*: Tracing dependencies... python3 py3-smmap2 python3~3.14 >>> py3-gitdb2*: Package size: 177.0 KB >>> py3-gitdb2*: Compressing data... >>> py3-gitdb2*: Create checksum... >>> py3-gitdb2*: Create py3-gitdb2-4.0.12-r1.apk >>> py3-gitdb2: Build complete at Sun, 26 Apr 2026 03:52:33 +0000 elapsed time 0h 1m 21s >>> py3-gitdb2: Cleaning up srcdir >>> py3-gitdb2: Cleaning up pkgdir >>> py3-gitdb2: Cleaning up tmpdir >>> py3-gitdb2: Uninstalling dependencies... ( 1/37) Purging .makedepends-py3-gitdb2 (20260426.035127) ( 2/37) Purging py3-smmap2-pyc (5.0.1-r2) ( 3/37) Purging py3-smmap2 (5.0.1-r2) ( 4/37) Purging py3-gpep517-pyc (19-r2) ( 5/37) Purging py3-gpep517 (19-r2) ( 6/37) Purging py3-installer-pyc (1.0.0-r0) ( 7/37) Purging py3-installer (1.0.0-r0) ( 8/37) Purging py3-setuptools-pyc (82.0.1-r1) ( 9/37) Purging py3-setuptools (82.0.1-r1) (10/37) Purging py3-wheel-pyc (0.47.0-r0) (11/37) Purging py3-wheel (0.47.0-r0) (12/37) Purging py3-pytest-pyc (9.0.3-r0) (13/37) Purging py3-pytest (9.0.3-r0) (14/37) Purging py3-iniconfig-pyc (2.3.0-r1) (15/37) Purging py3-iniconfig (2.3.0-r1) (16/37) Purging py3-packaging-pyc (26.2-r0) (17/37) Purging py3-packaging (26.2-r0) (18/37) Purging py3-parsing-pyc (3.3.2-r1) (19/37) Purging py3-parsing (3.3.2-r1) (20/37) Purging py3-pluggy-pyc (1.6.0-r1) (21/37) Purging py3-pluggy (1.6.0-r1) (22/37) Purging py3-py-pyc (1.11.0-r5) (23/37) Purging py3-py (1.11.0-r5) (24/37) Purging py3-pygments-pyc (2.20.0-r0) (25/37) Purging py3-pygments (2.20.0-r0) (26/37) Purging python3-pyc (3.14.3-r0) (27/37) Purging python3-pycache-pyc0 (3.14.3-r0) (28/37) Purging pyc (3.14.3-r0) (29/37) Purging python3 (3.14.3-r0) (30/37) Purging gdbm (1.26-r0) (31/37) Purging libbz2 (1.0.8-r6) (32/37) Purging libffi (3.5.2-r1) (33/37) Purging libpanelw (6.6_p20260404-r0) (34/37) Purging mpdecimal (4.0.1-r0) (35/37) Purging readline (8.3.3-r1) (36/37) Purging sqlite-libs (3.53.0-r0) (37/37) Purging xz-libs (5.8.3-r0) Executing busybox-1.37.0-r31.trigger OK: 824.7 MiB in 104 packages >>> py3-gitdb2: Updating the community/riscv64 repository index... >>> py3-gitdb2: Signing the index...