From a6799130e803ba09d271722128515c20d883b1e2 Mon Sep 17 00:00:00 2001 From: Bruno Cornec Date: Mon, 7 Mar 2016 19:22:58 +0100 Subject: [PATCH] Adapt rpm package build to new setup.py - Review install script to use the --prefix option, install doc in the corerct place (/usr/share/doc) and fix the wrong placement of the conf file for now - Declare new macros (which are not used yet BTW) - Fix the spec file for new loactions - Adds urllib3 to python dependencies --- install.sh | 17 +++++++++++------ pbconf/pbfilter/all.pbf | 3 +++ pbconf/python-redfish.pb | 2 +- pbconf/python-redfish/rpm/python-redfish.spec | 9 +++------ requirements.txt | 1 + 5 files changed, 19 insertions(+), 13 deletions(-) diff --git a/install.sh b/install.sh index 1662ee0..7d4c71e 100755 --- a/install.sh +++ b/install.sh @@ -1,17 +1,22 @@ #!/bin/bash # Syntax: install.sh +set -x export rootdir=$1 export sitelib=$2 export prefix=$3 -python setup.py install --skip-build --root $rootdir +#python setup.py install --skip-build --prefix=$prefix +python setup.py install --skip-build --root=$rootdir --prefix=$prefix rm -rf $rootdir/$sitelib/redfish/old for i in 1; do - mkdir -p $rootdir/$prefix/man/man$i - install -m 644 doc/build/man/*.$i $rootdir/$prefix/man/man$i + mkdir -p $rootdir/$prefix/share/man/man$i + install -m 644 doc/build/man/*.$i $rootdir/$prefix/share/man/man$i done -install -d 755 $rootdir/$prefix/doc/PBPKG/html/_static -install -m 644 doc/build/singlehtml/*.html $rootdir/$prefix/doc/PBPKG/html -install -m 644 doc/build/singlehtml/_static/* $rootdir/$prefix/doc/PBPKG/html/_static +install -d 755 $rootdir/$prefix/share/doc/PBPKG/html/_static +install -m 644 doc/build/singlehtml/*.html $rootdir/$prefix/share/doc/PBPKG/html +install -m 644 doc/build/singlehtml/_static/* $rootdir/$prefix/share/doc/PBPKG/html/_static +# 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 diff --git a/pbconf/pbfilter/all.pbf b/pbconf/pbfilter/all.pbf index f78ebb7..8e9647e 100644 --- a/pbconf/pbfilter/all.pbf +++ b/pbconf/pbfilter/all.pbf @@ -66,3 +66,6 @@ filter PBURL = http://github.com/bcornec/python-redfish # PBLOG is replaced by the changelog if value is yes # and should be last as when used we need the %pb hash filled filter PBLOG = yes + +filter PBCONFFILE = /etc/redfish-client.conf +filter PBTEMPLATEPATH = /usr/share/redfish-client/templates diff --git a/pbconf/python-redfish.pb b/pbconf/python-redfish.pb index c5130cf..cef7744 100644 --- a/pbconf/python-redfish.pb +++ b/pbconf/python-redfish.pb @@ -130,7 +130,7 @@ defpkgdir python-redfish = . # List of files per pkg on which to apply filters # Files are mentioned relatively to pbroot/defpkgdir -filteredfiles python-redfish = redfish-client/redfish-client,doc/source/conf.py,install.sh +filteredfiles python-redfish = redfish-client/redfish-client,doc/source/conf.py,setup.py,./redfish-client/etc/redfish-client.conf,install.sh #supfiles python-redfish = python-redfish.init # For perl modules, names are different depending on distro diff --git a/pbconf/python-redfish/rpm/python-redfish.spec b/pbconf/python-redfish/rpm/python-redfish.spec index fe99377..a50760c 100644 --- a/pbconf/python-redfish/rpm/python-redfish.spec +++ b/pbconf/python-redfish/rpm/python-redfish.spec @@ -35,13 +35,10 @@ make latexpdf %files %doc README.rst examples/[a-z]*.py LICENSE %doc doc/build/latex/*.pdf -%doc %{_docdir}/%{name}/html -%doc %{_docdir}/%{name}/html/*.html -%doc %{_docdir}/%{name}/html/_static -%doc %{_docdir}/%{name}/html/_static/* %{_bindir}/redfish-client -# add conf file -# add template +%dir %{_datadir}/redfish-client +%{_datadir}/redfish-client/templates/* +%config(noreplace) %{_sysconfdir}/redfish-client.conf %dir %{python_sitelib}/redfish %{python_sitelib}/redfish/*.py* %{python_sitelib}/redfish/tests/*.py* diff --git a/requirements.txt b/requirements.txt index 14b281f..80aba9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,6 +8,7 @@ Jinja2>=2.7.3 Sphinx>=1.2.3 docopt>=0.6.2 simplejson>=3.8.1 +urllib3>=1.9 # Python3 compat future>=0.15.2