9d6ec64daf
- Packages can now be built with Docker containers and project-builder.org for Mageia 5, Fedora 25, OpenSUSE 42.2 & CentOS 7 - Fix a bug in conf file path management in setup.py - A script pbconf/mkctn is also availble to ease package building - Status is documented in pbconf/README.rst - Update install script to have a variable for doc installation path which is different between Mageia/Fedora and OpenSUSE Change-Id: Id34e885c5cba7b650adf1638147ffb089ad3c7c3
39 lines
1.2 KiB
Bash
Executable File
39 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Syntax: install.sh <Python> <Root Dir> <Python SiteLib> <Prefix> <PkgName>
|
|
set -x
|
|
|
|
export python=$1
|
|
export rootdir=$2
|
|
export sitelib=$3
|
|
export prefix=$4
|
|
export pkg=$5
|
|
|
|
# Documentation installation only
|
|
echo $python | grep -q "/doc"
|
|
if [ $? -eq 0 ]; then
|
|
install -m 755 -d $rootdir/$python/$5/manual/html/_static
|
|
install -m 644 doc/build/singlehtml/*.html $rootdir/$python/$5/manual/html
|
|
install -m 644 doc/build/singlehtml/_static/* $rootdir/$python/$5/manual/html/_static
|
|
install -m 644 doc/build/latex/*.pdf $rootdir/$python/$5/manual/
|
|
exit 0
|
|
fi
|
|
|
|
pyver=`$python --version 2>&1 | perl -p -e 's|.* ([2-3])\..*|$1|'`
|
|
$python setup.py install --skip-build --root=$rootdir --prefix=$prefix
|
|
|
|
rm -rf $rootdir/$sitelib/redfish/old $rootdir/$prefix/share/doc/$5/html $rootdir/$prefix/share/doc/$5/*.pdf
|
|
|
|
# Hardcoded for now to solve the delivery of the conf file still not correct with setup.py
|
|
mkdir -p $rootdir/etc
|
|
mv $rootdir/$prefix/etc/redfish-client.conf $rootdir/etc/redfish-client.conf
|
|
|
|
# Man pages installation
|
|
for i in 1; do
|
|
mkdir -p $rootdir/$prefix/share/man/man$i
|
|
for e in `ls doc/build/man/*.$i`; do
|
|
ne=`echo $e | perl -p -e 's|.*/([^/]*)\.'$i'|$1-py'$pyver.$i'|'`
|
|
install -m 644 $e $rootdir/$prefix/share/man/man$i/$ne
|
|
done
|
|
done
|