Skip to content

Commit e2e62a0

Browse files
committed
dockerfile: stop using python3-git for Quibble Stretch
python3-git in Stretch is 2.1.1 which does not work with git 2.15+ leading to build failing with: PackingType of packed-Refs not understood: '# pack-refs with: peeled fully-peeled sorted' gitpython-developers/GitPython#687 The fix is to use GitPython 2.1.8 or later which is listed as requirement in Quibble. Thus let the virtualenv install the proper version. Buster is not affected since python3-git is 2.1.11. Bug: T256844 Change-Id: I073108049efc29b0fa1cbf7458d3ff9be3cb9aae
1 parent 173dc2c commit e2e62a0

File tree

10 files changed

+62
-1
lines changed

10 files changed

+62
-1
lines changed

dockerfiles/quibble-coverage/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-coverage (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-coverage (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-fresnel/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-fresnel (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-fresnel (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-bundle/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-bundle (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-bundle (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-php70/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-php70 (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-php70 (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-php71/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-php71 (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-php71 (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-php72/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-php72 (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-php72 (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-php73/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-php73 (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-php73 (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch-php74/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
quibble-stretch-php74 (0.0.44-s4) wikimedia; urgency=high
2+
3+
Refresh for update in parent image quibble-stretch:
4+
Stop using obsolete python3-git 2.1.1, use version from pip
5+
6+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
7+
18
quibble-stretch-php74 (0.0.44-s3) wikimedia; urgency=high
29

310
Refresh for update in parent image ci-stretch:

dockerfiles/quibble-stretch/Dockerfile.template

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ python3-wheel
4747
{% set zuul_deps|replace('\n', ' ') -%}
4848
python3-extras
4949
python3-six
50-
python3-git
5150
python3-yaml
5251
{%- endset -%}
5352

dockerfiles/quibble-stretch/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
quibble-stretch (0.0.44-s4) wikimedia; urgency=high
2+
3+
Stop using obsolete python3-git 2.1.1, use version from pip
4+
5+
-- Antoine Musso <[email protected]> Tue, 18 Aug 2020 16:41:35 +0200
6+
17
quibble-stretch (0.0.44-s3) wikimedia; urgency=high
28

39
Refresh for update in parent image ci-stretch:

0 commit comments

Comments
 (0)