From f5e2c3cff861d859d4b8058f205f670cb4dc04c7 Mon Sep 17 00:00:00 2001
From: Christophe Monniez <moc@odoo.com>
Date: Thu, 9 Apr 2020 08:04:46 +0000
Subject: [PATCH] [FIX] packaging: install python3-setuptools in docker

Since 5952928b42, the python3-mock debian package is removed from the
Dockerfile used to build the Debian package. This prevent the Odoo
Debian package to be built.

The python3-mock debian package has an inderect dependency on
python3-setuptools which is necessary to build the package.

With this commit, the dependency is explicitely set in the Dockerfile.

closes odoo/odoo#49278

Signed-off-by: Christophe Monniez (moc) <moc@odoo.com>
---
 setup/package.dfdebian | 1 +
 1 file changed, 1 insertion(+)

diff --git a/setup/package.dfdebian b/setup/package.dfdebian
index 65e83d16b74b..e4db03560f07 100644
--- a/setup/package.dfdebian
+++ b/setup/package.dfdebian
@@ -47,6 +47,7 @@ RUN apt-get update -qq &&  \
         python3-reportlab \
         python3-requests \
         python3-serial \
+        python3-setuptools \
         python3-stdnum \
         python3-suds \
         python3-tz \
-- 
GitLab