8bc8f4c416
This commit bumps the python-smmap2 and python-gitdb2 packages in lockstep, as the new version of gitdb2 requires a newer version of smmap2, but the current version of gitdb2 cannot work with the newer version of smmap2 (sigh). Also, upstream the projects have been renamed: gitdb2 is now named gitdb on PyPi (see https://pypi.org/project/gitdb2/) and smmap2 is now named smmap (https://pypi.org/project/smmap2/). However, to avoid needless churn, we don't rename the Buildroot packages, but that rename is visible in the name of the tarballs being downloaded. Also, since version 4.0.0, smmap supports only Python 3.x, so we add a dependency on Python 3.x and drop the test case of gitdb2 on Python 2.x. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
14 lines
517 B
Plaintext
14 lines
517 B
Plaintext
config BR2_PACKAGE_PYTHON_GITDB2
|
|
bool "python-gitdb2"
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_SMMAP2 # runtime
|
|
select BR2_PACKAGE_PYTHON3_ZLIB
|
|
help
|
|
GitDB allows you to access bare git repositories for reading
|
|
and writing. It aims at allowing full access to loose objects
|
|
as well as packs with performance and scalability in mind. It
|
|
operates exclusively on streams, allowing to handle large
|
|
objects with a small memory footprint.
|
|
|
|
https://github.com/gitpython-developers/gitdb
|