X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=opencloud.spec;h=5b6bed4833fec5d41fe7bec03f8745aba8cebd65;hb=a4d3e38eb05a470ae937213d1815facc9873de54;hp=9fe27a97f129440a8cc08d6b230d0879b82ddb5f;hpb=a0a13eec404c2da7aec49ccf8fd5b05cc74e5ddb;p=plstackapi.git diff --git a/opencloud.spec b/opencloud.spec index 9fe27a9..5b6bed4 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,7 +1,7 @@ Summary: OpenCloud core services Name: opencloud -Version: 1.0.5 -Release: 2 +Version: 1.0.20 +Release: 1 License: GPL+ Group: Development/Tools Source0: %{_tmppath}/%{name}-%{version}.tar.gz @@ -17,6 +17,7 @@ requires: python-pip requires: tar requires: gcc requires: python-httplib2 +requires: GeoIP %description %{summary} @@ -28,7 +29,7 @@ requires: python-httplib2 # Empty section. %pre -pip-python install django==1.5 +#pip-python install django==1.5 pip-python install djangorestframework pip-python install markdown # Markdown support for the browseable API. pip-python install pyyaml # YAML content-type support. @@ -44,6 +45,7 @@ pip-python install django-extensions pip-python install django-suit pip-python install django-evolution pip-python install django-bitfield +pip-python install django-ipware easy_install django_evolution easy_install python_gflags @@ -51,27 +53,57 @@ easy_install google_api_python_client wget -P /usr/lib/python2.7/site-packages/suit/static/suit/js http://code.jquery.com/jquery-1.9.1.min.js +if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then + rm -f /usr/share/GeoIP/GeoLiteCity.* + wget -P /usr/share/GeoIP http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz + gzip -d /usr/share/GeoIP/GeoLiteCity*.gz +fi + +if [ "$1" == 2 ] ; then + if [[ -e /opt/planetstack/scripts/opencloud ]]; then + echo "UPGRADE - saving current state" + /opt/planetstack/scripts/opencloud dumpdata + fi +fi + %install rm -rf %{buildroot} mkdir -p %{buildroot} install -d %{buildroot}/opt/planetstack +install -d %{buildroot}/etc/init.d # in builddir -cp -rp /opt/plstackapi/planetstack %{buildroot}/opt/. +cp -rp ./planetstack %{buildroot}/opt/. +cp observer-initscript %{buildroot}/etc/init.d/plstackobserver -find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +cp %{_tmppath}/tmp-filelist /tmp/tmp-filelist +echo /etc/init.d/plstackobserver > %{_tmppath}/tmp-filelist %clean rm -rf %{buildroot} %files -f %{_tmppath}/tmp-filelist %defattr(-,root,root,-) +%config /opt/planetstack/plstackapi_config +%config /opt/planetstack/deployment_auth.py %post -/opt/planetstack/scripts/opencloud initdb +if [ "$1" == 1 ] ; then + echo "NEW INSTALL - initializing database" + /opt/planetstack/scripts/opencloud initdb +else + echo "UPGRADE - doing evolution" + /opt/planetstack/scripts/opencloud evolvedb +fi +# start the server +/opt/planetstack/scripts/opencloud runserver %preun -rm -rf /opt/planetstack +if [ "$1" = 0 ] ; then + echo "UNINSTALL - destroying planetstack" + rm -rf /opt/planetstack +fi %changelog * Sat Feb 22 2014 Siobhan Tully 1.0.0