Skip to content

Commit

Permalink
[FIX] Packaging: RedHat: dependencies management
Browse files Browse the repository at this point in the history
PyChart is now in the EPEL repo so we now list it as required in
setup.cfg. The other mandatory lib not provided by EPEL are
pyPdf, vatnumber and pydot and are now installed by easy_install
during the post install.
  • Loading branch information
sle-odoo committed Nov 28, 2014
1 parent be96dd8 commit 56b61da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
14 changes: 4 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ post-install = setup/redhat/postinstall.sh
requires =
babel
libxslt-python
pychart
pyparsing
python-dateutil
python-decorator
Expand All @@ -30,14 +31,7 @@ requires =
pytz

# -------------------------------------------------------------------
# CentOS 7 notes
# RedHat 7 notes
# -------------------------------------------------------------------
#
# These libraries can be installed as system packages thanks to the
# Fedora EPEL repo (https://fedoraproject.org/wiki/EPEL):
# rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm
# yum update -y && yum upgrade -y
#
# Unfortunately, all the needed packages are not yet ported to EPEL7. You can install them with pip:
# yum install python-pip gcc python-devel -y
# pip install pydot pyPdf vatnumber xlwt http://download.gna.org/pychart/PyChart-1.39.tar.gz
# Most of the Odoo dependencies are available on the EPEL repository.
# yum install epel-release
2 changes: 0 additions & 2 deletions setup/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ def test_rpm(o):
# Dependencies
centos7.system('yum install -d 0 -e 0 epel-release -y')
centos7.system('yum update -d 0 -e 0 -y')
centos7.system('yum install -d 0 -e 0 python-pip gcc python-devel -y')
centos7.system('pip install pydot pyPdf vatnumber xlwt http://download.gna.org/pychart/PyChart-1.39.tar.gz')
# Manual install/start of postgres
centos7.system('yum install -d 0 -e 0 postgresql postgresql-server postgresql-libs postgresql-contrib postgresql-devel -y')
centos7.system('mkdir -p /var/lib/postgres/data')
Expand Down
1 change: 1 addition & 0 deletions setup/redhat/postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ ExecStart=/usr/bin/odoo.py --config=/etc/odoo/openerp-server.conf
[Install]
WantedBy=multi-user.target
EOF
easy_install pyPdf vatnumber pydot

0 comments on commit 56b61da

Please sign in to comment.