2019-11-29 22:29:07 +01:00
|
|
|
config BR2_PACKAGE_PYTHON_GITDB2
|
|
|
|
bool "python-gitdb2"
|
package/python-{smmap2, gitdb2}: bump versions to 4.0.0 and 4.0.7
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>
2021-09-19 14:45:14 +02:00
|
|
|
depends on BR2_PACKAGE_PYTHON3
|
2019-11-29 22:29:07 +01:00
|
|
|
select BR2_PACKAGE_PYTHON_SMMAP2 # runtime
|
package/python-{smmap2, gitdb2}: bump versions to 4.0.0 and 4.0.7
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>
2021-09-19 14:45:14 +02:00
|
|
|
select BR2_PACKAGE_PYTHON3_ZLIB
|
2019-11-29 22:29:07 +01:00
|
|
|
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
|