-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] packaging: set fedora 36 as base for rpm
Also, as the rpm is not built from the deprecated bdist_rpm anymore, it's time to remove useless requires from the `setup.cfg` file. On the other hand, the soft requirements in the `setup.py` are now synchronized with the hard requirements. closes odoo#102457 Signed-off-by: Christophe Monniez (moc) <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Please note that this Dockerfile is used for testing nightly builds and should | ||
# not be used to deploy Odoo | ||
FROM fedora:34 | ||
FROM fedora:36 | ||
MAINTAINER Odoo S.A. <[email protected]> | ||
|
||
# Dependencies and postgres | ||
|
@@ -14,7 +14,9 @@ RUN dnf update -d 0 -e 0 -y && \ | |
postgresql-libs \ | ||
postgresql-server \ | ||
python3-PyPDF2 \ | ||
python3-cryptography \ | ||
python3-babel \ | ||
python3-chardet \ | ||
python3-dateutil \ | ||
python3-decorator \ | ||
python3-devel \ | ||
|
@@ -24,6 +26,7 @@ RUN dnf update -d 0 -e 0 -y && \ | |
python3-greenlet \ | ||
python3-idna \ | ||
python3-jinja2 \ | ||
python3-libsass \ | ||
python3-lxml \ | ||
python3-markupsafe \ | ||
python3-mock \ | ||
|
@@ -47,6 +50,7 @@ RUN dnf update -d 0 -e 0 -y && \ | |
python3-stdnum \ | ||
python3-vobject \ | ||
python3-werkzeug \ | ||
python3-wheel \ | ||
python3-xlrd \ | ||
python3-xlsxwriter \ | ||
python3-xlwt \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ BuildArch: noarch | |
Vendor: Odoo S.A. <[email protected]> | ||
Requires: sassc | ||
BuildRequires: python3-devel | ||
BuildRequires: pyproject-rpm-macros | ||
Url: https://www.odoo.com | ||
|
||
%description | ||
|
@@ -24,6 +25,9 @@ automation, marketing campaigns, help desk, POS, etc. Technical features include | |
a distributed server, an object database, a dynamic GUI, | ||
customizable reports, and XML-RPC interfaces. | ||
|
||
%generate_buildrequires | ||
%pyproject_buildrequires | ||
|
||
%prep | ||
%autosetup | ||
|
||
|