From 280df5ac282ad3f75b74dd3e6d172ee314693c99 Mon Sep 17 00:00:00 2001 From: Christophe Monniez <moc@odoo.com> Date: Wed, 24 Feb 2021 14:57:13 +0000 Subject: [PATCH] [FIX] packaging: add zeep and ofxparse in deb and rpm packaging Zeep replaced suds but Debian and Rpm packaging were not updated. Ofxparse is required but did not appear in Debian nor Rpm packaging. closes odoo/odoo#66784 X-original-commit: 39738f2b3c310bef25d483ced9bcf29f9894abbd Signed-off-by: Christophe Monniez (moc) <moc@odoo.com> --- debian/control | 3 ++- setup.cfg | 3 +-- setup/package.dfdebian | 2 +- setup/package.dffedora | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/control b/debian/control index 257cb19beb8c..c03fb4b45973 100644 --- a/debian/control +++ b/debian/control @@ -34,6 +34,7 @@ Depends: python3-libsass, python3-lxml, python3-mako, + python3-ofxparse python3-passlib, python3-polib, python3-psutil, @@ -44,12 +45,12 @@ Depends: python3-reportlab, python3-requests, python3-stdnum, - python3-suds, python3-tz, python3-vobject, python3-werkzeug, python3-xlsxwriter, python3-xlrd, + python3-zeep, Pre-Depends: ${misc:Pre-Depends} Conflicts: tinyerp-server, openerp-server, openerp-web, openerp Replaces: tinyerp-server, openerp-server, openerp-web, openerp diff --git a/setup.cfg b/setup.cfg index 8b7c872569ad..329d0ce18c9c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,9 +41,8 @@ requires = python3-requests python3-six python3-stdnum - python3-suds python3-vobject python3-werkzeug python3-xlwt python3-xlrd - + python3-zeep diff --git a/setup/package.dfdebian b/setup/package.dfdebian index 18d7ca9f6f0b..312e98d0d0bf 100644 --- a/setup/package.dfdebian +++ b/setup/package.dfdebian @@ -48,12 +48,12 @@ RUN apt-get update -qq && \ python3-serial \ python3-setuptools \ python3-stdnum \ - python3-suds \ python3-tz \ python3-usb \ python3-vobject \ python3-werkzeug \ python3-xlsxwriter \ + python3-zeep \ rsync && \ rm -rf /var/lib/apt/lists/* diff --git a/setup/package.dffedora b/setup/package.dffedora index 9e5bfe57fbd0..36289a0fd7c5 100644 --- a/setup/package.dffedora +++ b/setup/package.dffedora @@ -46,12 +46,12 @@ RUN dnf update -d 0 -e 0 -y && \ python3-requests \ python3-six \ python3-stdnum \ - python3-suds \ python3-vobject \ python3-werkzeug \ python3-xlrd \ python3-xlsxwriter \ python3-xlwt \ + python3-zeep \ rpmdevtools -y && \ dnf clean all -- GitLab